plate_file <- system.file("extdata", "CovidOISExPONTENT_CO_reduced.csv", package = "SerolyzeR")
layout_file <- system.file("extdata", "CovidOISExPONTENT_CO_layout.xlsx", package = "SerolyzeR")
plate <- read_luminex_data(plate_file, layout_file, verbose = FALSE)
example_dir <- tempdir(check = TRUE)
# Process plate with default settings (RAU normalisation)
process_plate(plate, output_dir = example_dir)
# Process plate without blank adjustment, custom filename
process_plate(plate,
filename = "plate_no_blank_adjustment.csv",
output_dir = example_dir, blank_adjustment = FALSE
)
# Process plate with nMFI normalisation
process_plate(plate,
output_dir = example_dir, normalisation_type = "nMFI",
reference_dilution = 1 / 400
)
Run the code above in your browser using DataLab