benostendorf / r-deseqanalysis

Toolkit for performing differential expression with DESeq2.

Home Page:https://r.acidgenomics.com/packages/deseqanalysis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DESeqAnalysis

Install with Bioconda

Toolkit for performing differential expression with DESeq2.

Installation

R method

if (!requireNamespace("BiocManager", quietly = TRUE)) {
    install.packages("BiocManager")
}
install.packages(
    pkgs = "DESeqAnalysis",
    repos = c(
        "https://r.acidgenomics.com",
        BiocManager::repositories()
    )
)

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

Docker method

image="acidgenomics/r-deseqanalysis"
workdir="/mnt/work"
docker pull "$image"
docker run -it \
    --volume="${PWD}:${workdir}" \
    --workdir="$workdir" \
    "$image" \
    R

About

Toolkit for performing differential expression with DESeq2.

https://r.acidgenomics.com/packages/deseqanalysis/

License:GNU Affero General Public License v3.0


Languages

Language:R 100.0%Language:CSS 0.0%