
some of these are not resolvable in that there is only an http page available, or a page reported as broken is actually ok, or a page has an SSL error that does not prevent one from visiting (and no good replacement) Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
24 lines
908 B
Python
24 lines
908 B
Python
# 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'))
|