summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bioconductor-rsubread/package.py
blob: 8ae22b208be0b4263dc1170120d9d8b237c8b5dc (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
# Copyright 2013-2024 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 BioconductorRsubread(RPackage):
    """Mapping, quantification and variant analysis of sequencing data"""

    homepage = "https://bioconductor.org/packages/3.16/bioc/html/Rsubread.html"
    url = "https://bioconductor.org/packages/release/bioc/src/contrib/Rsubread_2.14.2.tar.gz"

    bioc = "rsubread"

    depends_on("r-matrix")
    depends_on("zlib-api")

    version(
        "2.14.2",
        sha256="ac8be0fad0eb2743443e3a60a9a94eec78c746638aaccca70e7166d034dcebb5",
        deprecated=True,
    )