summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-bluster/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-bluster/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-bluster/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-bluster/package.py b/var/spack/repos/builtin/packages/r-bluster/package.py
new file mode 100644
index 0000000000..7b31b4e185
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-bluster/package.py
@@ -0,0 +1,27 @@
+# Copyright 2013-2022 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.package import *
+
+
+class RBluster(RPackage):
+ """Clustering Algorithms for Bioconductor.
+
+ Wraps common clustering algorithms in an easily extended S4 framework.
+ Backends are implemented for hierarchical, k-means and graph-based
+ clustering. Several utilities are also provided to compare and evaluate
+ clustering results."""
+
+ bioc = "bluster"
+
+ version("1.6.0", commit="ff86c7d8d36233e838d4f00e6a4e173e7bf16816")
+
+ depends_on("r-cluster", type=("build", "run"))
+ depends_on("r-matrix", type=("build", "run"))
+ depends_on("r-rcpp", type=("build", "run"))
+ depends_on("r-igraph", type=("build", "run"))
+ depends_on("r-s4vectors", type=("build", "run"))
+ depends_on("r-biocparallel", type=("build", "run"))
+ depends_on("r-biocneighbors", type=("build", "run"))