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

    homepage = "https://github.com/hms-dbmi/UpSetR"
    url      = "https://cloud.r-project.org/src/contrib/UpSetR_1.4.0.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/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'))