summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-20 11:31:11 -0500
committerGitHub <noreply@github.com>2021-04-20 10:31:11 -0600
commit7925705d1d3a1e45c39408d917c52bb34ce48a1e (patch)
treef98399485c82f4e2ec0ce2ff1daab772f365634e
parentf1d66b767d4e45971e22da8bda930707bebbcf45 (diff)
downloadspack-7925705d1d3a1e45c39408d917c52bb34ce48a1e.tar.gz
spack-7925705d1d3a1e45c39408d917c52bb34ce48a1e.tar.bz2
spack-7925705d1d3a1e45c39408d917c52bb34ce48a1e.tar.xz
spack-7925705d1d3a1e45c39408d917c52bb34ce48a1e.zip
r-experimenthub: new package (#23095)
-rw-r--r--var/spack/repos/builtin/packages/r-experimenthub/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-experimenthub/package.py b/var/spack/repos/builtin/packages/r-experimenthub/package.py
new file mode 100644
index 0000000000..c3b76f2435
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-experimenthub/package.py
@@ -0,0 +1,29 @@
+# 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 RExperimenthub(RPackage):
+ """Client to access ExperimentHub resources:
+
+ This package provides a client for the Bioconductor ExperimentHub web
+ resource. ExperimentHub provides a central location where curated data from
+ experiments, publications or training courses can be accessed. Each
+ resource has associated metadata, tags and date of modification. The client
+ creates and manages a local cache of files retrieved enabling quick and
+ reproducible access."""
+
+ bioc = "ExperimentHub"
+
+ version('1.16.1', commit='61d51b7ca968d6cc1befe299e0784d9a19ca51f6')
+
+ depends_on('r-biocgenerics@0.15.10:', type=('build', 'run'))
+ depends_on('r-annotationhub@2.19.3:', type=('build', 'run'))
+ depends_on('r-biocfilecache@1.5.1:', type=('build', 'run'))
+ depends_on('r-s4vectors', type=('build', 'run'))
+ depends_on('r-biocmanager', type=('build', 'run'))
+ depends_on('r-curl', type=('build', 'run'))
+ depends_on('r-rappdirs', type=('build', 'run'))