summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-metap/package.py
blob: 44de67d2887920c1c56db402b1640302b48be38a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RMetap(RPackage):
    """Meta-Analysis of Significance Values.

    The canonical way to perform meta-analysis involves using effect sizes.
    When they are not available this package provides a number of methods for
    meta-analysis of significance values including the methods of Edgington,
    Fisher, Lancaster, Stouffer, Tippett, and Wilkinson; a number of data-sets
    to replicate published results; and a routine for graphical display."""

    cran = "metap"

    version('1.7', sha256='d9b511607d0e37de4428549061c5577a4e812b0f55bb7ed887d1b24711f58c42')
    version('1.4', sha256='5fac23d823d0ad4eebc3f97620364e25f7b41f8d0c3579f6c09ec059940b85a5')
    version('1.1', sha256='20120428672d39dc15829c7e66850fc4350a34df290d48cef0b1cc78d13f7b82')

    depends_on('r@3.5.0:', type=('build', 'run'), when='@1.7:')
    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-rdpack', type=('build', 'run'))
    depends_on('r-rdpack@0.7:', type=('build', 'run'), when='@1.4:')
    depends_on('r-tfisher', type=('build', 'run'), when='@1.4:')
    depends_on('r-mutoss', type=('build', 'run'), when='@1.4:')
    depends_on('r-mathjaxr@0.8-3:', type=('build', 'run'), when='@1.4:')