Description Usage Arguments Value Examples
View source: R/fct_normalization.R
Function to combine all the background correction and normalization steps
1 2 3 4 5 6 7 8 9 10 11 12 | plate_reader_normalization_pipeline(
df.od,
df.fl,
bc_suffix,
od_col = OD_730,
fl_col = fl,
background_correction = T,
.norm_var,
ref_strain,
ref_induction,
norm_suffix
)
|
df.od |
The plate reader OD data.frame. |
df.fl |
The plate reader fluorescence data.frame. |
bc_suffix |
The suffix that will be appended to the column name of the background-corrected variable. |
od_col |
The unqouted column name containing the OD values. |
fl_col |
The unqouted column name containing the fluorescence values. |
background_correction |
Logical indicating if background correction should be performed. |
.norm_var |
The unquoted column name of the variable to be normalized (i.e. fl_od). |
ref_strain |
The reference strain to normalize with. |
ref_induction |
The reference induction condition to normalize with. |
norm_suffix |
The suffix that will be appended to the column name of the normalized variable. |
A single data.frame containing new columns for background-corrected, fluorescence per OD and reference strain normalized data.
1 2 3 4 5 6 7 8 9 10 | df.plate.reader <- plate_reader_normalization_pipeline(
df.od = load_plate_reader_od(df.experiments.raw),
df.fl = load_plate_reader_fl(df.experiments.raw),
bc_suffix = "bc",
.norm_var = fl_od,
ref_strain = "J23100",
ref_induction = "-",
norm_suffix = "norm")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.