-
Notifications
You must be signed in to change notification settings - Fork 535
Closed
Milestone
Description
Hi, I got this error when executing mrtrix3.EstimateFOD
interface with the latest MRtrix version (3.0_RC2-117-gf098f097
) installed on macOS Mojave 10.14.2 through a brew install mrtrix3
:
dwi2fod: [ERROR] CSD algorithm expects a single input response function and single output FOD image
It seems that MRtrix now expects "pairs of input tissue response and output ODF images" according to the documentation. So I guess that the following lines need to be updated:
nipype/nipype/interfaces/mrtrix3/reconst.py
Lines 95 to 109 in 35b58cd
wm_txt = File( | |
argstr='%s', position=-6, mandatory=True, desc='WM response text file') | |
wm_odf = File( | |
'wm.mif', | |
argstr='%s', | |
position=-5, | |
usedefault=True, | |
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', | |
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', | |
position=-1, desc='output CSF ODF') |
Metadata
Metadata
Assignees
Labels
No labels