Skip to content

Commit 0d8c4c8

Browse files
no gibbs for struct
1 parent 798768d commit 0d8c4c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

micaflow/resources/Snakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
277277
if 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:

0 commit comments

Comments
 (0)