diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-02-05 09:00:25 -0600 |
---|---|---|
committer | Levi Baber <baberlevi@gmail.com> | 2019-02-05 09:00:25 -0600 |
commit | 003ebf8baba5e458c67475f86244a8946cbb65eb (patch) | |
tree | 13fe85f8e5eaabefc1aade49d6d1ef9f655d30dd | |
parent | 293e5c07816221244c0b99dbf6fa8813db7f89ae (diff) | |
download | spack-003ebf8baba5e458c67475f86244a8946cbb65eb.tar.gz spack-003ebf8baba5e458c67475f86244a8946cbb65eb.tar.bz2 spack-003ebf8baba5e458c67475f86244a8946cbb65eb.tar.xz spack-003ebf8baba5e458c67475f86244a8946cbb65eb.zip |
r-wgcna: new package at 1.64-1 (#10392)
-rw-r--r-- | var/spack/repos/builtin/packages/r-wgcna/package.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-wgcna/package.py b/var/spack/repos/builtin/packages/r-wgcna/package.py new file mode 100644 index 0000000000..14c6d8b8a6 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-wgcna/package.py @@ -0,0 +1,31 @@ +# Copyright 2013-2019 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 RWgcna(RPackage): + """WGCNA: Weighted Correlation Network Analysis""" + + homepage = "https://cran.r-project.org/package=WGCNA" + url = "https://cran.r-project.org/src/contrib/WGCNA_1.66.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/WGCNA/" + + version('1.64-1', sha256='961a890cda40676ba533cd6de2b1d4f692addd16363f874c82ba8b65dd2d0db6') + + depends_on('r@3.0:', type=('build', 'run')) + depends_on('r-dynamictreecut@1.62:', type=('build', 'run')) + depends_on('r-fastcluster', type=('build', 'run')) + depends_on('r-matrixstats@0.8.1:', type=('build', 'run')) + depends_on('r-hmisc', type=('build', 'run')) + depends_on('r-impute', type=('build', 'run')) + depends_on('r-foreach', type=('build', 'run')) + depends_on('r-doparallel', type=('build', 'run')) + depends_on('r-preprocesscore', type=('build', 'run')) + depends_on('r-survival', type=('build', 'run')) + depends_on('r-go-db', type=('build', 'run')) + depends_on('r-annotationdbi', type=('build', 'run')) + depends_on('r-rcpp@0.11.0:', type=('build', 'run')) + depends_on('r-robust', type=('build', 'run')) |