R/config.R

SerolyzeR.env <- new.env(parent = emptyenv())

# MBA formats
SerolyzeR.env$mba_formats <- c("xPONENT", "INTELLIFLEX")

# String patterns for declared MBA formats
SerolyzeR.env$xponent_pattern <- "xpontent|xponent"
SerolyzeR.env$intelliflex_pattern <- "intelliflex"
SerolyzeR.env$mba_pattern <- paste(
  SerolyzeR.env$xponent_pattern,
  SerolyzeR.env$intelliflex_pattern,
  sep = "|"
)

# Normalisation types
SerolyzeR.env$normalisation_types <- c("MFI", "RAU", "nMFI")

# String patterns for declared normalisation types
SerolyzeR.env$normalisation_pattern <- paste0(
  SerolyzeR.env$normalisation_types,
  collapse = "|"
)

Try the SerolyzeR package in your browser

Any scripts or data that you put into this service are public.

SerolyzeR documentation built on April 12, 2025, 2:11 a.m.