You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function is not necessary as we can extract the inclusion rules names from a cohort definition set and we do not need to push this information to the database.
if (!toupper(cohortInclusionTable) %in% toupper(tableList)) {
stop(paste0(cohortInclusionTable, " table not found in schema: ", cohortDatabaseSchema, ". Please make sure the table is created using the createCohortTables() function before calling this function."))
}
# Assemble the cohort inclusion rules
# NOTE: This data frame must match the @cohort_inclusion_table
# structure as defined in inst/sql/sql_server/CreateCohortTables.sql
inclusionRules<-data.frame(
cohortDefinitionId=bit64::integer64(),
ruleSequence= integer(),
name=character(),
description=character()
)
# Remove any cohort definitions that do not include the JSON property
This function is not necessary as we can extract the inclusion rules names from a cohort definition set and we do not need to push this information to the database.
CohortGenerator/R/CohortStats.R
Lines 40 to 134 in e3efad6
The text was updated successfully, but these errors were encountered: