Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix large ids issue #167

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions R/RunAnalyses.R
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ getPs <- function(psFile) {
}

doCreateCmDataObject <- function(params) {
ParallelLogger::logDebug(sprintf("Calling getDbCohortMethodData() for targetId %d, comparatorId %d",
ParallelLogger::logDebug(sprintf("Calling getDbCohortMethodData() for targetId %s, comparatorId %s",
params$args$targetId,
params$args$comparatorId))
cohortMethodData <- do.call("getDbCohortMethodData", params$args)
Expand All @@ -774,7 +774,7 @@ doCreateStudyPopObject <- function(params) {
cohortMethodData <- getCohortMethodData(params$cohortMethodDataFile)
args <- params$args
args$cohortMethodData <- cohortMethodData
ParallelLogger::logDebug(sprintf("Calling createStudyPopulation() using %s for outcomeId %d",
ParallelLogger::logDebug(sprintf("Calling createStudyPopulation() using %s for outcomeId ",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this misses a %s at the end?

params$cohortMethodDataFile,
args$outcomeId))
studyPop <- do.call("createStudyPopulation", args)
Expand Down Expand Up @@ -961,7 +961,7 @@ doFitOutcomeModelPlus <- function(params) {
}
cohortMethodData <- getCohortMethodData(cohortMethodDataFile)

ParallelLogger::logDebug(sprintf("Calling createStudyPopulation(), performing matching etc., and calling fitOutcomeModel() using %s for outcomeID %d",
ParallelLogger::logDebug(sprintf("Calling createStudyPopulation(), performing matching etc., and calling fitOutcomeModel() using %s for outcomeID ",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here

cohortMethodDataFile,
params$args$createStudyPopArgs$outcomeId))

Expand Down
Loading