summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-pvclust/package.py
blob: cca3e9601cba57c4c08366b0b84ec04ba960f745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RPvclust(RPackage):
    """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."""

    cran = "pvclust"

    version('2.2-0', sha256='7892853bacd413b5a921006429641ad308a344ca171b3081c15e4c522a8b0201')

    depends_on('r@2.10.0:', type=('build', 'run'))