Skip to content

Commit

Permalink
adding pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelove committed Apr 20, 2015
1 parent d4de993 commit 4b47847
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions course5/rnaseq_pkgs.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 2 CRAN packages
cranpkgs <- c("ggplot2","pheatmap")
install.packages(cranpkgs)

# rafalib from github (not strictly necessary, but useful)
install.packages("devtools")
library(devtools)
install_github("ririzarr/rafalib")

# the rest are Bioconductor packages
biocpkgs <- c("Rsamtools",
"GenomicFeatures",
"GenomicAlignments",
"Rsubread",
"airway",
"pasilla",
"DESeq2",
"DEXSeq",
"vsn",
"org.Hs.eg.db",
"cummeRbund")
source("http://bioconductor.org/biocLite.R")
biocLite(biocpkgs)

0 comments on commit 4b47847

Please sign in to comment.