summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-summarizedexperiment/package.py
blob: 52a14a0709392fcd50903565e9dd3638589155c5 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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 RSummarizedexperiment(RPackage):
    """SummarizedExperiment container.

       The SummarizedExperiment container contains one or more assays, each
       represented by a matrix-like object of numeric or other mode. The rows
       typically represent genomic ranges of interest and the columns represent
       samples."""

    bioc = "SummarizedExperiment"

    version('1.24.0', commit='d37f19383d03c107a8a41c0df2326e28efe46b28')
    version('1.20.0', commit='874aa87a481e4076a0ec3369f55c9c0a1ab8025e')
    version('1.18.2', commit='e22fafe')
    version('1.14.1', commit='2c68d99e11c7345e5ed388370822ea48395c64a4')
    version('1.12.0', commit='5f8416864636add121ec1d6737ebb89a42227fd7')
    version('1.10.1', commit='7ad2e991c8285bfc4b2e15b29d94cc86d07f8f2b')
    version('1.8.1', commit='9d8a29aa9c78bbc7dcc6472537e13fc0d11dc1f7')
    version('1.6.5', commit='ec69cd5cfbccaef148a9f6abdfb3e22e888695d0')

    depends_on('r@3.2:', type=('build', 'run'))
    depends_on('r@4.0.0:', type=('build', 'run'), when='@1.24.0:')
    depends_on('r-matrixgenerics@1.1.3:', type=('build', 'run'))
    depends_on('r-genomicranges@1.27.22:', type=('build', 'run'))
    depends_on('r-genomicranges@1.29.14:', type=('build', 'run'), when='@1.8.1:')
    depends_on('r-genomicranges@1.31.17:', type=('build', 'run'), when='@1.10.1:')
    depends_on('r-genomicranges@1.33.6:', type=('build', 'run'), when='@1.12.0:')
    depends_on('r-genomicranges@1.41.5:', type=('build', 'run'), when='@1.20.0:')
    depends_on('r-biobase', type=('build', 'run'))
    depends_on('r-matrix', type=('build', 'run'))
    depends_on('r-biocgenerics@0.15.3:', type=('build', 'run'))
    depends_on('r-biocgenerics@0.37.0:', type=('build', 'run'), when='@1.24.0:')
    depends_on('r-s4vectors@0.13.13:', type=('build', 'run'))
    depends_on('r-s4vectors@0.17.25:', type=('build', 'run'), when='@1.10.1:')
    depends_on('r-s4vectors@0.27.12:', type=('build', 'run'), when='@1.20.0:')
    depends_on('r-iranges@2.7.2:', type=('build', 'run'))
    depends_on('r-iranges@2.11.17:', type=('build', 'run'), when='@1.8.1:')
    depends_on('r-iranges@2.13.16:', type=('build', 'run'), when='@1.10.1:')
    depends_on('r-iranges@2.23.9:', type=('build', 'run'), when='@1.20.0:')
    depends_on('r-genomeinfodb@1.11.4:', type=('build', 'run'))
    depends_on('r-genomeinfodb@1.13.1:', type=('build', 'run'), when='@1.8.1:')
    depends_on('r-delayedarray@0.1.9:', type=('build', 'run'))
    depends_on('r-delayedarray@0.3.20:', type=('build', 'run'), when='@1.8.1:')
    depends_on('r-delayedarray@0.15.10:', type=('build', 'run'), when='@1.20.0:')