Thanks to visit codestin.com
Credit goes to code.bioconductor.org

Name Mode Size
.github 040000
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 2 kb
LICENSE 100644 0 kb
LICENSE.md 100644 1 kb
NAMESPACE 100644 4 kb
NEWS.md 100644 1 kb
README.md 100644 1 kb
_pkgdown.yml 100644 0 kb
codecov.yml 100644 0 kb
README.md
# shinyDSP shinyDSP is a Shiny app that lets you interactively visualize Nanostring GeoMx data. Its outputs are highly customizable. It performs differential gene expression analysis and summarizes the results in tables and plots. Please refer to the vignette for details. ## Installation shinyDSP is available on Bioconductor and can be installed with the following: ```r if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("shinyDSP") # To install the development version from Github: if (!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools") devtools::install_github("kimsjune/shinyDSP") ``` ## Usage ```r library(shinyDSP) app <- shinyDSP() if (interactive()) shiny::runApp(app) ```