File tree 2 files changed +2
-9
lines changed
nipype/interfaces/mrtrix3
2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,8 @@ class FitTensorInputSpec(MRTrix3BaseInputSpec):
39
39
'rician' ,
40
40
argstr = '-method %s' ,
41
41
desc = ('select method used to perform the fitting' ))
42
-
43
-
44
- class FitTensorInputSpec0_3_13 (FitTensorInputSpec ):
45
42
reg_term = traits .Float (
46
- 5.e3 , usedefault = True ,
43
+ 5.e3 ,
47
44
argstr = '-regularisation %f' ,
48
45
max_ver = '0.3.13' ,
49
46
desc = ('specify the strength of the regularisation term on the '
@@ -75,10 +72,7 @@ class FitTensor(MRTrix3Base):
75
72
"""
76
73
77
74
_cmd = 'dwi2tensor'
78
- if Info .looseversion () < LooseVersion ("0.3.14" ):
79
- input_spec = FitTensorInputSpec0_3_13
80
- else :
81
- input_spec = FitTensorInputSpec
75
+ input_spec = FitTensorInputSpec
82
76
output_spec = FitTensorOutputSpec
83
77
84
78
def _list_outputs (self ):
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ def test_FitTensor_inputs():
35
35
reg_term = dict (
36
36
argstr = '-regularisation %f' ,
37
37
max_ver = '0.3.13' ,
38
- usedefault = True ,
39
38
),
40
39
)
41
40
inputs = FitTensor .input_spec ()
You can’t perform that action at this time.
0 commit comments