Skip to content

Commit b318aed

Browse files
committed
Merge pull request #770 from mick-d/master
Gradnonlin option added to xfibers
2 parents 8341801 + 5edea01 commit b318aed

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

nipype/interfaces/fsl/dti.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,7 @@ def _gen_filename(self, name):
776776
class XFibresInputSpec(FSLCommandInputSpec):
777777
dwi = File(exists=True, argstr="--data=%s", mandatory=True)
778778
mask = File(exists=True, argstr="--mask=%s", mandatory=True)
779+
gradnonlin = File(exists=True, argstr="--gradnonlin=%s")
779780
bvecs = File(exists=True, argstr="--bvecs=%s", mandatory=True)
780781
bvals = File(exists=True, argstr="--bvals=%s", mandatory=True)
781782
logdir = Directory("logdir", argstr="--logdir=%s", usedefault=True)

nipype/interfaces/fsl/tests/test_auto_XFibres.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ def test_XFibres_inputs():
2929
),
3030
fudge=dict(argstr='--fudge=%d',
3131
),
32+
gradnonlin=dict(argstr='--gradnonlin=%s',
33+
),
3234
ignore_exception=dict(nohash=True,
3335
usedefault=True,
3436
),

0 commit comments

Comments
 (0)