diff options
author | manifest <robqiao@users.noreply.github.com> | 2020-12-11 19:32:18 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 10:02:18 +0100 |
commit | 955a5c0fc802d37da8f073ef20ab071196a53319 (patch) | |
tree | d6f68ea63caaedd85213466ce594e906bb68557e | |
parent | 207f71246a392ac6ad44969d92e465ccc5f92d7d (diff) | |
download | spack-955a5c0fc802d37da8f073ef20ab071196a53319.tar.gz spack-955a5c0fc802d37da8f073ef20ab071196a53319.tar.bz2 spack-955a5c0fc802d37da8f073ef20ab071196a53319.tar.xz spack-955a5c0fc802d37da8f073ef20ab071196a53319.zip |
py-angel: new package at v3.0 (#20331)
-rw-r--r-- | var/spack/repos/builtin/packages/py-angel/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-angel/package.py b/var/spack/repos/builtin/packages/py-angel/package.py new file mode 100644 index 0000000000..6103648d24 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-angel/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2020 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 import * + + +class PyAngel(PythonPackage): + """ANGEL: Robust Open Reading Frame prediction""" + + homepage = "https://github.com/PacificBiosciences/ANGEL" + url = "https://github.com/PacificBiosciences/ANGEL/archive/v3.0.tar.gz" + + version('3.0', sha256='a0319553055d3dfc84a4f732ed246c180c23ee9c397810c96acd7940721ae57d') + + depends_on('python@3.7:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-cython', type='build') + depends_on('py-numpy@1.7:', type=('build', 'run')) + depends_on('py-scikit-learn', type=('build', 'run')) + + depends_on('py-biopython@:1.72', type=('build', 'run')) |