19 lines
696 B
Python
19 lines
696 B
Python
# 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 PyDlcpar(PythonPackage):
|
|
"""DLCpar is a reconciliation method for inferring gene duplications,
|
|
losses, and coalescence (accounting for incomplete lineage sorting)."""
|
|
|
|
homepage = "https://www.cs.hmc.edu/~yjw/software/dlcpar/"
|
|
url = "https://www.cs.hmc.edu/~yjw/software/dlcpar/pub/sw/dlcpar-1.0.tar.gz"
|
|
|
|
version('1.0', sha256='774319caba0f10d1230b8f85b8a147eda5871f9a316d7b3381b91c1bde97aa0a')
|
|
|
|
depends_on('py-numpy', type=('build', 'run'))
|