Description Usage Arguments Details Value Author(s) References See Also Examples
Summarize der
objects and easily access results of
inder
function.
1 2 |
object |
is a |
digits |
is a |
print |
is a |
The approximate second derivative maximum (SDM) which is commonly used to quantify quantitative real-time PCR experiments. The SDM might also be useful for isothermal amplification processes. The SDM is calculated from a derived cubic spline. Similarly the first approximate approximate derivative maximum (FDM), second derivative minimum (SDm), and approximate second derivative center (SDC, geometric mean of SDM and SDm) are available. FDM, SDm and SDC values can be used to further characterize the amplification process.
A named vector of four elements. The element named 2nd_der
contains
values of the second first derivative. The element named SDM
contains approximate second derivative maximum, SDm
contains
approximate second derivative minimum, and SDC
contains approximate
second derivative center.
Stefan Roediger, Michal Burdukiewicz
Ruijter JM, Pfaffl MW, Zhao S, et al. (2013) Evaluation of qPCR curve analysis methods for reliable biomarker discovery: bias, resolution, precision, and implications. Methods San Diego Calif 59:32–46.
1 2 3 4 5 6 7 8 9 10 11 12 13 | res <- AmpSim(cyc = 1:40, Cq = 25)
test.der <- inder(res)
#just print summary
summary(test.der)
#print without rounding
summary(test.der, digits = 6)
#assign summary to variable without printing and
vals <- summary(test.der, print = FALSE)
print(vals)
#easily access different values
vals["bg.start"]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.