diff options
author | Jen Herting <jen@herting.cc> | 2021-08-16 03:59:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 09:59:39 +0200 |
commit | 1fa5642858062ff2a4d337d50d057c30a4b0ccde (patch) | |
tree | e521d67a6b11ee8b41992fadd1df5816bd2e5dbe | |
parent | 09cc439572cedd1a25af6dc47aad18c6b0966867 (diff) | |
download | spack-1fa5642858062ff2a4d337d50d057c30a4b0ccde.tar.gz spack-1fa5642858062ff2a4d337d50d057c30a4b0ccde.tar.bz2 spack-1fa5642858062ff2a4d337d50d057c30a4b0ccde.tar.xz spack-1fa5642858062ff2a4d337d50d057c30a4b0ccde.zip |
r-pvclust: new package (#25394)
Co-authored-by: Alex C Leute <aclrc@rit.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/r-pvclust/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pvclust/package.py b/var/spack/repos/builtin/packages/r-pvclust/package.py new file mode 100644 index 0000000000..415eb40922 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-pvclust/package.py @@ -0,0 +1,24 @@ +# 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 RPvclust(RPackage): + """pvclust: Hierarchical Clustering with P-Values via Multiscale Bootstrap + Resampling + + An implementation of multiscale bootstrap resampling for assessing the + uncertainty in hierarchical cluster analysis. It provides SI (selective + inference) p-value, AU (approximately unbiased) p-value and BP (bootstrap + probability) value for each cluster in a dendrogram.""" + + homepage = "https://cloud.r-project.org/package=pvclust" + url = "https://cloud.r-project.org/src/contrib/pvclust_2.2-0.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/pvclust" + + version('2.2-0', sha256='7892853bacd413b5a921006429641ad308a344ca171b3081c15e4c522a8b0201') + + depends_on('r@2.10.0:', type=('build', 'run')) |