Skip to content

Commit 7523a93

Browse files
committed
Implements ALStructure wrapper
1 parent c28f35c commit 7523a93

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

structure_threader/argparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def argument_parser(args):
9797
run_opts.add_argument("-R", dest="replicates", type=int, required=False,
9898
help="Number of replicate runs for each value "
9999
"of K (default:%(default)s).\nIgnored for "
100-
"fastStructure and MavericK",
100+
"fastStructure, MavericK and ALStructure",
101101
metavar="int", default=20)
102102

103103
io_opts.add_argument("-i", dest="infile", type=str, required=True,

structure_threader/structure_threader.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ def full_run(arg):
290290
wrapped_prog = "alstructure"
291291
arg.threads = 1
292292
arg.notests = True
293+
arg.k_list = [x for x in arg.k_list if x != 1]
293294

294295
structure_threader(wrapped_prog, arg)
295296

0 commit comments

Comments
 (0)