From 1c9c4a82378a542861be078f89afb4169a2b43bb Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 26 Jul 2024 14:13:52 -0400 Subject: [PATCH] RF: Use new ds_std_volumes_wf inputnode fields --- fmriprep/workflows/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fmriprep/workflows/base.py b/fmriprep/workflows/base.py index 23588637..01664861 100644 --- a/fmriprep/workflows/base.py +++ b/fmriprep/workflows/base.py @@ -387,10 +387,10 @@ def init_single_subject_wf(subject_id: str): ]), (anat_fit_wf, ds_std_volumes_wf, [ ('outputnode.t1w_valid_list', 'inputnode.source_files'), - ('outputnode.t1w_preproc', 'inputnode.t1w_preproc'), - ('outputnode.t1w_mask', 'inputnode.t1w_mask'), - ('outputnode.t1w_dseg', 'inputnode.t1w_dseg'), - ('outputnode.t1w_tpms', 'inputnode.t1w_tpms'), + ('outputnode.t1w_preproc', 'inputnode.anat_preproc'), + ('outputnode.t1w_mask', 'inputnode.anat_mask'), + ('outputnode.t1w_dseg', 'inputnode.anat_dseg'), + ('outputnode.t1w_tpms', 'inputnode.anat_tpms'), ]), (template_iterator_wf, ds_std_volumes_wf, [ ('outputnode.std_t1w', 'inputnode.ref_file'),