Skip to content

Commit 6c00f85

Browse files
authored
Merge pull request #2634 from atsuch/master
[FIX] Typo in DWIExtract of Mrtrix3interface
2 parents a7ab541 + e41bb69 commit 6c00f85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/mrtrix3/tests/test_auto_DWIExtract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_DWIExtract_inputs():
2121
mandatory=True,
2222
position=-2,
2323
),
24-
nobzero=dict(argstr='-nobzero', ),
24+
nobzero=dict(argstr='-no_bzero', ),
2525
nthreads=dict(
2626
argstr='-nthreads %d',
2727
nohash=True,

nipype/interfaces/mrtrix3/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class DWIExtractInputSpec(MRTrix3BaseInputSpec):
503503
out_file = File(
504504
argstr='%s', mandatory=True, position=-1, desc='output image')
505505
bzero = traits.Bool(argstr='-bzero', desc='extract b=0 volumes')
506-
nobzero = traits.Bool(argstr='-nobzero', desc='extract non b=0 volumes')
506+
nobzero = traits.Bool(argstr='-no_bzero', desc='extract non b=0 volumes')
507507
singleshell = traits.Bool(
508508
argstr='-singleshell', desc='extract volumes with a specific shell')
509509
shell = traits.List(

0 commit comments

Comments
 (0)