Skip to content

Commit 5d1c1e9

Browse files
authored
Removed "-" from algorithm specification
Resolves #3247 .
1 parent 97ce446 commit 5d1c1e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/mrtrix3/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,13 @@ class DWIBiasCorrectInputSpec(MRTrix3BaseInputSpec):
181181
)
182182
in_mask = File(argstr="-mask %s", desc="input mask image for bias field estimation")
183183
use_ants = traits.Bool(
184-
argstr="-ants",
184+
argstr="ants",
185185
mandatory=True,
186186
desc="use ANTS N4 to estimate the inhomogeneity field",
187187
xor=["use_fsl"],
188188
)
189189
use_fsl = traits.Bool(
190-
argstr="-fsl",
190+
argstr="fsl",
191191
mandatory=True,
192192
desc="use FSL FAST to estimate the inhomogeneity field",
193193
xor=["use_ants"],

0 commit comments

Comments
 (0)