We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 662a58d commit 8283eddCopy full SHA for 8283edd
dmriprep/workflows/dwi/base.py
@@ -230,9 +230,14 @@ def _bold_reg_suffix(fallback):
230
from sdcflows.workflows.apply.correction import init_unwarp_wf
231
232
coeff2epi_wf = init_coeff2epi_wf(
233
- omp_nthreads=config.nipype.omp_nthreads, write_coeff=True
+ debug=config.execution.debug,
234
+ omp_nthreads=config.nipype.omp_nthreads,
235
+ write_coeff=True,
236
+ )
237
+ unwarp_wf = init_unwarp_wf(
238
239
+ omp_nthreads=config.nipype.omp_nthreads
240
)
- unwarp_wf = init_unwarp_wf(omp_nthreads=config.nipype.omp_nthreads)
241
unwarp_wf.inputs.inputnode.metadata = layout.get_metadata(str(dwi_file))
242
243
output_select = pe.Node(
0 commit comments