We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d75f7 commit e0ba996Copy full SHA for e0ba996
nipype/algorithms/stats.py
@@ -20,9 +20,9 @@
20
class ActivationCountInputSpec(BaseInterfaceInputSpec):
21
in_files = InputMultiPath(File(exists=True), mandatory=True,
22
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')
+ threshold = traits.Float(
+ mandatory=True, desc='binarization threshold. E.g. a threshold of 1.65 '
+ 'corresponds to a two-sided test of p<.10')
26
27
28
class ActivationCountOutputSpec(TraitedSpec):
0 commit comments