2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-11-02 07:03:30 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-11-02 07:03:30 +08:00
|
|
|
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/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/ComplexHeatmap.git"
|
2017-11-02 07:03:30 +08:00
|
|
|
|
2018-07-24 10:56:48 +08:00
|
|
|
version('1.14.0', commit='0acd8974fb5cedde8cd96efea6dfa39324d25b34')
|
2017-11-02 07:03:30 +08:00
|
|
|
|
|
|
|
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')
|