Skip to content

Commit

Permalink
Updated default value min-cnv-len
Browse files Browse the repository at this point in the history
Updated the default min-cnv-len value from 5 bp to 1Mbp
  • Loading branch information
philippesanio authored Jun 14, 2023
1 parent 1f8c636 commit 01b8ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectre.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def get_arguments():
help='..., default = 2')
subparser_cnv_caller.add_argument('-n', '--n-size', type=int, required=False, dest='n_size', default=5,
help='..., default = 5')
subparser_cnv_caller.add_argument('-mcl', '--min-cnv-len', type=int, required=False, dest='min_cnv_len', default=5,
subparser_cnv_caller.add_argument('-mcl', '--min-cnv-len', type=int, required=False, dest='min_cnv_len', default=1000000,
help='..., default = 1000000')
subparser_cnv_caller.add_argument('-t', '--threads', type=int, required=False, dest='threads', default=1,
help='..., default = 1')
Expand Down

0 comments on commit 01b8ed5

Please sign in to comment.