# Copyright 2024 Observational Health Data Sciences and Informatics
#
# This file is part of CohortDiagnostics
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
getInclusionStats <- function(connection,
exportFolder,
databaseId,
cohortDefinitionSet,
cohortDatabaseSchema,
cohortTableNames,
incremental,
instantiatedCohorts,
minCellCount,
recordKeepingFile) {
ParallelLogger::logInfo("Fetching inclusion statistics from files")
subset <- subsetToRequiredCohorts(
cohorts = cohortDefinitionSet %>%
dplyr::filter(.data$cohortId %in% instantiatedCohorts),
task = "runInclusionStatistics",
incremental = incremental,
recordKeepingFile = recordKeepingFile
)
if (incremental &&
(length(instantiatedCohorts) - nrow(subset)) > 0) {
ParallelLogger::logInfo(sprintf(
"Skipping %s cohorts in incremental mode.",
length(instantiatedCohorts) - nrow(subset)
))
}
if (nrow(subset) > 0) {
ParallelLogger::logInfo("Exporting inclusion rules with CohortGenerator")
timeExecution(exportFolder,
"getInclusionStatsCohortGenerator",
parent = "getInclusionStats",
expr = {
CohortGenerator::insertInclusionRuleNames(
connection = connection,
cohortDefinitionSet = subset,
cohortDatabaseSchema = cohortDatabaseSchema,
cohortInclusionTable = cohortTableNames$cohortInclusionTable
)
stats <- CohortGenerator::getCohortStats(
connection = connection,
cohortTableNames = cohortTableNames,
cohortDatabaseSchema = cohortDatabaseSchema
)
}
)
if (!is.null(stats)) {
if ("cohortInclusionTable" %in% (names(stats))) {
cohortInclusion <- makeDataExportable(
x = stats$cohortInclusionTable,
tableName = "cohort_inclusion",
databaseId = databaseId,
minCellCount = minCellCount
)
writeToCsv(
data = cohortInclusion,
fileName = file.path(exportFolder, "cohort_inclusion.csv"),
incremental = incremental,
cohortId = subset$cohortId
)
}
if ("cohortInclusionStatsTable" %in% (names(stats))) {
cohortIncStats <- makeDataExportable(
x = stats$cohortInclusionStatsTable,
tableName = "cohort_inc_stats",
databaseId = databaseId,
minCellCount = minCellCount
)
writeToCsv(
data = cohortIncStats,
fileName = file.path(exportFolder, "cohort_inc_stats.csv"),
incremental = incremental,
cohortId = subset$cohortId
)
}
if ("cohortInclusionResultTable" %in% (names(stats))) {
cohortIncResult <- makeDataExportable(
x = stats$cohortInclusionResultTable,
tableName = "cohort_inc_result",
databaseId = databaseId,
minCellCount = minCellCount
)
writeToCsv(
data = cohortIncResult,
fileName = file.path(exportFolder, "cohort_inc_result.csv"),
incremental = incremental,
cohortId = subset$cohortId
)
}
if ("cohortSummaryStatsTable" %in% (names(stats))) {
cohortSummaryStats <- makeDataExportable(
x = stats$cohortSummaryStatsTable,
tableName = "cohort_summary_stats",
databaseId = databaseId,
minCellCount = minCellCount
)
writeToCsv(
data = cohortSummaryStats,
fileName = file.path(exportFolder, "cohort_summary_stats.csv"),
incremental = incremental,
cohortId = subset$cohortId
)
}
recordTasksDone(
cohortId = subset$cohortId,
task = "runInclusionStatistics",
checksum = subset$checksum,
recordKeepingFile = recordKeepingFile,
incremental = incremental
)
}
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.