Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix --min-length parameter help #438

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pangolin/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def main(sysargs = sys.argv[1:]):
a_group.add_argument("--skip-scorpio", action='store_true', default=False, help="Developer option - do not use scorpio to check VOC/VUI lineage assignments.",dest="skip_scorpio")

a_group.add_argument('--max-ambig', action="store", type=float,help="Maximum proportion of Ns allowed for pangolin to attempt assignment. Default: 0.3",dest="maxambig")
a_group.add_argument('--min-length', action="store", type=int,help="Minimum query length allowed for pangolin to attempt assignment. Default: 25000",dest="minlen")
a_group.add_argument('--min-length', action="store", type=int,help="Minimum query length excluding Ns allowed for pangolin to attempt assignment. Default: 0 (use --max-ambig)",dest="minlen")
a_group.add_argument('--usher', action='store_true', default=False, help=argparse.SUPPRESS)

d_group = parser.add_argument_group('Data options')
Expand Down