spack/var/spack/repos/builtin/packages/stringtie/package.py

25 lines
847 B
Python
Raw Normal View History

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2017-07-25 04:50:32 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2017-07-25 04:50:32 +08:00
from spack import *
class Stringtie(MakefilePackage):
"""StringTie is a fast and highly efficient assembler of RNA-Seq alignments
into potential transcripts."""
homepage = "https://ccb.jhu.edu/software/stringtie"
url = "https://github.com/gpertea/stringtie/archive/v1.3.3b.tar.gz"
2018-11-14 00:20:30 +08:00
version('1.3.4d', '0134c0adc264efd31a1df4301b33bfcf3b3fe96bd3990ce3df90819bad9af968')
2018-02-03 16:52:51 +08:00
version('1.3.4a', '2a191ef6512242a3a5778cf7718bb6af')
2017-07-25 04:50:32 +08:00
version('1.3.3b', '11a43260b18e4272182380e922445d88')
depends_on('samtools')
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('stringtie', prefix.bin)