summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-shortbred/package.py
blob: e91dc7e234f9ebe851d879bacdddf7539e2b2ac0 (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
# Copyright 2013-2023 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 PyShortbred(PythonPackage):
    """ShortBRED is a system for profiling protein families of interest at
    very high specificity in shotgun meta'omic sequencing data."""

    homepage = "https://huttenhower.sph.harvard.edu/shortbred/"
    pypi = "shortbred/shortbred-0.9.5.tar.gz"

    license("MIT")

    version("0.9.5", sha256="a6ac09b858f14e2c0b8622b122ec91e5d02d32c12429cad66626d7ef26df10d5")

    depends_on("python@2.7.9:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-biopython@1.65:", type="run")
    depends_on("blast-plus@2.2.28:", type="run")
    depends_on("usearch@6.0.307:", type="run")
    depends_on("muscle@3.8.31:", type="run")
    depends_on("cdhit@4.6:", type="run")