summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/iq-tree/package.py
blob: 4a5bb01c25338cddfed50ea9ad9ce13c0f8fe55c (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# 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 IqTree(CMakePackage):
    """IQ-TREE Efficient software for phylogenomic inference"""

    homepage = "http://www.iqtree.org"
    git = "https://github.com/iqtree/iqtree2.git"
    url = "https://github.com/Cibiv/IQ-TREE/archive/v1.6.12.tar.gz"

    license("GPL-2.0-or-later")

    version(
        "2.2.2.7",
        tag="v2.2.2.7",
        commit="bd3468c7af6572ea29002dfdba377804f8f56c26",
        submodules=True,
    )
    version(
        "2.1.3", tag="v2.1.3", commit="3d31be9e56b05ffbc5f8488fc8285597b433c99f", submodules=True
    )
    version(
        "2.0.6", tag="v2.0.6", commit="219e88407ac915a209a29808a81084bf0d5f1a84", submodules=True
    )
    version("1.6.12", sha256="9614092de7a157de82c9cc402b19cc8bfa0cb0ffc93b91817875c2b4bb46a284")

    variant("openmp", default=True, description="Enable OpenMP support.")
    variant("mpi", default=False, description="Enable MPI support.")
    variant("lsd2", default=True, description="Activate Least Squares Dating.")

    maintainers("ilbiondo")

    # Depends on Eigen3 and zlib

    depends_on("boost+container+math+exception")
    depends_on("eigen")
    depends_on("zlib-api")
    depends_on("mpi", when="+mpi")

    def cmake_args(self):
        spec = self.spec
        args = []
        iqflags = []

        if "+lsd2" in spec:
            args.append("-DUSE_LSD2=ON")

        if "+openmp" in spec:
            iqflags.append("omp")

        if "+mpi" in spec:
            iqflags.append("mpi")

        if not iqflags:
            iqflags.append("single")

        args.append("-DIQTREE_FLAGS=" + ",".join(iqflags))

        return args