Last active
April 26, 2020 13:48
-
-
Save anfederico/767c5586a971c000aa8dd856933156e4 to your computer and use it in GitHub Desktop.
Must have packages after every update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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