Learn R Programming

SHARK4R (version 1.0.2)

run_qc_app: Launch the SHARK4R Bio-QC Tool

Description

This function launches the interactive Shiny application for performing quality control (QC) on SHARK data. The application provides a graphical interface for exploring and validating data before or after submission to SHARK.

Usage

run_qc_app(interactive = TRUE)

Value

This function is called for its side effect of launching a Shiny application. It does not return a value.

Arguments

interactive

Logical value whether the session is interactive or not.

Details

The function checks that all required packages for the app are installed before launching. If any are missing, the user is notified. In interactive sessions, the function will prompt whether the missing packages should be installed automatically. In non-interactive sessions (e.g. scripts or CI), the function instead raises an error and lists the missing packages so they can be installed manually.

Examples

Run this code
# \donttest{
# Launch the SHARK4R Bio-QC Tool
if(interactive()){
  run_qc_app()
}
# }

Run the code above in your browser using DataLab