Skip to content

Commit

Permalink
updating default min length to 25K bases
Browse files Browse the repository at this point in the history
  • Loading branch information
aineniamh committed May 5, 2021
1 parent 7ba94a8 commit f12db4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pangolin/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def main(sysargs = sys.argv[1:]):
parser.add_argument("--no-temp",action="store_true",help="Output all intermediate files, for dev purposes.")
parser.add_argument('--decompress-model',action="store_true",dest="decompress",help="Permanently decompress the model file to save time running pangolin.")
parser.add_argument('--max-ambig', action="store", default=0.5, type=float,help="Maximum proportion of Ns allowed for pangolin to attempt assignment. Default: 0.5",dest="maxambig")
parser.add_argument('--min-length', action="store", default=10000, type=int,help="Minimum query length allowed for pangolin to attempt assignment. Default: 10000",dest="minlen")
parser.add_argument('--min-length', action="store", default=25000, type=int,help="Minimum query length allowed for pangolin to attempt assignment. Default: 25000",dest="minlen")
parser.add_argument('--panGUIlin', action='store_true',help="Run web-app version of pangolin",dest="panGUIlin")
parser.add_argument("--verbose",action="store_true",help="Print lots of stuff to screen")
parser.add_argument("-t","--threads",action="store",help="Number of threads")
Expand Down

0 comments on commit f12db4c

Please sign in to comment.