File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ class Cluster(ShellCommandTask):
228
228
>>> task.inputs.threshold = 2.3
229
229
>>> task.inputs.use_mm = True
230
230
>>> task.cmdline
231
- 'cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm'
231
+ 'cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm' # doctest: +ELLIPSIS
232
232
"""
233
233
234
234
input_spec = Cluster_input_spec
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ class GLM(ShellCommandTask):
186
186
>>> task.inputs.in_file = "test.nii.gz"
187
187
>>> task.inputs.design = "confounds_regressors.tsv"
188
188
>>> task.cmdline
189
- 'fsl_glm -i test.nii.gz -d confounds_regressors.tsv'
189
+ 'fsl_glm -i test.nii.gz -d confounds_regressors.tsv' # doctest: +ELLIPSIS
190
190
"""
191
191
192
192
input_spec = GLM_input_spec
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class FilterRegressor(ShellCommandTask):
83
83
>>> task.inputs.filter_columns = "1,2,3"
84
84
>>> task.inputs.out_file = "test_filtered.nii.gz"
85
85
>>> task.cmdline
86
- 'fsl_regfilt -i test.nii.gz -o test_filtered.nii.gz -d design -f ' 1,2,3' '
86
+ 'fsl_regfilt -i test.nii.gz -o test_filtered.nii.gz -d design -f 1,2,3'
87
87
"""
88
88
89
89
input_spec = FilterRegressor_input_spec
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Cluster:
24
24
in_file : zstat1.nii.gz
25
25
threshold : 2.3
26
26
use_mm : True
27
- cmdline : cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm
27
+ cmdline : cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm # doctest: +ELLIPSIS
28
28
tests_inputs :
29
29
- in_file : zstat1.nii.gz
30
30
threshold : 2.3
224
224
doctest :
225
225
in_file : test.nii.gz
226
226
design : confounds_regressors.tsv
227
- cmdline : fsl_glm -i test.nii.gz -d confounds_regressors.tsv
227
+ cmdline : fsl_glm -i test.nii.gz -d confounds_regressors.tsv # doctest: +ELLIPSIS
228
228
tests_inputs :
229
229
- in_file : test.nii.gz
230
230
design : confounds_regressors.tsv
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ ConvertWarp: # needs more test data
46
46
reference : test.nii.gz
47
47
relwarp : True
48
48
out_file : test_concatwarp.nii.gz
49
- cmdline : convertwarp --ref=test.nii.gz --warp1=warpfield.nii --rel --out=test_concatwarp.nii.gz
49
+ cmdline : convertwarp --ref=test.nii.gz --warp1=warpfield.nii --rel --out=test_concatwarp.nii.gz
50
50
tests_inputs :
51
51
-
52
52
tests_outputs :
@@ -118,7 +118,7 @@ FilterRegressor:
118
118
design_file : design
119
119
filter_columns : 1,2,3
120
120
out_file : test_filtered.nii.gz
121
- cmdline : fsl_regfilt -i test.nii.gz -o test_filtered.nii.gz -d design -f ' 1,2,3'
121
+ cmdline : fsl_regfilt -i test.nii.gz -o test_filtered.nii.gz -d design -f 1,2,3
122
122
tests_inputs :
123
123
-
124
124
tests_outputs :
You can’t perform that action at this time.
0 commit comments