2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2022-02-22 06:38:27 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2022-02-22 06:38:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
class RAplot(RPackage):
|
|
|
|
"""Decorate a 'ggplot' with Associated Information.
|
|
|
|
|
|
|
|
For many times, we are not just aligning plots as what 'cowplot' and
|
|
|
|
'patchwork' did. Users would like to align associated information that
|
|
|
|
requires axes to be exactly matched in subplots, e.g. hierarchical
|
|
|
|
clustering with a heatmap. This package provides utilities to aligns
|
|
|
|
associated subplots to a main plot at different sides (left, right, top and
|
|
|
|
bottom) with axes exactly matched."""
|
|
|
|
|
|
|
|
cran = "aplot"
|
|
|
|
|
2022-11-11 03:06:13 +08:00
|
|
|
version("0.1.8", sha256="d931d7769dc7ce4bc938e8c068973721e89da0aa5f40a04f8a9119621b33459c")
|
2022-10-12 16:20:52 +08:00
|
|
|
version("0.1.7", sha256="f6250f5f6d1addc8d5717be80a92c569bfd83d35bce2e3dbeb251c9ae1be8616")
|
2022-06-07 22:12:51 +08:00
|
|
|
version("0.1.6", sha256="7d69d1968bc613d8ceccc05c53362b0f62b632e1c6ef5100c91b65b15afa200c")
|
|
|
|
version("0.1.4", sha256="cde9dfc1c6b38e370c1f7338651c37727efa57d52b646fec6b021855809492ac")
|
2022-02-22 06:38:27 +08:00
|
|
|
version("0.1.2", sha256="899c4d101ddcedb1eba9803d78cf02288b63de25e2879add8add1165167509f0")
|
2022-07-31 06:19:18 +08:00
|
|
|
|
2022-06-07 22:12:51 +08:00
|
|
|
depends_on("r-ggfun@0.0.4:", type=("build", "run"), when="@0.1.2:")
|
|
|
|
depends_on("r-ggfun@0.0.6:", type=("build", "run"), when="@0.1.4:")
|
2022-02-22 06:38:27 +08:00
|
|
|
depends_on("r-ggplot2", type=("build", "run"))
|
|
|
|
depends_on("r-ggplotify", type=("build", "run"))
|
|
|
|
depends_on("r-patchwork", type=("build", "run"))
|
|
|
|
depends_on("r-magrittr", type=("build", "run"))
|
2022-07-31 06:19:18 +08:00
|
|
|
|
2022-06-07 22:12:51 +08:00
|
|
|
depends_on("r-yulab-utils", type=("build", "run"), when="@0.1.2")
|