blob: d242728ce41b4d74f4bf1db285dfaf4c04fdcd70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2013-2019 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)
|