summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-complexheatmap/package.py
blob: e4c0025f58c9f48cb5f1ba18bd07f20a2cad7321 (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-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 RComplexheatmap(RPackage):
    """Complex heatmaps are efficient to visualize associations between
       different sources of data sets and reveal potential structures. Here
       the ComplexHeatmap package provides a highly flexible way to arrange
       multiple heatmaps and supports self-defined annotation graphics."""

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

    version('1.14.0', commit='0acd8974fb5cedde8cd96efea6dfa39324d25b34')

    depends_on('r-circlize', type=('build', 'run'))
    depends_on('r-getoptlong', type=('build', 'run'))
    depends_on('r-colorspace', type=('build', 'run'))
    depends_on('r-rcolorbrewer', type=('build', 'run'))
    depends_on('r-dendextend', type=('build', 'run'))
    depends_on('r-globaloptions', type=('build', 'run'))
    depends_on('r@3.4.0:3.4.9', when='@1.14.0')