Skip to content

Commit

Permalink
remove unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsemharb committed Jun 1, 2023
1 parent 22bc195 commit f612793
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions R/RunStudy.R
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,7 @@ runStudy <- function(connectionDetails = NULL,
sqlFilename = file.path("quartiles", "AgeAtDiagnosis.sql"),
packageName = getThisPackageName(),
warnOnMissingParameters = TRUE,
cohort_database_schema = cohortDatabaseSchema,
cohort_table = cohortTable,
target_ids = paste(targetIds, collapse = ', '))
cohort_database_schema = cohortDatabaseSchema)
sql <- paste0(sql, sqlAggreg)
metrics <- rbind(metrics, DatabaseConnector::querySql(connection, sql, snakeCaseToCamelCase = T))

Expand All @@ -362,9 +360,7 @@ runStudy <- function(connectionDetails = NULL,
sqlFilename = file.path("quartiles", "CharlsonAtDiagnosis.sql"),
packageName = getThisPackageName(),
warnOnMissingParameters = TRUE,
cohort_database_schema = cohortDatabaseSchema,
cohort_table = cohortTable,
target_ids = paste(targetIds, collapse = ', '))
cohort_database_schema = cohortDatabaseSchema)
sql <- paste0(sql, sqlAggreg)
metrics <- rbind(metrics, DatabaseConnector::querySql(connection, sql, snakeCaseToCamelCase = T))

Expand Down

0 comments on commit f612793

Please sign in to comment.