From fa048746b02e1841a08abe5a9cfc86c8e577b04c Mon Sep 17 00:00:00 2001 From: jeffersonfparil Date: Mon, 24 Jun 2024 11:26:18 +1000 Subject: [PATCH] setting default to not remove phenotype outliers as we assume the user has taken steps to account for outliers in the phenotype data --- inst/exec_Rscript/gp.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/exec_Rscript/gp.R b/inst/exec_Rscript/gp.R index 7fcded8..04d7eb4 100644 --- a/inst/exec_Rscript/gp.R +++ b/inst/exec_Rscript/gp.R @@ -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].")