R/register.R

Defines functions register

Documented in register

#' Register the processing of manualcount data in the LEEF package
#'
#' @return invisibly \code{TRUE} when completed successful
#'
#' @export
#'
register <- function() {
  if (is.null(system.file(package = "LEEF.2"))) {
    stop("This function requres the package to be installed!")
  }

  LEEF.2::add_pre_processor( pre_processor_manualcount )
  LEEF.2::add_extractor( extractor_manualcount )
  ##
  invisible(TRUE)
}
LEEF-UZH/LEEF.measurement.manualcount documentation built on Feb. 11, 2025, 3:21 a.m.