Starts an interactive Shiny application for exploring molecular pathology
data. If a molpath_db object is provided, the app launches pre-loaded
with that database. Otherwise, the user can upload data through the app
interface.
Arguments
- db
Optional
molpath_dbobject to pre-load into the application.- ...
Additional arguments passed to
shiny::runApp().
Examples
if (FALSE) { # \dontrun{
# Launch with example data
db <- mp_example_db()
mp_run_app(db)
# Launch empty — upload data in browser
mp_run_app()
} # }