Skip to content

Instantly share code, notes, and snippets.

@anfederico
Last active April 26, 2020 13:48
Show Gist options
  • Save anfederico/767c5586a971c000aa8dd856933156e4 to your computer and use it in GitHub Desktop.
Save anfederico/767c5586a971c000aa8dd856933156e4 to your computer and use it in GitHub Desktop.
Must have packages after every update
# CRAN
pkgs <- c("devtools",
"ggplot2",
"ggforce",
"tidyverse",
"R6",
"stats",
"stringr",
"scales",
"rlang",
"httr",
"openxlsx",
"reshape2",
"reactable",
"msigdbr",
"kableExtra",
"rmarkdown",
"igraph",
"BDgraph",
"visNetwork",
"caret",
"ggdendro",
"ggpbur",
"gplots",
"gridExtra",
"heatmap.plus",
"mclust",
"Rmisc",
"randomForest",
"roxygen2",
"tsne",
"umap",
"shiny",
"shinyjs",
"shinythemes")
install.packages(pkgs)
# Bioconductor
pkgs <- c("Biobase",
"biomaRt",
"limma",
"DESeq2",
"edgeR",
"GSVA",
"ComplexHeatmap")
install.packages("BiocManager")
BiocManager::install()
BiocManager::install(pkgs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment