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-07-15 04:48:30 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-07-15 04:48:30 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Spades(CMakePackage):
|
|
|
|
"""SPAdes - St. Petersburg genome assembler - is intended for both
|
|
|
|
standard isolates and single-cell MDA bacteria assemblies."""
|
|
|
|
|
|
|
|
homepage = "http://cab.spbu.ru/software/spades/"
|
|
|
|
url = "http://cab.spbu.ru/files/release3.10.1/SPAdes-3.10.1.tar.gz"
|
|
|
|
|
2018-12-08 01:24:17 +08:00
|
|
|
version('3.13.0', 'c63442248c4c712603979fa70503c2bff82354f005acda2abc42dd5598427040')
|
2018-10-03 08:24:39 +08:00
|
|
|
version('3.12.0', '15b48a3bcbbe6a8ad58fd04ba5d3f1015990fbfd9bdf4913042803b171853ac7')
|
2017-12-13 15:57:29 +08:00
|
|
|
version('3.11.1', '478677b560e2f98db025e8efd5245cdf')
|
2017-07-15 04:48:30 +08:00
|
|
|
version('3.10.1', 'dcab7d145af81b59cc867562f27536c3')
|
|
|
|
|
|
|
|
depends_on('python', type=('build', 'run'))
|
|
|
|
depends_on('zlib')
|
|
|
|
depends_on('bzip2')
|
|
|
|
|
2018-10-26 08:54:27 +08:00
|
|
|
# SPAdes will explicitly not compile with gcc < 5.3.0
|
|
|
|
conflicts('%gcc@:5.2.9')
|
|
|
|
|
2018-03-27 20:22:34 +08:00
|
|
|
conflicts('%gcc@7.1.0:', when='@:3.10.1')
|
2017-07-15 04:48:30 +08:00
|
|
|
|
2018-12-08 01:24:17 +08:00
|
|
|
root_cmakelists_dir = "src"
|