Skip to content

Commit cd49902

Browse files
authored
Merge pull request #142 from dvitale199/refactor_errors
switching --warn default
2 parents 43fd7fd + 3460d79 commit cd49902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

genotools/pipeline.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ def gt_argparse():
3131
parser.add_argument('--pfile', type=str, nargs='?', default=None, const=None, help='Genotype: String file path to PLINK 2 format genotype file (everything before the *.pgen/pvar/psam)')
3232
parser.add_argument('--vcf', type=str, nargs='?', default=None, const=None, help='Genotype: String file path to VCF format genotype file')
3333
parser.add_argument('--out', type=str, nargs='?', default=None, const=None, help='Prefix for output (including path)', required=True)
34-
parser.add_argument('--full_output', type=str, nargs='?', default='True', const='True', help='Output everything')
34+
parser.add_argument('--full_output', type=str, nargs='?', default='False', const='True', help='Output everything')
3535
parser.add_argument('--skip_fails', type=str, nargs='?', default='False', const='True', help='Skip up front check for fails')
36-
parser.add_argument('--warn', type=str, nargs='?', default='False', const='True', help='Warn of error and continue running pipeline')
36+
parser.add_argument('--warn', type=str, nargs='?', default='True', const='True', help='Warn of error and continue running pipeline')
3737

3838
# ancerstry arguments
3939
parser.add_argument('--ancestry', type=str, nargs='?', default='False', const='True', help='Split by ancestry')

0 commit comments

Comments
 (0)