summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-phylophlan/package.py
blob: 1a8698cd50b99f4b3e8d4d90b3d296c8db1d4256 (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-2022 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 PyPhylophlan(PythonPackage):
    """PhyloPhlAn 3.0 is an integrated pipeline for large-scale
    phylogenetic profiling of genomes and metagenomes."""

    homepage = "https://github.com/biobakery/phylophlan"
    url = "https://github.com/biobakery/phylophlan/archive/refs/tags/3.0.2.tar.gz"

    version('3.0.2', sha256='c342116662bbfbb49f0665291fc7c0be5a0d04a02a7be2da81de0322eb2256b4')

    depends_on('python@3:', type=('build', 'run'))
    depends_on('py-numpy@1.12.1:', type=('build', 'run'))
    depends_on('py-biopython@1.70:', type=('build', 'run'))
    depends_on('py-dendropy@4.2.0:', type=('build', 'run'))
    depends_on('muscle', type=('build', 'run'))
    depends_on('blast-plus', type=('build', 'run'))
    depends_on('diamond', type=('build', 'run'))
    depends_on('py-matplotlib', type=('build', 'run'))
    depends_on('py-pandas', type=('build', 'run'))
    depends_on('py-seaborn', type=('build', 'run'))