Skip to content

Commit e0ba996

Browse files
committed
make threshold mandatory without default
1 parent d3d75f7 commit e0ba996

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/algorithms/stats.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
class ActivationCountInputSpec(BaseInterfaceInputSpec):
2121
in_files = InputMultiPath(File(exists=True), mandatory=True,
2222
desc='input file, generally a list of z-stat maps')
23-
threshold = traits.Float(1.65, usedefault=True,
24-
desc='binarization threshold. A z-value of 1.65 '
25-
'corresponds to a two-sided test of p<.10')
23+
threshold = traits.Float(
24+
mandatory=True, desc='binarization threshold. E.g. a threshold of 1.65 '
25+
'corresponds to a two-sided test of p<.10')
2626

2727

2828
class ActivationCountOutputSpec(TraitedSpec):

0 commit comments

Comments
 (0)