Skip to content

Commit

Permalink
fix between 101
Browse files Browse the repository at this point in the history
  • Loading branch information
cebarboza committed Nov 21, 2023
1 parent ed84f13 commit b987570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/runStudy.R
Expand Up @@ -70,7 +70,7 @@ runStudy <- function(connectionDetails,
targetCohorts <- readr::read_csv(file.path(outputFolder, "cohortsGenerated.csv")) %>%
filter(cohortId <= 100)
eventCohorts <- readr::read_csv(file.path(outputFolder, "cohortsGenerated.csv")) %>%
filter(between(cohortId, 100, 114))
filter(between(cohortId, 101, 114))
for (i in seq(1:length(targetCohorts$cohortId))) {
outputSubDir <- file.path(outputFolder, 'treatmentPatterns', targetCohorts[i,]$cohortId)
if (!dir.exists(outputSubDir)) {
Expand Down

0 comments on commit b987570

Please sign in to comment.