@@ -182,7 +182,7 @@ class TensorMetricsInputSpec(CommandLineInputSpec):
182182 out_eval = File (
183183 argstr = '-value %s' , desc = 'output selected eigenvalue(s) file' )
184184 component = traits .List (
185- [1 , 2 , 3 ],
185+ [1 ],
186186 usedefault = True ,
187187 argstr = '-num %s' ,
188188 sep = ',' ,
@@ -222,7 +222,7 @@ class TensorMetrics(CommandLine):
222222 >>> comp.inputs.in_file = 'dti.mif'
223223 >>> comp.inputs.out_fa = 'fa.mif'
224224 >>> comp.cmdline # doctest: +ELLIPSIS
225- 'tensor2metric -num 1,2,3 -fa fa.mif dti.mif'
225+ 'tensor2metric -num 1 -fa fa.mif dti.mif'
226226 >>> comp.run() # doctest: +SKIP
227227 """
228228
@@ -267,7 +267,6 @@ class ComputeTDIInputSpec(CommandLineInputSpec):
267267 desc = 'specify output image data type' )
268268 use_dec = traits .Bool (argstr = '-dec' , desc = 'perform mapping in DEC space' )
269269 dixel = File (
270- 'dixels.txt' , usedefault = True ,
271270 argstr = '-dixel %s' ,
272271 desc = 'map streamlines to'
273272 'dixels within each voxel. Directions are stored as'
@@ -416,7 +415,7 @@ class ComputeTDI(MRTrix3Base):
416415 >>> tdi = mrt.ComputeTDI()
417416 >>> tdi.inputs.in_file = 'dti.mif'
418417 >>> tdi.cmdline # doctest: +ELLIPSIS
419- 'tckmap -dixel dixels.txt dti.mif tdi.mif'
418+ 'tckmap dti.mif tdi.mif'
420419 >>> tdi.run() # doctest: +SKIP
421420 """
422421
0 commit comments