Skip to content
Snippets Groups Projects
Commit 1f013830 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

BF: Cluster table will not contain P values if cluster thresholding was not

used.
parent 20d2d389
No related branches found
No related tags found
No related merge requests found
......@@ -385,6 +385,12 @@ def loadClusterResults(featdir, settings, contrast):
setattr(self, attrName, val)
# if cluster thresholding was not used,
# the cluster table will not contain
# P valuse.
if not hasattr(self, 'p'): self.p = 1.0
if not hasattr(self, 'logp'): self.logp = 0.0
# This dict provides a mapping between
# Cluster object attribute names, and
# the corresponding column name in the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment