summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-metapod/package.py
blob: 595c008a66732712562a99d41a86ff45430b3089 (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
# Copyright 2013-2024 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 RMetapod(RPackage):
    """Meta-Analyses on P-Values of Differential Analyses.

    Implements a variety of methods for combining p-values in differential
    analyses of genome-scale datasets. Functions can combine p-values across
    different tests in the same analysis (e.g., genomic windows in ChIP-seq,
    exons in RNA-seq) or for corresponding tests across separate analyses
    (e.g., replicated comparisons, effect of different treatment conditions).
    Support is provided for handling log-transformed input p-values, missing
    values and weighting where appropriate."""

    bioc = "metapod"

    version("1.8.0", commit="6ac6999182d581ed579d2f7535e838b084f67b8d")
    version("1.6.0", commit="cfeaa959f5c6b2119df270f40af9c3ea718c4b00")
    version("1.4.0", commit="e71c2072e5b39f74599e279b28f4da7923b515fb")

    depends_on("r-rcpp", type=("build", "run"))