-
Notifications
You must be signed in to change notification settings - Fork 3
/
loadPackages.R
21 lines (19 loc) · 891 Bytes
/
loadPackages.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##set up R env
install.packages("rmarkdown",repos = "http://cran.us.r-project.org")
install.packages("remotes",repos = "http://cran.us.r-project.org")
install.packages("gridExtra",repos = "http://cran.us.r-project.org")
install.packages("BiocManager",repos = "http://cran.us.r-project.org")
install.packages("ggfortify",repos = "http://cran.us.r-project.org")
install.packages("ggrepel",repos = "http://cran.us.r-project.org")
install.packages("umap",repos = "http://cran.us.r-project.org")
library(BiocManager)
BiocManager::install("EnsDb.Hsapiens.v86")
BiocManager::install("org.Hs.eg.db")
BiocManager::install("DESeq2")
BiocManager::install("tximport")
BiocManager::install("tximportData")
BiocManager::install("apeglm")
library(remotes)
remotes::install_github("rstudio/reticulate")
remotes::install_github("sgosline/mpnstXenoModeling")
remotes::install_github("biodataganache/leapR")