Update bioconductor packages (#41227)

Signed-off-by: Pablo <pablo.aledo@seqera.io>
This commit is contained in:
pabloaledo 2023-12-12 22:04:45 +01:00 committed by GitHub
parent d68e73d006
commit 334a50662f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 135 additions and 4 deletions

View File

@ -15,7 +15,11 @@ class BioconductorDupradar(RPackage):
bioc = "dupradar"
version("1.30.0", sha256="a299d7a4578047dfc19237e34255b0f50f70ce41d29762ef9f5a7741ba35aa3d")
version(
"1.30.0",
sha256="a299d7a4578047dfc19237e34255b0f50f70ce41d29762ef9f5a7741ba35aa3d",
deprecated=True,
)
depends_on("r-kernsmooth")
depends_on("subread")

View File

@ -23,7 +23,11 @@ class BioconductorEbseq(RPackage):
bioc = "ebseq"
version("1.40.0", sha256="a5d3a88743d61062c6d68a426b19c53a4afd2fa216abc884d42c187780994378")
version(
"1.40.0",
sha256="a5d3a88743d61062c6d68a426b19c53a4afd2fa216abc884d42c187780994378",
deprecated=True,
)
depends_on("r-blockmodeling")
depends_on("r-gplots")

View File

@ -17,4 +17,8 @@ class BioconductorRsubread(RPackage):
depends_on("r-matrix")
depends_on("zlib-api")
version("2.14.2", sha256="ac8be0fad0eb2743443e3a60a9a94eec78c746638aaccca70e7166d034dcebb5")
version(
"2.14.2",
sha256="ac8be0fad0eb2743443e3a60a9a94eec78c746638aaccca70e7166d034dcebb5",
deprecated=True,
)

View File

@ -19,7 +19,11 @@ class BioconductorTximeta(RPackage):
bioc = "tximeta"
version("1.18.1", sha256="ee486fc4b2352e2998a3c0c2064449ebcf09b5815f982597ea58311dc8064408")
version(
"1.18.1",
sha256="ee486fc4b2352e2998a3c0c2064449ebcf09b5815f982597ea58311dc8064408",
deprecated=True,
)
depends_on("r", type=("build", "run"))
depends_on("r-annotationdbi")

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 RDupradar(RPackage):
"""Assessment of duplication rates in RNA-Seq datasets"""
maintainers("pabloaledo")
bioc = "dupRadar"
version("1.32.0", commit="7e07fc3a3901f8cae0203759fc24dd7df430a07f")
version("1.30.3", commit="19e3b13a148c47e69686cd1e872182c564fd4dcd")
version("1.30.0", commit="3d53d2d2e0c404a25845d78b8df8fee3f6b34eb5")
depends_on("r@3.2:", type=("build", "run"))
depends_on("r-kernsmooth", type=("build", "run"))
depends_on("r-rsubread", type=("build", "run"))
depends_on("subread", type=("build", "run"))

View File

@ -0,0 +1,33 @@
# 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 REbseq(RPackage):
"""An R package for gene and isoform differential expression analysis of RNA-seq data.
R/EBSeq is an R package for identifying genes and isoforms differentially
expressed (DE) across two or more biological conditions in an RNA-seq
experiment. Details can be found in Leng et al., 2013. It provides the syntax
required for identifying DE genes and isoforms in a two-group RNA-seq
experiment as well for identifying DE genes across more than two conditions
(the commands for identifying DE isoforms across more than two conditions
are the same as those required for gene-level analysis)."""
maintainers("pabloaledo")
bioc = "EBSeq"
version("2.0.0", commit="f1d4e4419988ab98540739c9349559fd437cb59f")
version("1.40.0", commit="7d1d2a2b4ea0df8cddfb5e57d6431f3948c5c4ca")
depends_on("r@3.0:", type=("build", "run"))
depends_on("r-bh", type=("build", "run"))
depends_on("r-blockmodeling", type=("build", "run"))
depends_on("r-gplots", type=("build", "run"))
depends_on("r-rcppeigen@0.3.2.9.0:", type=("build", "run"))
depends_on("r-rcpp@0.12.11:", type=("build", "run"))
depends_on("r-testthat", type=("build", "run"))

View File

@ -0,0 +1,20 @@
# 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 RRsubread(RPackage):
"""Mapping, quantification and variant analysis of sequencing data"""
bioc = "Rsubread"
version("2.16.0", commit="62b92c9ed3fc2be89ed9f29e3db1809d1e115dbc")
version("2.14.2", commit="863bd98c6523b888da59335a6acb516d2676d412")
depends_on("r", type=("build", "run"))
depends_on("r-matrix", type=("build", "run"))
depends_on("r-r-utils", type=("build", "run"))
depends_on("zlib-api", type=("build", "run"))

View File

@ -0,0 +1,39 @@
# 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 RTximeta(RPackage):
"""Transcript Quantification Import with Automatic Metadata
Transcript quantification import from Salmon and alevin with automatic
attachment of transcript ranges and release information, and other associated
metadata. De novo transcriptomes can be linked to the appropriate sources with
linkedTxomes and shared for computational reproducibility."""
bioc = "tximeta"
version("1.20.0", commit="c9cf6d6a80ca5129b91d723867aca0aec12e8299")
version("1.18.3", commit="3caed00397476cfe9c379f4bc5a361023fdd6ffa")
version("1.18.0", commit="8f87d53bbd6f2d97821dd8f7fdd54624928f862d")
depends_on("r", type=("build", "run"))
depends_on("r-annotationdbi", type=("build", "run"))
depends_on("r-annotationhub", type=("build", "run"))
depends_on("r-biocfilecache", type=("build", "run"))
depends_on("r-biostrings", type=("build", "run"))
depends_on("r-ensembldb", type=("build", "run"))
depends_on("r-genomeinfodb", type=("build", "run"))
depends_on("r-genomicfeatures", type=("build", "run"))
depends_on("r-genomicranges", type=("build", "run"))
depends_on("r-iranges", type=("build", "run"))
depends_on("r-jsonlite", type=("build", "run"))
depends_on("r-matrix", type=("build", "run"))
depends_on("r-r-utils", type=("build", "run"))
depends_on("r-s4vectors", type=("build", "run"))
depends_on("r-summarizedexperiment", type=("build", "run"))
depends_on("r-tibble", type=("build", "run"))
depends_on("r-tximport", type=("build", "run"))