summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-adespatial/package.py
blob: aeaaae67f5dd3cbaa04d6e6c6fdd82896beb6067 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2013-2020 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 RAdespatial(RPackage):
    """adespatial: Multivariate Multiscale Spatial Analysis.

    Tools for the multiscale spatial analysis of multivariate data. Several
    methods are based on the use of a spatial weighting matrix and its
    eigenvector decomposition (Moran's Eigenvectors Maps, MEM). Several
    approaches are described in the review Dray et al (2012)
    <doi:10.1890/11-1183.1>."""

    homepage = "https://cloud.r-project.org/package=adespatial"
    url      = "https://cloud.r-project.org/src/contrib/adespatial_0.3-8.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/adespatial"

    version('0.3-8', sha256='e3fd3209ce3f0a862a0794187e8c884f1697c87c96e569a2f51f252e00022906')

    depends_on('r-ade4@1.7-13:', type=('build', 'run'))
    depends_on('r-adegraphics', type=('build', 'run'))
    depends_on('r-adephylo', type=('build', 'run'))
    depends_on('r-sp', type=('build', 'run'))
    depends_on('r-spdep', type=('build', 'run'))
    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-shiny', type=('build', 'run'))
    depends_on('r-vegan', type=('build', 'run'))