Entering edit mode
15 months ago
Aditya naman
•
0
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
# Install Bioconductor packages
BiocManager::install('DESeq2')
BiocManager::install("apeglm")
BiocManager::install("EnhancedVolcano")
BiocManager::install("Glimma")
BiocManager::install("ggrepel")
BiocManager::install('limma')
BiocManager::install('edgeR')
BiocManager::install("reactome.db")
BiocManager::install("AnnotationDbi")
# Install CRAN packages
install.packages('tidyverse')
install.packages('ggplot2')
install.packages("pheatmap")
Hi, appreciate the contribution but please understand that generally with "Tools" or "Tutorials" some context is required. The command to install DESeq2 is
BiocManager::install('DESeq2')
while all other packages are optional for downstream analysis and visualization.Thanks for the correction. I should also mention the downstream analysis.