From 2c73712ddf6a4a8e3f53053666141be78ba79378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Cl=C3=A9net?= Date: Tue, 17 Oct 2023 17:45:51 +0200 Subject: [PATCH] Bug with shrink factors --- narps_open/pipelines/team_08MQ.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/narps_open/pipelines/team_08MQ.py b/narps_open/pipelines/team_08MQ.py index 2878bc71..25095e16 100644 --- a/narps_open/pipelines/team_08MQ.py +++ b/narps_open/pipelines/team_08MQ.py @@ -89,7 +89,11 @@ def get_preprocessing(self): [0.0, 0.0, 0.0], [0.0, 0.0, 0.0] ] - normalization_anat.inputs.number_of_iterations = [10000, 10000, 10000] + normalization_anat.inputs.number_of_iterations = [ + [10000, 10000, 10000], + [10000, 10000, 10000], + [10000, 10000, 10000] + ] # Threshold Node - create white-matter mask threshold_white_matter = Node(Threshold(), name = 'threshold_white_matter')