summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/orthofiller/package.py
blob: d6a05b022ed74837e39ddc3893599fe3feed3bff (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
# 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)

import os

from spack.package import *


class Orthofiller(Package):
    """OrthoFiller: Identifying missing annotations for evolutionarily
    conserved genes."""

    homepage = "https://github.com/mpdunne/orthofiller/"
    url = "https://github.com/mpdunne/orthofiller/archive/1.1.4.tar.gz"

    license("GPL-3.0-only")

    version("1.1.4", sha256="a693a3372a3f05041ce30cbf84da1be88e85eae4effe32dbd7809ccef119a295")

    depends_on("augustus", type="run")
    depends_on("bedtools2@2.25.0", type="run")
    depends_on("hmmer", type="run")
    depends_on("orthofinder", type="run")
    depends_on("python@2.7:", type="run")
    depends_on("py-biopython", type="run")
    depends_on("py-scipy", type="run")
    depends_on("r", type="run")
    depends_on("r-gamlss", type="run")
    depends_on("mafft", type="run")

    def install(self, spec, prefix):
        # orthofiller tests for common unix programs using man
        # runtime modules will quickly overflow the maximum MANPATH;
        # we change the man tests to use which instead, more reliable anyway
        filter_file('"man "', '"which "', "OrthoFiller.py", string=True)

        os.chmod("OrthoFiller.py", 0o755)
        mkdirp(prefix.bin)
        install("OrthoFiller.py", prefix.bin)