From b51c44693341c89252e5ecdbd54ca940140288ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Cl=C3=A9net?= Date: Wed, 31 Jan 2024 09:20:06 +0100 Subject: [PATCH] Bugs after remove file section --- narps_open/pipelines/team_51PW.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/narps_open/pipelines/team_51PW.py b/narps_open/pipelines/team_51PW.py index 2528fcd4..a2bb28f7 100644 --- a/narps_open/pipelines/team_51PW.py +++ b/narps_open/pipelines/team_51PW.py @@ -28,6 +28,8 @@ from narps_open.core.common import ( remove_file, list_intersection, elements_in_string, clean_list ) +from narps_open.core.interfaces import InterfaceFactory +from narps_open.utils.configuration import Configuration # Setup FSL FSLCommand.set_default_output_type('NIFTI_GZ') @@ -391,7 +393,7 @@ def get_run_level_analysis(self): ) # Add connections - subject_level_analysis.connect([ + run_level_analysis.connect([ (exclude_time_points, remove_smooth, [('roi_file', '_')]), (select_files, remove_smooth, [('func', 'file_name')]), (model_estimate, remove_roi, [('results_dir', '_')]),