Skip to content

Commit 09d0c99

Browse files
committed
Changes made to use new code paths.
1 parent 72f6498 commit 09d0c99

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

structure_threader/structure_threader.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def runprogram(wrapped_prog, iterations, arg):
7878
cli, output_file = sw.str_cli_generator(arg, k_val, rep_num)
7979

8080
elif wrapped_prog == "maverick": # Run MavericK
81-
cli, output_dir = mw.mav_cli_generator(arg, k_val)
81+
mav_params = mw.mav_params_parser(arg.params)
82+
cli, output_dir = mw.mav_cli_generator(arg, k_val, mav_params)
8283

8384
else: # Run fastStructure
8485
cli, output_file = fsw.fs_cli_generator(k_val, arg)
@@ -287,7 +288,8 @@ def full_run(arg):
287288
structure_threader(wrapped_prog, arg)
288289

289290
if wrapped_prog == "maverick":
290-
bestk = mw.maverick_merger(arg.outpath, arg.k_list, arg.params,
291+
mav_params = mw.mav_params_parser(arg.params)
292+
bestk = mw.maverick_merger(arg.outpath, arg.k_list, mav_params,
291293
arg.notests)
292294
arg.notests = True
293295

0 commit comments

Comments
 (0)