summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fastqc/package.py
blob: cc95d829ee1aadd80d6cd8a35830850055b9cd14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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 Fastqc(Package):
    """A quality control tool for high throughput sequence data."""

    homepage = "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/"
    url = "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.5.zip"

    license("GPL-3.0-or-later")

    version("0.12.1", sha256="5f4dba8780231a25a6b8e11ab2c238601920c9704caa5458d9de559575d58aa7")
    version("0.11.9", sha256="15510a176ef798e40325b717cac556509fb218268cfdb9a35ea6776498321369")
    version("0.11.7", sha256="59cf50876bbe5f363442eb989e43ae3eaab8d932c49e8cff2c1a1898dd721112")
    version("0.11.5", sha256="dd7a5ad80ceed2588cf6d6ffe35e0f161c0d9977ed08355f5e4d9473282cbd66")
    version("0.11.4", sha256="adb233f9fae7b02fe99e716664502adfec1b9a3fbb84eed4497122d6d33d1fe7")

    depends_on("java", type="run")
    depends_on("perl")  # for fastqc "script", any perl will do

    patch("fastqc_0.12.x.patch", level=0, when="@0.12:")
    patch("fastqc_0.11.x.patch", level=0, when="@:0.11.9")

    def patch(self):
        filter_file("/usr/bin/perl", self.spec["perl"].command.path, "fastqc", backup=False)

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        mkdir(prefix.lib)
        install("fastqc", prefix.bin)
        install("cisd-jhdf5.jar", prefix.lib)
        install("jbzip2-0.9.jar", prefix.lib)
        if self.spec.satisfies("@:0.11.9"):
            install("sam-1.103.jar", prefix.lib)
        else:
            install("htsjdk.jar", prefix.lib)
        for d in ["Configuration", "net", "org", "Templates", "uk"]:
            install_tree(d, join_path(prefix.lib, d))
        chmod = which("chmod")
        chmod("+x", prefix.bin.fastqc)