Skip to content

Commit

Permalink
jumble parameter in mkconfig, closes #101
Browse files Browse the repository at this point in the history
  • Loading branch information
wsdewitt committed Jun 18, 2022
1 parent 5020a64 commit 86df80a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gctree/mkconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def get_parser():
parser.add_argument(
"--quick", action="store_true", help="quicker (less thourough) dnapars"
)
parser.add_argument(
"--jumble", default=10, help="search tree space with this many random permutations of the input sequences"
)
parser.add_argument(
"--bootstrap",
type=int,
Expand All @@ -48,7 +51,7 @@ def main(arg_list=None):
print("J")
# random seed for tree search
print("1")
print("10")
print(args.jumble)
if args.bootstrap:
print("M")
print("D")
Expand Down

0 comments on commit 86df80a

Please sign in to comment.