Skip to content

Commit 8283edd

Browse files
committed
fix: propagate whether this is a test run
1 parent 662a58d commit 8283edd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

dmriprep/workflows/dwi/base.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,14 @@ def _bold_reg_suffix(fallback):
230230
from sdcflows.workflows.apply.correction import init_unwarp_wf
231231

232232
coeff2epi_wf = init_coeff2epi_wf(
233-
omp_nthreads=config.nipype.omp_nthreads, write_coeff=True
233+
debug=config.execution.debug,
234+
omp_nthreads=config.nipype.omp_nthreads,
235+
write_coeff=True,
236+
)
237+
unwarp_wf = init_unwarp_wf(
238+
debug=config.execution.debug,
239+
omp_nthreads=config.nipype.omp_nthreads
234240
)
235-
unwarp_wf = init_unwarp_wf(omp_nthreads=config.nipype.omp_nthreads)
236241
unwarp_wf.inputs.inputnode.metadata = layout.get_metadata(str(dwi_file))
237242

238243
output_select = pe.Node(

0 commit comments

Comments
 (0)