Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions nipype/interfaces/mrtrix3/reconst.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ class EstimateFODInputSpec(MRTrix3BaseInputSpec):
mandatory=True,
desc='output WM ODF')
gm_txt = File(argstr='%s', position=-4, desc='GM response text file')
gm_odf = File('gm.mif', usedefault=True, argstr='%s',
gm_odf = File('gm.mif', usedefault=False, argstr='%s',
position=-3, desc='output GM ODF')
csf_txt = File(argstr='%s', position=-2, desc='CSF response text file')
csf_odf = File('csf.mif', usedefault=True, argstr='%s',
csf_odf = File('csf.mif', usedefault=False, argstr='%s',
position=-1, desc='output CSF ODF')
mask_file = File(exists=True, argstr='-mask %s', desc='mask image')

Expand All @@ -118,7 +118,6 @@ class EstimateFODInputSpec(MRTrix3BaseInputSpec):
max_sh = InputMultiObject(
traits.Int,
value=[8],
usedefault=True,
argstr='-lmax %s',
sep=',',
desc=('maximum harmonic degree of response function - single value for single-shell response, list for multi-shell response'))
Expand Down Expand Up @@ -151,7 +150,7 @@ class EstimateFOD(MRTrix3Base):
>>> fod.inputs.wm_txt = 'wm.txt'
>>> fod.inputs.grad_fsl = ('bvecs', 'bvals')
>>> fod.cmdline # doctest: +ELLIPSIS
'dwi2fod -fslgrad bvecs bvals -lmax 8 csd dwi.mif wm.txt wm.mif gm.mif csf.mif'
'dwi2fod -fslgrad bvecs bvals csd dwi.mif wm.txt wm.mif'
>>> fod.run() # doctest: +SKIP
"""

Expand Down