Skip to content

Commit 617bba0

Browse files
committed
fix xor in AFNI OutlierCount. fixes #1406
1 parent 91a0194 commit 617bba0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1676,13 +1676,13 @@ class OutlierCountInputSpec(CommandLineInputSpec):
16761676
False,
16771677
usedefault=True,
16781678
argstr='-autoclip',
1679-
xor=['in_file'],
1679+
xor=['mask'],
16801680
desc='clip off small voxels')
16811681
automask = traits.Bool(
16821682
False,
16831683
usedefault=True,
16841684
argstr='-automask',
1685-
xor=['in_file'],
1685+
xor=['mask'],
16861686
desc='clip off small voxels')
16871687
fraction = traits.Bool(
16881688
False,

0 commit comments

Comments
 (0)