diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-20 04:10:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:10:58 +0200 |
commit | f14edd2a78df5e11a65328407f2fbea3a61c43fb (patch) | |
tree | d751dfbf5c8cfd6a5bbde07bb1bb2799971f5c9a /var | |
parent | ccb0be2f7f8ce14972e25af0f4caa34d791ffe52 (diff) | |
download | spack-f14edd2a78df5e11a65328407f2fbea3a61c43fb.tar.gz spack-f14edd2a78df5e11a65328407f2fbea3a61c43fb.tar.bz2 spack-f14edd2a78df5e11a65328407f2fbea3a61c43fb.tar.xz spack-f14edd2a78df5e11a65328407f2fbea3a61c43fb.zip |
r-rpmm: new package (#23110)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-rpmm/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-rpmm/package.py b/var/spack/repos/builtin/packages/r-rpmm/package.py new file mode 100644 index 0000000000..d66be66432 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-rpmm/package.py @@ -0,0 +1,22 @@ +# 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 RRpmm(RPackage): + """Recursively Partitioned Mixture Model: + + Recursively Partitioned Mixture Model for Beta and Gaussian Mixtures. This + is a model-based clustering algorithm that returns a hierarchy of classes, + similar to hierarchical clustering, but also similar to finite mixture + models.""" + + cran = "RPMM" + + version('1.25', sha256='f04a524b13918062616beda50c4e759ce2719ce14150a0e677d07132086c88c8') + + depends_on('r@2.3.12:', type=('build', 'run')) + depends_on('r-cluster', type=('build', 'run')) |