File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
Next release
2
2
============
3
3
4
+ * ENH: Updated FSL dtifit to include option for grad non-linearities (https://github.com/nipy/nipype/pull/1032)
4
5
* ENH: Updated Camino tracking interfaces, which can now use FSL bedpostx output.
5
6
New options also include choice of tracker, interpolator, stepsize and
6
7
curveinterval for angle threshold (https://github.com/nipy/nipype/pull/1029)
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ class DTIFitInputSpec(FSLCommandInputSpec):
49
49
cni = File (exists = True , desc = 'input counfound regressors' , argstr = '--cni=%s' )
50
50
little_bit = traits .Bool (desc = 'only process small area of brain' ,
51
51
argstr = '--littlebit' )
52
-
52
+ gradnonlin = File (exists = True , argstr = '--gradnonlin=%s' ,
53
+ desc = 'gradient non linearities' )
53
54
54
55
class DTIFitOutputSpec (TraitedSpec ):
55
56
V1 = File (exists = True , desc = 'path/name of file with the 1st eigenvector' )
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ def test_DTIFit_inputs():
26
26
environ = dict (nohash = True ,
27
27
usedefault = True ,
28
28
),
29
+ gradnonlin = dict (argstr = '--gradnonlin=%s' ,
30
+ ),
29
31
ignore_exception = dict (nohash = True ,
30
32
usedefault = True ,
31
33
),
You can’t perform that action at this time.
0 commit comments