2016-05-12 12:22:25 +08:00
|
|
|
##############################################################################
|
2018-03-25 03:13:52 +08:00
|
|
|
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
|
2016-05-12 12:22:25 +08:00
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
|
|
#
|
|
|
|
# This file is part of Spack.
|
|
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
|
|
# LLNL-CODE-647188
|
|
|
|
#
|
2017-11-05 08:08:04 +08:00
|
|
|
# For details, see https://github.com/spack/spack
|
2017-06-25 13:22:55 +08:00
|
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
|
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
##############################################################################
|
2015-09-24 07:30:44 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-05 03:23:04 +08:00
|
|
|
|
2015-09-24 07:30:44 +08:00
|
|
|
class Samtools(Package):
|
2016-07-28 01:20:49 +08:00
|
|
|
"""SAM Tools provide various utilities for manipulating alignments in
|
|
|
|
the SAM format, including sorting, merging, indexing and generating
|
2015-09-24 07:30:44 +08:00
|
|
|
alignments in a per-position format"""
|
|
|
|
|
|
|
|
homepage = "www.htslib.org"
|
2016-07-28 01:20:49 +08:00
|
|
|
url = "https://github.com/samtools/samtools/releases/download/1.3.1/samtools-1.3.1.tar.bz2"
|
2015-09-24 07:30:44 +08:00
|
|
|
|
2018-08-13 07:54:50 +08:00
|
|
|
version('1.9', 'cca9a40d9b91b007af2ff905cb8b5924')
|
2018-05-05 05:27:54 +08:00
|
|
|
version('1.8', 'c6e981c92ca00a44656a708c4b52aba3')
|
2018-04-27 06:17:00 +08:00
|
|
|
version('1.7', '2240175242b5183bfa6baf1483f68023')
|
2017-10-13 00:08:31 +08:00
|
|
|
version('1.6', 'b756f05fd5d1a7042074417edb8c9aea')
|
2017-03-29 10:34:41 +08:00
|
|
|
version('1.4', '8cbd7d2a0ec16d834babcd6c6d85d691')
|
2016-08-05 03:23:04 +08:00
|
|
|
version('1.3.1', 'a7471aa5a1eb7fc9cc4c6491d73c2d88')
|
|
|
|
version('1.2', '988ec4c3058a6ceda36503eebecd4122')
|
2015-09-24 07:30:44 +08:00
|
|
|
|
2017-10-13 00:08:31 +08:00
|
|
|
depends_on('ncurses')
|
2017-03-30 03:20:37 +08:00
|
|
|
# htslib became standalone @1.3.1, must use corresponding version
|
2018-08-13 07:54:50 +08:00
|
|
|
depends_on('htslib@1.9', when='@1.9')
|
2018-05-05 05:27:54 +08:00
|
|
|
depends_on('htslib@1.8', when='@1.8')
|
2018-04-27 06:17:00 +08:00
|
|
|
depends_on('htslib@1.7', when='@1.7')
|
2017-10-13 00:08:31 +08:00
|
|
|
depends_on('htslib@1.6', when='@1.6')
|
|
|
|
depends_on('htslib@1.4', when='@1.4')
|
|
|
|
depends_on('htslib@1.3.1', when='@1.3.1')
|
2018-04-27 06:17:00 +08:00
|
|
|
depends_on('zlib', when='@1.7:')
|
|
|
|
depends_on('bzip2', when='@1.7:')
|
2015-09-24 07:30:44 +08:00
|
|
|
|
2016-07-28 01:20:49 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
if self.spec.version >= Version('1.3.1'):
|
2016-09-20 17:27:19 +08:00
|
|
|
configure('--prefix={0}'.format(prefix), '--with-ncurses',
|
2017-04-06 05:03:11 +08:00
|
|
|
'CURSES_LIB=-lncursesw')
|
2016-07-28 01:20:49 +08:00
|
|
|
make()
|
|
|
|
make('install')
|
|
|
|
else:
|
|
|
|
make("prefix=%s" % prefix)
|
|
|
|
make("prefix=%s" % prefix, "install")
|
2018-08-13 00:58:25 +08:00
|
|
|
# Install dev headers and libs for legacy apps depending on them
|
|
|
|
mkdir(prefix.include)
|
|
|
|
mkdir(prefix.lib)
|
|
|
|
install('sam.h', prefix.include)
|
|
|
|
install('bam.h', prefix.include)
|
|
|
|
install('libbam.a', prefix.lib)
|