Skip to content

Commit 1bbe7d3

Browse files
committed
FIX: argstr for mask in BlurToFWHM
1 parent 79d30b4 commit 1bbe7d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ class BlurToFWHMInputSpec(AFNICommandInputSpec):
930930
mask = File(
931931
desc='Mask dataset, if desired. Voxels NOT in mask will be set to zero '
932932
'in output.',
933-
argstr='-blurmaster %s',
933+
argstr='-mask %s',
934934
exists=True)
935935

936936

nipype/interfaces/afni/tests/test_auto_BlurToFWHM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_BlurToFWHM_inputs():
2323
argstr='-input %s',
2424
mandatory=True,
2525
),
26-
mask=dict(argstr='-blurmaster %s', ),
26+
mask=dict(argstr='-mask %s', ),
2727
num_threads=dict(
2828
nohash=True,
2929
usedefault=True,

0 commit comments

Comments
 (0)