@@ -73,27 +73,27 @@ This will create a file "outputtestsave.py" with the following content:
7373 return out
7474
7575 testfunc.inputs.function_str = getsource(testfunc_1)
76- testfunc.inputs. ignore_exception = False
76+ testfunc.ignore_exception = False
7777 testfunc.inputs.in1 = '-sub'
7878 testsave.connect(inode, "a", testfunc, "in1")
7979 # Node: testsave.bet2
8080 bet2 = MapNode(BET(), iterfield=['infile'], name="bet2")
8181 bet2.iterables = ('frac', [0.4, 0.5])
82+ bet2.interface.ignore_exception = False
8283 bet2.inputs.environ = {'FSLOUTPUTTYPE': 'NIFTI_GZ'}
83- bet2.inputs.ignore_exception = False
8484 bet2.inputs.output_type = 'NIFTI_GZ'
8585 bet2.terminal_output = 'stream'
8686 # Node: testsave.bet
8787 bet = Node(BET(), name="bet")
8888 bet.iterables = ('frac', [0.3, 0.4])
89+ bet.interface.ignore_exception = False
8990 bet.inputs.environ = {'FSLOUTPUTTYPE': 'NIFTI_GZ'}
90- bet.inputs.ignore_exception = False
9191 bet.inputs.output_type = 'NIFTI_GZ'
9292 bet.terminal_output = 'stream'
9393 # Node: testsave.maths
9494 maths = Node(ImageMaths(), name="maths")
95+ maths.interface.ignore_exception = False
9596 maths.inputs.environ = {'FSLOUTPUTTYPE': 'NIFTI_GZ'}
96- maths.inputs.ignore_exception = False
9797 maths.inputs.output_type = 'NIFTI_GZ'
9898 maths.terminal_output = 'stream'
9999 testsave.connect(bet2, ('mask_file', func), maths, "in_file2")
0 commit comments