From e1c8726338f083b6f079ae497497ed401292ff36 Mon Sep 17 00:00:00 2001 From: cmaumet Date: Fri, 13 Dec 2024 14:57:29 +0100 Subject: [PATCH] revert to correct order of anat and other preproc --- narps_open/pipelines/team_98BT.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/narps_open/pipelines/team_98BT.py b/narps_open/pipelines/team_98BT.py index bba58851..74ad0dc7 100755 --- a/narps_open/pipelines/team_98BT.py +++ b/narps_open/pipelines/team_98BT.py @@ -337,8 +337,8 @@ def get_preprocessing(self): Returns: a list of nipype.WorkFlow """ return [ - self.get_preprocessing_sub_workflow(), - self.get_dartel_template_sub_workflow() + self.get_dartel_template_sub_workflow(), + self.get_preprocessing_sub_workflow() ] def get_preprocessing_outputs(self):