Skip to content

Commit f0bf7e4

Browse files
relax default
1 parent d9a5b50 commit f0bf7e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

utilities/analyze.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ def do_inputs():
126126
### Params for alignment error plot
127127
label7 = parser.add_argument_group(title="Alignment error parameters")
128128
label7.add_argument('--alignment_error_scale',nargs=6,type=float,help="<ins_min> <ins_max> <mismatch_min> <mismatch_max> <del_min> <del_max>")
129-
label7.add_argument('--alignment_error_max_length',type=int,default=2000000,help="The maximum number of alignment bases to calculate error from")
129+
label7.add_argument('--alignment_error_max_length',type=int,default=1000000,help="The maximum number of alignment bases to calculate error from")
130130

131131
### Params for context error plot
132132
label8 = parser.add_argument_group(title="Context error parameters")
133133
label8.add_argument('--context_error_scale',nargs=6,type=float,help="<ins_min> <ins_max> <mismatch_min> <mismatch_max> <del_min> <del_max>")
134-
label8.add_argument('--context_error_stopping_point',type=int,default=10000,help="Sample at least this number of each context")
134+
label8.add_argument('--context_error_stopping_point',type=int,default=5000,help="Sample at least this number of each context")
135135

136136
## Params for rarefraction plots
137137
label9 = parser.add_argument_group(title="Rarefraction plot parameters")

0 commit comments

Comments
 (0)