Skip to content

Commit a7ab541

Browse files
authored
Merge pull request #2628 from weningerleon/master
[FIX] Typo
2 parents 7ea4f1b + 8122da0 commit a7ab541

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

nipype/interfaces/fsl/dti.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class FSLXCommandInputSpec(FSLCommandInputSpec):
171171
low=0,
172172
value=0,
173173
usedefault=True,
174-
argstr='--burninnoard=%d',
174+
argstr='--burnin_noard=%d',
175175
desc=('num of burnin jumps before the ard is'
176176
' imposed'))
177177
sample_every = traits.Range(
@@ -424,7 +424,7 @@ class BEDPOSTX5(FSLXCommand):
424424
>>> bedp = fsl.BEDPOSTX5(bvecs='bvecs', bvals='bvals', dwi='diffusion.nii',
425425
... mask='mask.nii', n_fibres=1)
426426
>>> bedp.cmdline
427-
'bedpostx bedpostx -b 0 --burninnoard=0 --forcedir -n 1 -j 5000 \
427+
'bedpostx bedpostx -b 0 --burnin_noard=0 --forcedir -n 1 -j 5000 \
428428
-s 1 --updateproposalevery=40'
429429
430430
"""

nipype/interfaces/fsl/tests/test_auto_BEDPOSTX5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_BEDPOSTX5_inputs():
1515
usedefault=True,
1616
),
1717
burn_in_no_ard=dict(
18-
argstr='--burninnoard=%d',
18+
argstr='--burnin_noard=%d',
1919
usedefault=True,
2020
),
2121
bvals=dict(mandatory=True, ),

nipype/interfaces/fsl/tests/test_auto_FSLXCommand.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_FSLXCommand_inputs():
1515
usedefault=True,
1616
),
1717
burn_in_no_ard=dict(
18-
argstr='--burninnoard=%d',
18+
argstr='--burnin_noard=%d',
1919
usedefault=True,
2020
),
2121
bvals=dict(

nipype/interfaces/fsl/tests/test_auto_XFibres5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test_XFibres5_inputs():
1515
usedefault=True,
1616
),
1717
burn_in_no_ard=dict(
18-
argstr='--burninnoard=%d',
18+
argstr='--burnin_noard=%d',
1919
usedefault=True,
2020
),
2121
bvals=dict(

0 commit comments

Comments
 (0)