Skip to content

Commit

Permalink
setting default to not remove phenotype outliers as we assume the use…
Browse files Browse the repository at this point in the history
…r has taken steps to account for outliers in the phenotype data
  • Loading branch information
jeffersonfparil committed Jun 24, 2024
1 parent 0124474 commit fa04874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/exec_Rscript/gp.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ parser$add_argument("--pheno-idx-col-id", dest="p
parser$add_argument("--pheno-idx-col-pop", dest="pheno_idx_col_pop", type="integer", default=2, help="Column number in the phenotype file corresponding to the population/grouping names [default=2].")
parser$add_argument("--pheno-idx-col-y", dest="pheno_idx_col_y", type="integer", default=3, help="Column number in the phenotype file corresponding to the numeric phenotype data [default=3].")
parser$add_argument("--pheno-na-strings", dest="pheno_na_strings", type="character", default=c("", "-", "NA", "na", "NaN", "missing", "MISSING"), help="Strings of characters corresponding to missing data in the phenotype file [default=c('', '-', 'NA', 'na', 'NaN', 'missing', 'MISSING')].")
parser$add_argument("--pheno-bool-remove-outliers", dest="pheno_bool_remove_outliers", type="logical", default=FALSE, help="Remove outliers from the phenotype file [default=TRUE]?")
parser$add_argument("--pheno-bool-remove-outliers", dest="pheno_bool_remove_outliers", type="logical", default=FALSE, help="Remove outliers from the phenotype file [default=FALSE]?")
parser$add_argument("--pheno-bool-remove-NA", dest="pheno_bool_remove_NA", type="logical", default=FALSE, help="Remove samples missing phenotype data in the phenotype file? [default=FALSE].")
parser$add_argument("--bool-within", dest="bool_within", type="logical", default=TRUE, help="Perform within population k-fold cross-validation? [default=TRUE].")
parser$add_argument("--bool-across", dest="bool_across", type="logical", default=FALSE, help="Perform across populations cross-validations? [default=FALSE].")
Expand Down

0 comments on commit fa04874

Please sign in to comment.