Toolkit for performing differential expression with DESeq2.
R method
if (!requireNamespace("BiocManager", quietly = TRUE)) {
install.packages("BiocManager")
}
install.packages(
pkgs = "DESeqAnalysis",
repos = c(
"https://r.acidgenomics.com",
BiocManager::repositories()
),
dependencies = TRUE
)
Conda method
Configure Conda to use the Bioconda channels.
# Don't install recipe into base environment.
name='r-deseqanalysis'
conda create --name="$name" "$name"
conda activate "$name"
R