Skip to content

Commit

Permalink
Fix connection.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Nov 9, 2024
1 parent c92f653 commit 0e88b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fmriprep/workflows/bold/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,11 +940,11 @@ def init_bold_native_wf(
bold_stc_wf = init_bold_stc_wf(metadata=metadata, mem_gb=mem_gb)
workflow.connect([
(inputnode, bold_stc_wf, [('dummy_scans', 'inputnode.skip_vols')]),
(denoisebuffer, bold_stc_wf, [('out_file', 'inputnode.bold_file')]),
(denoisebuffer, bold_stc_wf, [('bold_file', 'inputnode.bold_file')]),
(bold_stc_wf, boldbuffer, [('outputnode.stc_file', 'bold_file')]),
]) # fmt:skip
else:
workflow.connect([(denoisebuffer, boldbuffer, [('out_file', 'bold_file')])])
workflow.connect([(denoisebuffer, boldbuffer, [('bold_file', 'bold_file')])])

# Prepare fieldmap metadata
if fieldmap_id:
Expand Down

0 comments on commit 0e88b6c

Please sign in to comment.