
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
25 lines
819 B
Python
25 lines
819 B
Python
# Copyright 2013-2021 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 Kmergenie(MakefilePackage):
|
|
"""KmerGenie estimates the best k-mer length for genome de novo assembly.
|
|
"""
|
|
|
|
homepage = "http://kmergenie.bx.psu.edu/"
|
|
url = "http://kmergenie.bx.psu.edu/kmergenie-1.7044.tar.gz"
|
|
|
|
version('1.7044', sha256='46f2a08a2d7b1885414143e436829dd7e61fcc31ec4e429433e516a168d2978e')
|
|
|
|
depends_on('python', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('r', type=('build', 'run'))
|
|
depends_on('zlib')
|
|
|
|
def install(self, spec, prefix):
|
|
install_tree(self.stage.source_path, prefix.bin)
|