Skip to content

Commit

Permalink
Fix another bug
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKanis committed Sep 15, 2016
1 parent c830719 commit f6276ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/createPatientSet.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ createPatientSet <- function(study.name, patientset.constraints, returnXMLquery

# concepts with type numeric and high_dimensional are end-leaves,
# concepts with type categorical_options are not end-leaves
endLeaf <- logical()
endLeaf <- NA
conceptListStudy <- cbind(conceptListStudy, endLeaf, stringsAsFactors = F)
conceptListStudy$endLeaf[conceptListStudy$type %in% c("NUMERIC", "HIGH_DIMENSIONAL")] <- T
conceptListStudy$endLeaf[conceptListStudy$type == "CATEGORICAL_OPTION"] <- F
Expand Down

0 comments on commit f6276ee

Please sign in to comment.