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 11Next release
22============
33
4+ * ENH: Updated FSL dtifit to include option for grad non-linearities (https://github.com/nipy/nipype/pull/1032)
45* ENH: Updated Camino tracking interfaces, which can now use FSL bedpostx output.
56 New options also include choice of tracker, interpolator, stepsize and
67 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):
4949 cni = File (exists = True , desc = 'input counfound regressors' , argstr = '--cni=%s' )
5050 little_bit = traits .Bool (desc = 'only process small area of brain' ,
5151 argstr = '--littlebit' )
52-
52+ gradnonlin = File (exists = True , argstr = '--gradnonlin=%s' ,
53+ desc = 'gradient non linearities' )
5354
5455class DTIFitOutputSpec (TraitedSpec ):
5556 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():
2626 environ = dict (nohash = True ,
2727 usedefault = True ,
2828 ),
29+ gradnonlin = dict (argstr = '--gradnonlin=%s' ,
30+ ),
2931 ignore_exception = dict (nohash = True ,
3032 usedefault = True ,
3133 ),
You can’t perform that action at this time.
0 commit comments