summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rots/package.py
blob: 3c19b4d325a2afe9d0870720c7cd895be163ab09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2018 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 import *


class RRots(RPackage):
    """Calculates the Reproducibility-Optimized Test Statistic (ROTS)
       for differential testing in omics data."""

    homepage = "https://bioconductor.org/packages/release/bioc/html/ROTS.html"
    git      = "https://git.bioconductor.org/packages/ROTS.git"

    version('1.8.0', commit='02e3c6455bb1afe7c4cc59ad6d4d8bae7b01428b')

    depends_on('r@3.5.0:3.5.9', when='@1.8.0:', type=('build', 'run'))
    depends_on('r-rcpp', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))