2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 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-08-19 05:02:15 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2017-08-19 05:02:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Cufflinks(Package):
|
|
|
|
"""Cufflinks assembles transcripts, estimates their abundances, and tests
|
|
|
|
for differential expression and regulation in RNA-Seq samples."""
|
|
|
|
|
2021-09-02 14:46:27 +08:00
|
|
|
homepage = "https://cole-trapnell-lab.github.io/cufflinks"
|
2021-09-14 00:21:35 +08:00
|
|
|
url = "https://cole-trapnell-lab.github.io/cufflinks/assets/downloads/cufflinks-2.2.1.Linux_x86_64.tar.gz"
|
2017-08-19 05:02:15 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version("2.2.1", sha256="39f812452cae26462e5d2671d38104d9e8ef30aaf9ab6dea8ca57f50f46448e4")
|
2017-08-19 05:02:15 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install("cuffcompare", prefix.bin)
|
|
|
|
install("cuffdiff", prefix.bin)
|
|
|
|
install("cufflinks", prefix.bin)
|
|
|
|
install("cuffmerge", prefix.bin)
|
|
|
|
install("cuffnorm", prefix.bin)
|
|
|
|
install("cuffquant", prefix.bin)
|
|
|
|
install("gffread", prefix.bin)
|
|
|
|
install("gtf_to_sam", prefix.bin)
|