From 4d0a6ecde1603cc6e06b16446357ee90b471e594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Cl=C3=A9net?= Date: Tue, 23 Jan 2024 17:56:18 +0100 Subject: [PATCH] First level of U26C --- narps_open/pipelines/__init__.py | 2 +- narps_open/pipelines/team_U26C.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/narps_open/pipelines/__init__.py b/narps_open/pipelines/__init__.py index e0dba921..dc8ca6f9 100644 --- a/narps_open/pipelines/__init__.py +++ b/narps_open/pipelines/__init__.py @@ -69,7 +69,7 @@ 'R9K3': None, 'SM54': None, 'T54A': None, - 'U26C': None, + 'U26C': 'PipelineTeamU26C', 'UI76': None, 'UK24': None, 'V55J': None, diff --git a/narps_open/pipelines/team_U26C.py b/narps_open/pipelines/team_U26C.py index 58c1d2bf..be002afd 100755 --- a/narps_open/pipelines/team_U26C.py +++ b/narps_open/pipelines/team_U26C.py @@ -167,7 +167,7 @@ def get_subject_level_analysis(self): Returns: - subject_level_analysis : nipype.WorkFlow """ - # Identitiy interface Node - to iterate over subject_id and run + # Identity interface Node - to iterate over subject_id and run infosource = Node(interface=IdentityInterface(fields=['subject_id']), name = 'infosource') infosource.iterables = [('subject_id', self.subject_list)]