Skip to content

Commit

Permalink
jumble parameter in mkconfig, closes #101 (#103)
Browse files Browse the repository at this point in the history
* jumble parameter in `mkconfig`, closes #101

* format, lint
  • Loading branch information
wsdewitt authored Jun 18, 2022
1 parent 5020a64 commit 7d99d0c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gctree/mkconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ 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 +53,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 7d99d0c

Please sign in to comment.