File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
nipype/interfaces/mrtrix3 Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,6 @@ class ResponseSDInputSpec(MRTrix3BaseInputSpec):
276
276
exists = True , argstr = '-mask %s' , desc = 'provide initial mask image' )
277
277
max_sh = InputMultiObject (
278
278
traits .Int ,
279
- value = [8 ],
280
- usedefault = True ,
281
279
argstr = '-lmax %s' ,
282
280
sep = ',' ,
283
281
desc = ('maximum harmonic degree of response function - single value for '
@@ -303,7 +301,7 @@ class ResponseSD(MRTrix3Base):
303
301
>>> resp.inputs.algorithm = 'tournier'
304
302
>>> resp.inputs.grad_fsl = ('bvecs', 'bvals')
305
303
>>> resp.cmdline # doctest: +ELLIPSIS
306
- 'dwi2response tournier -fslgrad bvecs bvals -lmax 8 dwi.mif wm.txt'
304
+ 'dwi2response tournier -fslgrad bvecs bvals dwi.mif wm.txt'
307
305
>>> resp.run() # doctest: +SKIP
308
306
309
307
# We can also pass in multiple harmonic degrees in the case of multi-shell
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ def test_ResponseSD_inputs():
37
37
max_sh = dict (
38
38
argstr = '-lmax %s' ,
39
39
sep = ',' ,
40
- usedefault = True ,
41
40
),
42
41
mtt_file = dict (
43
42
argstr = '%s' ,
You can’t perform that action at this time.
0 commit comments