library(CohortGenerator)
# Get the cohorts from the package
cohortJsonFiles <- list.files(path = system.file("cohorts", package = "CohortGenerator"), full.names = TRUE)
cohorts <- setNames(data.frame(matrix(ncol = 4, nrow = 0), stringsAsFactors = FALSE), c("cohortId","cohortFullName", "sql", "json"))
#cohorts <- data.frame(cohortId = numeric(), cohortFullName = character(), sql = character(), json = character())
generateInclusionStats <- TRUE
for (i in 1:length(cohortJsonFiles)) {
cohortFullName <- tools::file_path_sans_ext(basename(cohortJsonFiles[i]))
cohortJson <- CohortGenerator::readCirceExpressionJsonFile(cohortJsonFiles[i])
cohortExpression <- CohortGenerator::createCirceExpressionFromFile(cohortJsonFiles[i])
cohortSql <- CirceR::buildCohortQuery(cohortExpression, options = CirceR::createGenerateOptions(generateStats = generateInclusionStats))
cohorts <- rbind(cohorts, data.frame(cohortId = i,
cohortFullName = cohortFullName,
sql = cohortSql,
json = cohortJson,
stringsAsFactors = FALSE))
}
outputFolder <- "E:/TEMP/CohortGenerator/Run"
connectionDetails <- Eunomia::getEunomiaConnectionDetails()
output <- CohortGenerator::instantiateCohortSet(connectionDetails = connectionDetails,
cdmDatabaseSchema = "main",
cohortDatabaseSchema = "main",
cohortTable = "temp_cohort",
cohortSet = cohorts,
createCohortTable = TRUE,
incremental = FALSE,
incrementalFolder = file.path(outputFolder, "RecordKeeping"),
inclusionStatisticsFolder = outputFolder)
output <- CohortGenerator::instantiateCohortSet(connectionDetails = connectionDetails,
cdmDatabaseSchema = "main",
cohortDatabaseSchema = "main",
cohortTable = "temp_cohort",
cohortSet = cohorts,
createCohortTable = TRUE,
incremental = TRUE,
incrementalFolder = file.path(outputFolder, "RecordKeeping"),
inclusionStatisticsFolder = outputFolder)
# Cleanup Test Runs
#unlink(outputFolder, recursive = T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.