| process_dir | R Documentation | 
The output files will be created alongside their corresponding input files, preserving
the directory structure of the input directory unless the flatten_output_dir parameter is set to TRUE.
process_dir(
  input_dir,
  output_dir = NULL,
  recurse = FALSE,
  flatten_output_dir = FALSE,
  layout_filepath = NULL,
  format = NULL,
  normalisation_types = c("RAU", "nMFI"),
  generate_reports = FALSE,
  merge_outputs = FALSE,
  column_collision_strategy = "intersection",
  return_plates = FALSE,
  dry_run = FALSE,
  verbose = TRUE,
  ...
)
| input_dir | ( | 
| output_dir | ( | 
| recurse | ( | 
| flatten_output_dir | ( | 
| layout_filepath | ( | 
| format | ( | 
| normalisation_types | ( | 
| generate_reports | ( | 
| merge_outputs | ( | 
| column_collision_strategy | ( | 
| return_plates | ( | 
| dry_run | ( | 
| verbose | ( | 
| ... | Additional arguments to for the  | 
If the return_plates parameter is set to TRUE the function returns a list of plates
sorted by the plate_datetime (The time of the experiment noted in the csv file) in increasing order (oldest plates first).
If the return_plates parameters is set to FALSE the function returns NULL.
# Select input directory to process
dir <- system.file("extdata", "multiplate_lite", package = "PvSTATEM", mustWork = TRUE)
# Select output directory
output_dir <- tempdir(check = TRUE)
# Process input directory and return plates
plates <- process_dir(dir, return_plates = TRUE, output_dir = output_dir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.