summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mpm/package.py
blob: ef159313d9e554eacff695651e9c4fc23cedd196 (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-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 RMpm(RPackage):
    """Exploratory graphical analysis of multivariate data, specifically
    gene expression data with different projection methods: principal
    component analysis, correspondence analysis, spectral map analysis."""

    homepage = "https://cloud.r-project.org/package=mpm"
    url      = "https://cloud.r-project.org/src/contrib/mpm_1.0-22.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/mpm"

    version('1.0-22', '91885c421cafd89ce8893ccf827165a2')

    depends_on('r@2.10:', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-kernsmooth', type=('build', 'run'))