Launches an interactive Shiny application for exploring PCA results on SummarizedExperiment data. The app allows users to select assays, adjust PCA parameters, and visualize results with customizable options.
Arguments
- se
A
SummarizedExperimentobject to explore.- return_as_list
If
TRUE, returns a list containing the UI and server functions instead of launching the app. Useful for certain deployment scenarios.- ...
Additional arguments passed to
shinyApp().
Value
A Shiny app object or a named list containing the UI and
server functions if return_as_list = TRUE.
Examples
if (interactive()) {
library(ADS8192)
data("example_se")
run_app(se = example_se)
}