CalExp2dCt {qPCRtools}R Documentation

Calculate expression using standard curve.

Description

Calculate expression using standard curve.

Arguments

cq.table

The data frame of the position and cq value.

design.table

The data frame of the position and corresponding information.

ref.gene

The name of reference gene.

Value

A list contain a table and a figure.

Author(s)

Xiang LI <lixiang117423@gmail.com>

Examples

df1.path <- system.file("examples", "dct.cq.txt", package = "qPCRtools")
df2.path <- system.file("examples", "dct.design.txt", package = "qPCRtools")
cq.table <- read.table(df1.path, sep = ",", header = TRUE)
design.table <- read.table(df2.path, sep = ",", header = TRUE)
CalExp2dCt(cq.table,
           design.table,
           ref.gene = "Actin"
) -> res


[Package qPCRtools version 1.0.1 Index]