Skip to content

Commit b34497c

Browse files
committed
Fixed inconsistent faststructure string
1 parent aaec567 commit b34497c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

structure_threader/structure_threader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def structure_harvester(resultsdir, wrapped_prog):
205205
if not os.path.exists(outdir):
206206
os.mkdir(outdir)
207207

208-
if wrapped_prog == "fastStructure":
208+
if wrapped_prog == "faststructure":
209209
try:
210210
import evanno.fastChooseK as sh
211211
except ImportError:
@@ -543,7 +543,7 @@ def main():
543543

544544
# Figure out which program we are wrapping
545545
if "-fs" in sys.argv:
546-
wrapped_prog = "fastStructure"
546+
wrapped_prog = "faststructure"
547547
elif "-mv" in sys.argv:
548548
wrapped_prog = "maverick"
549549
elif "-st" in sys.argv:

0 commit comments

Comments
 (0)