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 476e262 commit c1e8c31Copy full SHA for c1e8c31
nimare/correct.py
@@ -1,18 +1,19 @@
1
"""Multiple comparisons correction methods."""
2
import inspect
3
import logging
4
-from abc import ABCMeta, abstractproperty
+from abc import abstractproperty
5
6
import numpy as np
7
from pymare.stats import bonferroni, fdr
8
9
+from nimare.base import NiMAREBase
10
from nimare.results import MetaResult
11
from nimare.transforms import p_to_z
12
13
LGR = logging.getLogger(__name__)
14
15
-class Corrector(metaclass=ABCMeta):
16
+class Corrector(NiMAREBase):
17
"""Base class for multiple comparison correction methods in :mod:`~nimare.correct`.
18
19
.. versionadded:: 0.0.3
0 commit comments