Skip to content

Commit 0e88b6c

Browse files
committed
Fix connection.
1 parent c92f653 commit 0e88b6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fmriprep/workflows/bold/fit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -940,11 +940,11 @@ def init_bold_native_wf(
940940
bold_stc_wf = init_bold_stc_wf(metadata=metadata, mem_gb=mem_gb)
941941
workflow.connect([
942942
(inputnode, bold_stc_wf, [('dummy_scans', 'inputnode.skip_vols')]),
943-
(denoisebuffer, bold_stc_wf, [('out_file', 'inputnode.bold_file')]),
943+
(denoisebuffer, bold_stc_wf, [('bold_file', 'inputnode.bold_file')]),
944944
(bold_stc_wf, boldbuffer, [('outputnode.stc_file', 'bold_file')]),
945945
]) # fmt:skip
946946
else:
947-
workflow.connect([(denoisebuffer, boldbuffer, [('out_file', 'bold_file')])])
947+
workflow.connect([(denoisebuffer, boldbuffer, [('bold_file', 'bold_file')])])
948948

949949
# Prepare fieldmap metadata
950950
if fieldmap_id:

0 commit comments

Comments
 (0)