Skip to content
Snippets Groups Projects
Commit f67a0800 authored by Hanna  JULIENNE's avatar Hanna JULIENNE
Browse files

change default handling of missing value : the server and the command line...

change default handling of missing value : the server and the command line will keep SNPs with missing phenotypes
parent 2436f003
Branches
No related tags found
2 merge requests!33change default handling of missing value : the server and the command line...,!28Update requirement, change default behaviour
......@@ -197,7 +197,7 @@ def get_parser():
parser_create_pd.add_argument(
"--worktable-path", required=True, help="path to the worktable file to generate"
)
parser_create_pd.add_argument("--keep-nans", action="store_true", default=False)
parser_create_pd.add_argument("--keep-nans", action="store_true", default=True)
parser_create_pd.add_argument(
"--manhattan-plot-path",
required=True,
......@@ -344,7 +344,7 @@ def get_parser():
help="Number of region to load in memory at once",
)
parser_create_wt.add_argument("--keep-nans", action="store_true", default=False)
parser_create_wt.add_argument("--keep-nans", action="store_true", default=True)
parser_create_wt.add_argument(
"--chromosome-number",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment