Skip to content

Commit 9d69a9c

Browse files
authored
fix: pass actual t1w files to summary interface (#3545)
Summary should receive the actual T1w files found, not a phony source file Closes #3530
2 parents d28596f + 5a1100f commit 9d69a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/workflows/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def init_single_subject_wf(
382382
]) # fmt:skip
383383
else:
384384
workflow.connect([
385-
(src_file, summary, [('source_file', 't1w')]),
385+
(bidssrc, summary, [('t1w', 't1w')]),
386386
(src_file, ds_report_summary, [('source_file', 'source_file')]),
387387
(src_file, ds_report_about, [('source_file', 'source_file')]),
388388
]) # fmt:skip

0 commit comments

Comments
 (0)