"Snappy" and flexible platform to publish biological data
Improve readership and increase credibility for research publications
Modular framework allows user to customize the interface
Open source and free to be modified
Seurat implementation is still in progress (improvements to plot rendering speed using R object)
Integrate Velocyto (RNA velocity), bulk RNA-Seq, and other bioinformatic workflow data together to provide a richer biological image of lab data
Ability to not only view and navigate through data but also run complete analyses
Installation:
packages = c("shiny", "tidyverse", "shinydashboard",
"shinythemes", "Seurat", "reticulate")
package.check <- lapply(
packages,
FUN = function(x) {
if (!require(x, character.only = TRUE)) {
install.packages(x, dependencies = TRUE)
library(x, character.only = TRUE)
}
}
)