Last active
August 29, 2015 14:18
-
-
Save DannyArends/472ec595d26646bf66c8 to your computer and use it in GitHub Desktop.
Installation of most R packages I use
This file contains hidden or 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
# Bioconductor packages | |
source("http://bioconductor.org/biocLite.R") | |
biocLite(ask=FALSE) | |
biocLite(c("preprocessCore", "biomaRt", "affy", "limma", "beadarray", "ggplot2", "impute", "DESeq2", "Rsamtools", "vsn")) | |
biocLite(c("topGO", "GO.db", "KEGG.db", "MotifDb", "seqLogo", "motifStack")) | |
biocLite(c("Biostrings", "GenomicAlignments", "GenomicFeatures", "BiocParallel")) | |
biocLite(c("BSgenome.Mmusculus.UCSC.mm10", "TxDb.Mmusculus.UCSC.mm10.ensGene")) | |
biocLite(c("gcrma", "lumi", "ShortRead", "cdfpackage", "seqinr", "reshape2", "plyr", "scales")) | |
# CRAN packages | |
install.packages("ape") | |
install.packages("devtools") | |
install.packages("extrafont") | |
install.packages("qtl") | |
install.packages("qtlDesign") | |
install.packages("randomForest") | |
install.packages("rJava") | |
install.packages("pheno2geno") | |
install.packages("plotrix") | |
install.packages("RCurl") | |
install.packages("WGCNA") | |
install.packages("snow") | |
install.packages("nlme") | |
install.packages("lme4") | |
install.packages("xlsx") | |
install.packages("psych") | |
install.packages("GPArotation") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment