Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,10 @@
"affiliation": "Sagol School of Neuroscience, Tel Aviv University",
"name": "Baratz, Zvi"
},
{
"affiliation": "Sagol School of Neuroscience, Tel Aviv University",
"name": "Ben-Zvi,Gal"
},
{
"name": "Matsubara, K"
},
Expand Down
4 changes: 2 additions & 2 deletions nipype/interfaces/mrtrix3/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@ class DWIBiasCorrectInputSpec(MRTrix3BaseInputSpec):
)
in_mask = File(argstr="-mask %s", desc="input mask image for bias field estimation")
use_ants = traits.Bool(
argstr="-ants",
argstr="ants",
mandatory=True,
desc="use ANTS N4 to estimate the inhomogeneity field",
xor=["use_fsl"],
)
use_fsl = traits.Bool(
argstr="-fsl",
argstr="fsl",
mandatory=True,
desc="use FSL FAST to estimate the inhomogeneity field",
xor=["use_ants"],
Expand Down