Skip to content

Commit 13f7654

Browse files
authored
Merge pull request #1128 from ZhifangYe/master
Fix bad connection for --medial-surface-nan option
2 parents 0d9aa92 + 2bc71ba commit 13f7654

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.zenodo.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@
6868
"affiliation": "Department of Psychology, University of California, Berkeley",
6969
"orcid": "0000-0001-8012-6399"
7070
},
71+
{
72+
"name": "Ye, Zhifang",
73+
"affiliation": "State Key Laboratory of Cognitive Neuroscience and Learning, Beijing Normal University",
74+
"orcid": "0000-0003-0489-2619"
75+
},
7176
{
7277
"name": "Poldrack, Russell A.",
7378
"affiliation": "Department of Psychology, Stanford University",

fmriprep/workflows/bold/resampling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def select_target(subject_id, space):
151151
(inputnode, medial_nans, [('subjects_dir', 'subjects_dir')]),
152152
(sampler, medial_nans, [('out_file', 'in_file')]),
153153
(targets, medial_nans, [('out', 'target_subject')]),
154-
(medial_nans, merger, [('out', 'in1')]),
154+
(medial_nans, merger, [('out_file', 'in1')]),
155155
])
156156
else:
157157
workflow.connect(sampler, 'out_file', merger, 'in1')

0 commit comments

Comments
 (0)