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-08 01:01:50 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-08 01:01:50 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Velvet(MakefilePackage):
|
|
|
|
"""Velvet is a de novo genomic assembler specially designed for short read
|
|
|
|
sequencing technologies."""
|
|
|
|
|
|
|
|
homepage = "http://www.ebi.ac.uk/~zerbino/velvet/"
|
|
|
|
url = "http://www.ebi.ac.uk/~zerbino/velvet/velvet_1.2.10.tgz"
|
|
|
|
|
|
|
|
version('1.2.10', '6e28c4b9bedc5f7ab2b947e7266a02f6')
|
|
|
|
|
2018-12-29 03:02:16 +08:00
|
|
|
depends_on('zlib')
|
|
|
|
|
2017-08-08 01:01:50 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install('velvetg', prefix.bin)
|
|
|
|
install('velveth', prefix.bin)
|