summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-phylophlan/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-phylophlan/package.py b/var/spack/repos/builtin/packages/py-phylophlan/package.py
new file mode 100644
index 0000000000..1a8698cd50
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-phylophlan/package.py
@@ -0,0 +1,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'))