View source: R/merge-plate-outputs.R
| merge_plate_outputs | R Documentation |
This function merges normalised data from a list of Plate objects into a single data.frame.
It supports different normalisation types and handles column mismatches based on the specified strategy.
merge_plate_outputs(
plates,
normalisation_type,
column_collision_strategy = "intersection",
verbose = TRUE,
...
)
plates |
A named list of |
normalisation_type |
( |
column_collision_strategy |
(
|
verbose |
( |
... |
Additional arguments passed to |
A merged data.frame containing normalised data across all plates.
# creating temporary directory for the example
output_dir <- tempdir(check = TRUE)
dir_with_luminex_files <- system.file("extdata", "multiplate_reallife_reduced",
package = "SerolyzeR", mustWork = TRUE
)
list_of_plates <- process_dir(dir_with_luminex_files,
return_plates = TRUE, format = "xPONENT", output_dir = output_dir
)
df <- merge_plate_outputs(list_of_plates, "RAU", sample_type_filter = c("TEST", "STANDARD CURVE"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.