forked from Christensen-Lab-Dartmouth/brca_lowstage_DMGRs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.R
30 lines (25 loc) · 1021 Bytes
/
INSTALL.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#####################################################################
# ~~~~~~~~~~~~~~~~~~
# Tumor subtype and cell type independent DNA methylation alterations
# associated with stage progression in invasive breast carcinoma
# ~~~~~~~~~~~~~~~~~~
#
# Way, G., Johnson, K., Christensen, B. 2015
#
# Run This script to install all the R libraries required to run the
# analysis pipeline.
#####################################################################
#####################
# CRAN libraries
#####################
cran <- c("plyr", "reshape2", "ggplot2", "qvalue", "gridExtra", "readr", "Hmisc")
install.packages(cran, repos='http://cran.us.r-project.org')
#####################
# Bioconductor libraries
#####################
#First, install bioconductor
source("http://bioconductor.org/biocLite.R")
biocLite()
bioC <- c("minfi", "IlluminaHumanMethylation450kmanifest", "IlluminaHumanMethylation450kanno.ilmn12.hg19",
"RefFreeEWAS", "isva", "limma", "Homo.sapiens", "Gviz", "GEOquery")
biocLite(bioC)