summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-upsetr/package.py
blob: fe471bc4b208c2fd14b8eed9d99428c87d8a9f3f (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
# 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 RUpsetr(RPackage):
    """A More Scalable Alternative to Venn and Euler Diagrams for Visualizing
    Intersecting Sets.

    Creates visualizations of intersecting sets using a novel matrix design,
    along with visualizations of several common set, element and attribute
    related tasks (Conway 2017) <doi:10.1093/bioinformatics/btx364>."""

    cran = "UpSetR"

    version("1.4.0", sha256="351e5fee64204cf77fd378cf2a2c0456cc19d4d98a2fd5f3dac74b69a505f100")

    depends_on("r@3.0:", type=("build", "run"))
    depends_on("r-ggplot2", type=("build", "run"))
    depends_on("r-gridextra", type=("build", "run"))
    depends_on("r-plyr", type=("build", "run"))
    depends_on("r-scales", type=("build", "run"))