fluor_threshold_check {normfluodbf}R Documentation

Title: A fluorescence quantification Quality Control (QC) function.

Description

A function designed to check that fluorescence values do not exceed the upper limit (2^15 or 32768) OR fall below the lower limit (2^11 or 2048). Fluorescence values that exceed these thresholds are considered noisy and lead to incorrect interpretation of analysis results.

Usage

fluor_threshold_check(clean_df, fun = NA)

Arguments

clean_df

A cleaned data frame.

fun

A parameter used for Boolean expressions.

Value

A polite warning message to the data analyst or researcher.

Note

Experimental issues should be investigated at very high or very low fluorescence values. The most common experimental issues arise when ACMA concentrations are out of the tolerated range. Based on my experience, ACMA concentrations between 2 and 5 Micromolar will suffice to get fluorescence values within the tolerance threshold. ACMA concentrations as low as 0.2 Micromolar or as high as 20 Micromolar have proven problematic based on my research experience.

A second issue linked to the FLUOstar instrument revolves around setting the right “gain” to ensure the right level of sensitivity in machine readings. A very high “gain” setting results in increased machine sensitivity even at the right ACMA concentrations and vice versa. In short, we want the machine to be primed to read exactly what we feed it, no more, no less.

This function provides the attribute(s) and tuple(s) for the values that need investigation.

These deductions were obtained from my experimental hiccups and my characterization of the liposome flux assay system.

Author(s)

Tingwei Adeck

See Also

fluor_threshold_check_na(), fluor_threshold_check_raw()

Examples

fpath <- system.file("extdata", "dat_1.dat", package = "normfluodbf", mustWork = TRUE)
dat_df <- read.table(file=fpath)
nocomma_dat <- clean_odddat_optimus(dat_df)
resampled_scaled <- resample_dat_scale(nocomma_dat, tnp=3, cycles=40)
resampled_scaled <- resampled_scaled[,c(1:4)]
fluor_threshold_check(resampled_scaled)

[Package normfluodbf version 1.5.2 Index]