Skip to content

Commit 6cf32b0

Browse files
committed
Merge pull request #1032 from mick-d/dtifit_fsl
Update fsl dtifit wrapper to include option for gradient non-linearities
2 parents 226ff40 + 8fbe242 commit 6cf32b0

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Next 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)

nipype/interfaces/fsl/dti.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

5455
class DTIFitOutputSpec(TraitedSpec):
5556
V1 = File(exists=True, desc='path/name of file with the 1st eigenvector')

nipype/interfaces/fsl/tests/test_auto_DTIFit.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
),

0 commit comments

Comments
 (0)