computePOD {POD} | R Documentation |
Compute the Probability Of Detection (POD) in qualitative PCR experiments carried out by a single laboratory.
computePOD(x, lambda = 1, b = 1)
x |
Nominal DNA concentrations (numeric vector) |
lambda |
The fraction of detected DNA fragments (numeric scalar) |
b |
correction parameter (numeric scalar) |
The POD function as described in Uhlig et al., 2015
Uhlig et al. Accred Qual Assur (2015) 20: 75. https://doi.org/10.1007/s00769-015-1112-9
# the optimal POD
computePOD(exp(seq(1, 10, 1)), 1, 1)
# some other POD
computePOD(exp(seq(1, 10, 1)), 0.5, 1.29)