A Web app for looking at gene expression changes during human brain development
https://rosie-griffiths.shinyapps.io/NeuroShiny/
First run the following code to make sure you have all the packages to run the NeuroShiny app
reqPkg = c("GeneOverlap", "visNetwork", "DT", "Matrix", "ggplot2", "VennDiagram","png","stringr",
"shinydashboard", "plotly", "shiny", "RColorBrewer", "shinyalert", "shinyWidgets")
newPkg = reqPkg[!(reqPkg %in% installed.packages()[,"Package"])]
if(length(newPkg)){install.packages(newPkg)}To run the app locally;
- Download the repository to your machine and unzip it
- In RStudio run the following code
library(shiny)
setwd("~/NeuroShiny-main") #Change working directory to the NeuroShiny folder
runApp()