Skip to content

Commit ea239d3

Browse files
committed
ENH: Pull anatomical inputs to CIFTI through
1 parent c294028 commit ea239d3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

fmriprep/workflows/base.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,12 @@ def init_single_subject_wf(subject_id: str):
507507
('outputnode.subjects_dir', 'inputnode.subjects_dir'),
508508
('outputnode.subject_id', 'inputnode.subject_id'),
509509
('outputnode.fsnative2t1w_xfm', 'inputnode.fsnative2t1w_xfm'),
510+
('outputnode.white', 'inputnode.white'),
511+
('outputnode.pial', 'inputnode.pial'),
512+
('outputnode.midthickness', 'inputnode.midthickness'),
513+
('outputnode.thickness', 'inputnode.thickness'),
514+
('outputnode.sphere_reg_fsLR', 'inputnode.sphere_reg_fsLR'),
515+
('outputnode.anat_ribbon', 'inputnode.anat_ribbon'),
510516
]),
511517
]) # fmt:skip
512518
if fieldmap_id:

fmriprep/workflows/bold/base.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,16 @@ def init_bold_wf(
189189
"t1w_mask",
190190
"t1w_dseg",
191191
"t1w_tpms",
192+
# FreeSurfer outputs
192193
"subjects_dir",
193194
"subject_id",
194195
"fsnative2t1w_xfm",
196+
"white",
197+
"midthickness",
198+
"pial",
199+
"thickness",
200+
"sphere_reg_fsLR",
201+
"anat_ribbon",
195202
# Fieldmap registration
196203
"fmap",
197204
"fmap_ref",

0 commit comments

Comments
 (0)