summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-convevol/package.py
blob: 6dbcbc60cf8bb3ee0b19ce54682086735e342a77 (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
# Copyright 2013-2024 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 RConvevol(RPackage):
    """Analysis of Convergent Evolution.

    Quantifies and assesses the significance of convergent evolution using two
    different methods (and 5 different measures) as described in Stayton (2015)
    <doi:10.1111/evo.12729>. Also displays results in a phylomorphospace
    framework."""

    cran = "convevol"

    license("GPL-2.0-only")

    version("2.0.0", sha256="690664b93c1f144a409e80b2ebfc20dc34f0eb9405607d15e066e8db573e84de")
    version("1.3", sha256="d6b24b9796a559f5280e277746189d141151ade4b14cc6b4c2d9d496d7f314ac")

    depends_on("r@3.5.0:", type=("build", "run"))
    depends_on("r-ape", type=("build", "run"))
    depends_on("r-cluster", type=("build", "run"))
    depends_on("r-geiger", type=("build", "run"))
    depends_on("r-mass", type=("build", "run"))
    depends_on("r-phytools", type=("build", "run"))