gffread: new package @0.12.7 (#40015)

Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
pull/40022/head
George Young 2023-09-14 18:34:22 +01:00 committed by GitHub
parent 8dae369a69
commit 2d1cca2839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Copyright 2013-2023 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.package import *
class Gffread(MakefilePackage):
"""gffread: GFF/GTF utility providing format conversions, region filtering,
FASTA sequence extraction and more"""
homepage = "http://ccb.jhu.edu/software/stringtie/gff.shtml#gffread"
url = "https://github.com/gpertea/gffread/releases/download/v0.12.7/gffread-0.12.7.tar.gz"
version("0.12.7", sha256="bfde1c857495e578f5b3af3c007a9aa40593e69450eafcc6a42c3e8ef08ed1f5")
def build(self, spec, prefix):
make("release")
def install(self, spec, prefix):
mkdir(prefix.bin)
install("gffread", prefix.bin)