We propose a user-friendly ChIP-seq and RNA-seq software suite for the interactive visualization and analysis of genomic data, including integrated features to support differential expression analysis, interactive heatmap production, principal component analysis, gene ontology analysis, and dynamic network visualization.
MicroScope is financially supported by the United States Department of Defense (DoD) through the National Defense Science and Engineering Graduate Fellowship (NDSEG) Program. This research was conducted with Government support under and awarded by DoD, Army Research Office (ARO), National Defense Science and Engineering Graduate (NDSEG) Fellowship, 32 CFR 168a.
Please cite: "Khomtchouk BB, Hennessy JR, Wahlestedt C. “MicroScope: ChIP-seq and RNA-seq software analysis suite for gene expression heatmaps.” BMC Bioinformatics. 2016, 17:390. https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1260-x" within any source that makes use of any methods inspired by MicroScope.
- R programming language
- RStudio
setwd("~/path/to/my_directory/Microscope")
install.packages("shiny")
library(shiny)
library(shinyapps)
install.packages("d3heatmap")
library(d3heatmap)
install.packages("RColorBrewer")
library(RColorBrewer)
install.packages("htmlwidgets")
library(htmlwidgets)
install.packages("networkD3")
library(networkD3)
install.packages("data.table")
library(data.table)
install.packages("dplyr")
library(dplyr)
source("https://bioconductor.org/biocLite.R")
biocLite("edgeR")
library(edgeR)
biocLite("GO.db")
library(GO.db)
biocLite("goseq")
library(goseq)
biocLite("org.Bt.eg.db")
biocLite("org.Ce.eg.db")
biocLite("org.Cf.eg.db")
biocLite("org.Dm.eg.db")
biocLite("org.Dr.eg.db")
biocLite("org.Hs.eg.db")
biocLite("org.Mm.eg.db")
biocLite("org.Pt.eg.db")
biocLite("org.Rn.eg.db")
biocLite("org.Ss.eg.db")
biocLite("org.Sc.sgd.db")
runApp("microscope")