File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -269,9 +269,9 @@ rule bias_field_correction:
269269 mask = rules .skull_strip_t1w .output .mask
270270 output :
271271 corrected = f"{ OUT_DIR } /{ SUBJECT } /{ SESSION } /anat/{ SUBJECT } _{ SESSION } _T1w-space_T1w.nii.gz"
272- threads : HEAVY_THREADS
272+ threads : LIGHT_THREADS
273273 shell :
274- "micaflow bias_correction -i {input.image} -o {output.corrected} -m {input.mask} --gibbs --threads {threads} "
274+ "micaflow bias_correction -i {input.image} -o {output.corrected} -m {input.mask}"
275275
276276# Place these rules in a conditional block to only run when FLAIR is available
277277if RUN_FLAIR :
@@ -302,9 +302,9 @@ if RUN_FLAIR:
302302 mask = rules .skull_strip_flair .output .mask
303303 output :
304304 corrected = f"{ OUT_DIR } /{ SUBJECT } /{ SESSION } /anat/{ SUBJECT } _{ SESSION } _FLAIR-space_FLAIR.nii.gz"
305- threads : HEAVY_THREADS
305+ threads : LIGHT_THREADS
306306 shell :
307- "micaflow bias_correction -i {input.image} -o {output.corrected} -m {input.mask} --gibbs --threads {threads} "
307+ "micaflow bias_correction -i {input.image} -o {output.corrected} -m {input.mask}"
308308
309309 rule registration_t1w :
310310 input :
You can’t perform that action at this time.
0 commit comments