File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
nipype/interfaces/mrtrix3 Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class ResponseSDInputSpec(MRTrix3BaseInputSpec):
27
27
'tournier' ,
28
28
'tax' ,
29
29
argstr = '%s' ,
30
- position = - 6 ,
30
+ position = 1 ,
31
31
mandatory = True ,
32
32
desc = 'response estimation algorithm (multi-tissue)' )
33
33
in_file = File (
@@ -74,7 +74,7 @@ class ResponseSD(MRTrix3Base):
74
74
>>> resp.inputs.algorithm = 'tournier'
75
75
>>> resp.inputs.grad_fsl = ('bvecs', 'bvals')
76
76
>>> resp.cmdline # doctest: +ELLIPSIS
77
- 'dwi2response -fslgrad bvecs bvals tournier dwi.mif wm.txt'
77
+ 'dwi2response tournier -fslgrad bvecs bvals dwi.mif wm.txt'
78
78
>>> resp.run() # doctest: +SKIP
79
79
"""
80
80
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def test_ResponseSD_inputs():
8
8
algorithm = dict (
9
9
argstr = '%s' ,
10
10
mandatory = True ,
11
- position = - 6 ,
11
+ position = 1 ,
12
12
),
13
13
args = dict (argstr = '%s' , ),
14
14
bval_scale = dict (argstr = '-bvalue_scaling %s' , ),
You can’t perform that action at this time.
0 commit comments