From 53cfa23cbd81eeb7ee39dc962daa0068b0c44982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Cl=C3=A9net?= Date: Wed, 24 Jan 2024 09:20:02 +0100 Subject: [PATCH] Select files node error --- narps_open/pipelines/team_U26C.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/narps_open/pipelines/team_U26C.py b/narps_open/pipelines/team_U26C.py index b9481c2f..6874882e 100755 --- a/narps_open/pipelines/team_U26C.py +++ b/narps_open/pipelines/team_U26C.py @@ -174,11 +174,11 @@ def get_subject_level_analysis(self): # Select files from derivatives templates = { - 'func': join('derivatives', 'fmriprep', '{subject_id}', 'func', + 'func': join('derivatives', 'fmriprep', 'sub-{subject_id}', 'func', 'sub-{subject_id}_task-MGT_run-*_bold_space-MNI152NLin2009cAsym_preproc.nii.gz'), 'confounds' : join('derivatives', 'fmriprep', 'sub-{subject_id}', 'func', 'sub-{subject_id}_task-MGT_run-*_bold_confounds.tsv'), - 'events': join('derivatives', 'fmriprep', + 'events': join('sub-{subject_id}', 'func', '{subject_id}_task-MGT_run-*_events.tsv') } selectderivs = Node(SelectFiles(templates), name = 'selectderivs')