summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-adespatial/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-adespatial/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-adespatial/package.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-adespatial/package.py b/var/spack/repos/builtin/packages/r-adespatial/package.py
new file mode 100644
index 0000000000..aeaaae67f5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-adespatial/package.py
@@ -0,0 +1,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'))