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 using default settings (RAU normalisation)
process_plate(plate, output_dir = example_dir)
# Use a custom filename and skip blank adjustment
process_plate(plate,
filename = "no_blank.csv",
output_dir = example_dir,
blank_adjustment = FALSE
)
# Use nMFI normalisation with reference dilution
process_plate(plate,
normalisation_type = "nMFI",
reference_dilution = "1/400",
output_dir = example_dir
)
Run the code above in your browser using DataLab