Nothing
#' Function to get activation status of IsoCorrectoR GUI
#'
#' The function \code{GetGUIstatus} can be used in scripts to get the activation status of the IsoCorrectoR GUI (logical, FALSE for closed, TRUE for active).
#' It is required if the GUI is to be started e.g. via a bash script without manually starting an R session.
#'
#' @export
#'
#' @examples
#'
#' # this function is never called directly but BiocCheck() requires a runnable example.
#'
#' status<-GetGUIstatus()
#'
#' @return Returns the activation status of the IsoCorrectoR GUI. FALSE represents closed and TRUE represents active state. Returns NULL if GUI has not been started.
GetGUIstatus <- function() {
baseEnvRef <- baseenv()
return(baseEnvRef$continueIsoCorrection)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.