Skip to content

Commit 44c0f30

Browse files
committed
To allow multiple images to be processed in parallel, in the mindboggle() function in mindboggle123 set the working directory to be the current working directory.
1 parent 0bc029c commit 44c0f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mindboggle/mindboggle123

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def mindboggle(subjectid, fsdir, antsdir, antsseg, out, args, num_threads=1):
220220
ants = os.path.join(antsdir, subjectid, antsseg)
221221

222222
all_args = ' '.join([DATA, '--out', out, '--ants', ants,
223-
'--workdir', os.getcwd(), args])
223+
'--working', os.getcwd(), args])
224224

225225
if num_threads > 1:
226226
all_args += ' --plugin MultiProc --plugin_args "dict(n_procs={0})"'.\

0 commit comments

Comments
 (0)