gffcompare: new package @0.12.6 (#39917)
Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
This commit is contained in:
parent
e63597bf79
commit
33cde87775
26
var/spack/repos/builtin/packages/gffcompare/package.py
Normal file
26
var/spack/repos/builtin/packages/gffcompare/package.py
Normal file
@ -0,0 +1,26 @@
|
||||
# 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 Gffcompare(MakefilePackage):
|
||||
"""gffcompare: classify, merge, tracking and annotation of GFF files by comparing to a
|
||||
reference annotation GFF"""
|
||||
|
||||
homepage = "https://ccb.jhu.edu/software/stringtie/gffcompare.shtml"
|
||||
url = (
|
||||
"https://github.com/gpertea/gffcompare/releases/download/v0.12.6/gffcompare-0.12.6.tar.gz"
|
||||
)
|
||||
|
||||
version("0.12.6", sha256="0e713bc9177d874c935802d11669776da5e9377a8c4d031153b48a783d3391d0")
|
||||
|
||||
def build(self, spec, prefix):
|
||||
make("release")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
mkdir(prefix.bin)
|
||||
install("gffcompare", prefix.bin)
|
||||
install("trmap", prefix.bin)
|
Loading…
Reference in New Issue
Block a user