Skip to contents

Launches the ClassiPyR Shiny app for manual image classification and validation of IFCB data. This app relies on the iRfcb package for reading and writing IFCB data files, including MATLAB .mat files, entirely in R.

Usage

run_app(
  venv_path = deprecated(),
  reset_settings = FALSE,
  launch.browser = TRUE,
  ...
)

Arguments

venv_path

[Deprecated] Ignored. ClassiPyR no longer requires Python; .mat files are read and written natively in R (iRfcb >= 0.10.0).

reset_settings

If TRUE, deletes saved settings before starting the app. Useful for troubleshooting or starting fresh. Default is FALSE.

launch.browser

If TRUE (default), opens the app in the system's default web browser. If FALSE, opens in RStudio viewer (if available). Set to a function to customize browser launching behavior.

...

Additional arguments passed to runApp

Value

This function does not return; it runs the Shiny app

Examples

if (FALSE) { # \dontrun{
# Run with default settings (opens in browser)
run_app()

# Run on a specific port
run_app(port = 3838)

# Open in RStudio viewer instead of browser
run_app(launch.browser = FALSE)

# Reset all settings and start fresh
run_app(reset_settings = TRUE)
} # }