Skip to content

Commit f490616

Browse files
committed
Fixed issue with CSD estimation in MRtrix3
1 parent 3e794d4 commit f490616

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/mrtrix3/reconst.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ class EstimateFODInputSpec(MRTrix3BaseInputSpec):
102102
mandatory=True,
103103
desc='output WM ODF')
104104
gm_txt = File(argstr='%s', position=-4, desc='GM response text file')
105-
gm_odf = File('gm.mif', usedefault=True, argstr='%s',
105+
gm_odf = File('gm.mif', usedefault=False, argstr='%s',
106106
position=-3, desc='output GM ODF')
107107
csf_txt = File(argstr='%s', position=-2, desc='CSF response text file')
108-
csf_odf = File('csf.mif', usedefault=True, argstr='%s',
108+
csf_odf = File('csf.mif', usedefault=False, argstr='%s',
109109
position=-1, desc='output CSF ODF')
110110
mask_file = File(exists=True, argstr='-mask %s', desc='mask image')
111111

0 commit comments

Comments
 (0)