summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-pheatmap/package.py
blob: b16e328497587ad5aca4ad479e033625a52e660d (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
# Copyright 2013-2023 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 RPheatmap(RPackage):
    """Pretty Heatmaps.

    Implementation of heatmaps that offers more control over dimensions and
    appearance."""

    cran = "pheatmap"

    license("GPL-2.0-only")

    version("1.0.12", sha256="579d96ee0417203b85417780eca921969cda3acc210c859bf9dfeff11539b0c1")

    depends_on("r@2.0:", type=("build", "run"))
    depends_on("r-rcolorbrewer", type=("build", "run"))
    depends_on("r-scales", type=("build", "run"))
    depends_on("r-gtable", type=("build", "run"))