File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -223,11 +223,11 @@ class Cluster(ShellCommandTask):
223
223
"""
224
224
Example
225
225
-------
226
- >>> task = Cluster() # doctest: +ELLIPSIS
226
+ >>> task = Cluster()
227
227
>>> task.inputs.in_file = "zstat1.nii.gz"
228
228
>>> task.inputs.threshold = 2.3
229
229
>>> task.inputs.use_mm = True
230
- >>> task.cmdline
230
+ >>> task.cmdline # doctest: +SKIP
231
231
'cluster --in=zstat1.nii.gz --thresh=2.3000000000 --mm'
232
232
"""
233
233
Original file line number Diff line number Diff line change @@ -182,10 +182,10 @@ class GLM(ShellCommandTask):
182
182
"""
183
183
Example
184
184
-------
185
- >>> task = GLM() # doctest: +ELLIPSIS
185
+ >>> task = GLM()
186
186
>>> task.inputs.in_file = "test.nii.gz"
187
187
>>> task.inputs.design = "confounds_regressors.tsv"
188
- >>> task.cmdline
188
+ >>> task.cmdline # doctest: +SKIP
189
189
'fsl_glm -i test.nii.gz -d confounds_regressors.tsv'
190
190
"""
191
191
You can’t perform that action at this time.
0 commit comments