2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-22 06:58:05 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-22 06:58:05 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPyrad(PythonPackage):
|
|
|
|
"""RADseq for phylogenetics & introgression analyses"""
|
|
|
|
|
|
|
|
homepage = "http://dereneaton.com/software/pyrad/"
|
|
|
|
url = "https://github.com/dereneaton/pyrad/archive/3.0.66.tar.gz"
|
|
|
|
|
|
|
|
version('3.0.66', '19b8bcd73a574f8a25582d6e8978f0aa')
|
|
|
|
|
|
|
|
depends_on('python@:2.999', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-numpy', type=('build', 'run'))
|
|
|
|
depends_on('py-scipy', type=('build', 'run'))
|
|
|
|
depends_on('vsearch')
|
|
|
|
depends_on('muscle')
|