summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-gviz/package.py
blob: 09cf6fc39ed8bc6745a9b8cf3531ad1f5fbddf0b (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
# Copyright 2013-2021 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 RGviz(RPackage):
    """Plotting data and annotation information along genomic coordinates.

       Genomic data analyses requires integrated visualization of known genomic
       information and new experimental data. Gviz uses the biomaRt and the
       rtracklayer packages to perform live annotation queries to Ensembl and
       UCSC and translates this to e.g. gene/transcript structures in viewports
       of the grid graphics package. This results in genomic information
       plotted together with your data."""

    homepage = "https://bioconductor.org/packages/Gviz"
    git      = "https://git.bioconductor.org/packages/Gviz.git"

    version('1.28.3', commit='20b9825af144cfc888629c34aa980b5bbd65bf86')
    version('1.26.5', commit='430310b9d2e098f9757a71d26a2f69871071f30c')
    version('1.24.0', commit='3ee1eec97a56653c07c434a97f82cfe3c4281841')
    version('1.22.3', commit='2238079d0a7017c474f010acb35d98ee7cc1c5d1')
    version('1.20.0', commit='299b8255e1b03932cebe287c3690d58c88f5ba5c')

    depends_on('r@2.10.0:', type=('build', 'run'))
    depends_on('r-s4vectors@0.9.25:', type=('build', 'run'))
    depends_on('r-iranges@1.99.18:', type=('build', 'run'))
    depends_on('r-genomicranges@1.17.20:', type=('build', 'run'))
    depends_on('r-xvector@0.5.7:', type=('build', 'run'))
    depends_on('r-rtracklayer@1.25.13:', type=('build', 'run'))
    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-rcolorbrewer', type=('build', 'run'))
    depends_on('r-biomart@2.11.0:', type=('build', 'run'))
    depends_on('r-annotationdbi@1.27.5:', type=('build', 'run'))
    depends_on('r-biobase@2.15.3:', type=('build', 'run'))
    depends_on('r-genomicfeatures@1.17.22:', type=('build', 'run'))
    depends_on('r-bsgenome@1.33.1:', type=('build', 'run'))
    depends_on('r-biostrings@2.33.11:', type=('build', 'run'))
    depends_on('r-biovizbase@1.13.8:', type=('build', 'run'))
    depends_on('r-rsamtools@1.17.28:', type=('build', 'run'))
    depends_on('r-latticeextra@0.6-26:', type=('build', 'run'))
    depends_on('r-matrixstats@0.8.14:', type=('build', 'run'))
    depends_on('r-genomicalignments@1.1.16:', type=('build', 'run'))
    depends_on('r-genomeinfodb@1.1.3:', type=('build', 'run'))
    depends_on('r-biocgenerics@0.11.3:', type=('build', 'run'))
    depends_on('r-digest@0.6.8:', type=('build', 'run'))