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 @@ -281,10 +281,10 @@ def _list_outputs(self):
281
281
class CompCorInputSpec (BaseInterfaceInputSpec ):
282
282
realigned_file = File (exists = True , mandatory = True ,
283
283
desc = 'already realigned brain image (4D)' )
284
- mask_file = File (exists = True , mandatory = False ,
284
+ mask_file = File (exists = True ,
285
285
desc = 'mask file that determines ROI (3D)' )
286
286
components_file = File ('components_file.txt' , exists = False ,
287
- mandatory = False , usedefault = True ,
287
+ usedefault = True ,
288
288
desc = 'filename to store physiological components' )
289
289
num_components = traits .Int (6 , usedefault = True ) # 6 for BOLD, 4 for ASL
290
290
use_regress_poly = traits .Bool (True , usedefault = True ,
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ class ApplyTransforms(ANTSCommand):
296
296
>>> at1.inputs.default_value = 0
297
297
>>> at1.inputs.transforms = ['ants_Warp.nii.gz', 'trans.mat']
298
298
>>> at1.inputs.invert_transform_flags = [False, False]
299
- >>> at1.cmdline
299
+ >>> at1.cmdline # doctest: +IGNORE_UNICODE
300
300
'antsApplyTransforms --default-value 0 --dimensionality 3 --input moving1.nii --interpolation BSpline[ 5 ] \
301
301
--output deformed_moving1.nii --reference-image fixed1.nii --transform [ ants_Warp.nii.gz, 0 ] \
302
302
--transform [ trans.mat, 0 ]'
@@ -310,7 +310,7 @@ class ApplyTransforms(ANTSCommand):
310
310
>>> atid.inputs.interpolation_parameters = (5,)
311
311
>>> atid.inputs.default_value = 0
312
312
>>> atid.inputs.transforms = 'identity'
313
- >>> atid.cmdline
313
+ >>> atid.cmdline # doctest: +IGNORE_UNICODE
314
314
'antsApplyTransforms --default-value 0 --dimensionality 3 --input moving1.nii \
315
315
--interpolation BSpline[ 5 ] --output deformed_moving1.nii --reference-image fixed1.nii \
316
316
--transform identity'
You can’t perform that action at this time.
0 commit comments