Skip to content

Commit

Permalink
fix queue default args
Browse files Browse the repository at this point in the history
  • Loading branch information
yodeng committed Oct 21, 2022
1 parent 921370a commit 291daf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def HPCBlastArg():
description="hpc-blast <OPTIONS> <blast command>", add_help=False)
parser.add_argument("--split", type=int, default=10,
help='split query into num of chunks, 10 by default', metavar="<int>")
parser.add_argument("--queue", type=str, default="all.q",
parser.add_argument("--queue", type=str, default=["all.q", ],
help='sge queue, multi-queue can be sepreated by whitespace, all.q by default', nargs="*", metavar="<str>")
parser.add_argument("--cpu", type=int, default=1,
help='cpu usage for sge, 1 by default, max(--cpu, -num_threads) will be used', metavar="<int>")
Expand Down

0 comments on commit 291daf7

Please sign in to comment.