Skip to content

Commit 807928a

Browse files
committed
ENH: Pass --sloppy and --debug into fieldmaps workflow
1 parent 22125d7 commit 807928a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nibabies/workflows/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,8 @@ def init_single_subject_wf(subject_id):
480480
from sdcflows import fieldmaps as fm
481481

482482
fmap_wf = init_fmap_preproc_wf(
483-
debug=bool(config.execution.debug), # TODO: Add debug option for fieldmaps
483+
sloppy=bool(config.execution.sloppy),
484+
debug=config.execution.debug in ("all", "fieldmaps"),
484485
estimators=fmap_estimators,
485486
omp_nthreads=config.nipype.omp_nthreads,
486487
output_dir=nibabies_dir,

0 commit comments

Comments
 (0)