Description Usage Arguments Value
Wrapper around shiny::req()
and shiny::showNotification()
.
Prevents application from crashing and displays guiding message about what the user
is supposed to do in order to continue without this message to appear.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | checkpoint(
evaluate = TRUE,
case_false = NULL,
error_notifications = list(no_well_plate_chosen =
"Please choose a well plate first.", invalid_image_number =
"The number of images per well must not be 0.", invalid_wp_name =
"Invalid or already existing well plate name.", missing_software =
"Please choose the software from which the files derived.", no_well_plates_added =
"No well plates have been added yet.", no_set_up_saved =
"No experiment set up has been saved yet.", well_plates_not_ready =
"There are still well plates left that do not match the requirements to be loaded.",
no_data_read_in = "No files have been loaded yet.", no_cells_remaining =
"The filter criteria discard all cells. At least one cell must remain.", errors_left
=
"Trying to load some files resulted in errors. To proceed without them enable 'Ignore Errors'. If you want the files to be included fix the error and load the files again.",
no_qc_data =
"Data has to undergo quality check first before the cell tracer object can be returned.",
no_features_selected = "Please selecte at least one feature."),
warning_notifications = list(),
duration = 4,
stop_process = TRUE,
stop_app = FALSE
)
|
evaluate |
A vector of logical tests to be evaluated. |
case_false |
A character string indicating the message to be displayed if one element of
|
error_notifications |
A named list of character strings. |
warning_notifications |
A named list of character strings. |
duration |
The duration the message is displayed. |
stop_process, stop_app |
Logical. What is supposed to happen if one element of |
A shiny notification.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.