summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorLevi Baber <baberlevi@gmail.com>2018-11-19 20:41:01 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-11-19 20:41:01 -0600
commit43a26d08502b90a2fa424fb5755479a4e0512911 (patch)
treeb2c5810470dfa69391646c35a9015efd5cf78ae8 /var
parent7e1f96c0aa155d4cf3eb9f869c47e1b707b51485 (diff)
downloadspack-43a26d08502b90a2fa424fb5755479a4e0512911.tar.gz
spack-43a26d08502b90a2fa424fb5755479a4e0512911.tar.bz2
spack-43a26d08502b90a2fa424fb5755479a4e0512911.tar.xz
spack-43a26d08502b90a2fa424fb5755479a4e0512911.zip
r-diversitree: new package (#9893)
* r-diversitree: new package * r-diversitree: system reqs
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-diversitree/package.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-diversitree/package.py b/var/spack/repos/builtin/packages/r-diversitree/package.py
new file mode 100644
index 0000000000..e6e1746022
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-diversitree/package.py
@@ -0,0 +1,33 @@
+# Copyright 2013-2018 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 RDiversitree(RPackage):
+ """Contains a number of comparative 'phylogenetic' methods.
+
+ Mostly focusing on analysing diversification and character
+ evolution. Contains implementations of 'BiSSE' (Binary State
+ 'Speciation' and Extinction) and its unresolved tree extensions,
+ 'MuSSE' (Multiple State 'Speciation' and Extinction), 'QuaSSE',
+ 'GeoSSE', and 'BiSSE-ness' Other included methods include Markov
+ models of discrete and continuous trait evolution and constant
+ rate 'speciation' and extinction."""
+
+ homepage = "http://www.zoology.ubc.ca/prog/diversitree"
+ url = "https://cran.r-project.org/src/contrib/diversitree_0.9-10.tar.gz"
+ list_url = "https://cron.r-project.org/src/contrib/Archive/diversitree"
+
+ version('0.9-10', sha256='e7df5910c8508a5c2c2d6d3deea53dd3f947bb762196901094c32a7033cb043e')
+
+ depends_on('r@2.1.0:', type=('build', 'run'))
+ depends_on('r-ape', type=('build', 'run'))
+ depends_on('r-desolve@1.7:', type=('build', 'run'))
+ depends_on('r-subplex', type=('build', 'run'))
+ depends_on('r-rcpp@0.10.0:', type=('build', 'run'))
+ depends_on('fftw@3.1.2:')
+ depends_on('gsl@1.15:')