| TTEST_DDCt | R Documentation |
\Delta\Delta C_T method and t-testThe TTEST_DDCt function performs fold change expression analysis based on
the \Delta\Delta C_T method using Student's t-test. It supports analysis
of one or more target genes evaluated under two experimental conditions
(e.g. control vs treatment).
TTEST_DDCt(
x,
numberOfrefGenes,
Factor.level.order = NULL,
paired = FALSE,
var.equal = TRUE,
p.adj = "BH",
order = "none",
plotType = "RE"
)
x |
A data frame containing experimental conditions, biological replicates, and amplification efficiency and Ct values for target and reference genes. The number of biological replicates must be equal across genes. See the package vignette for details on the required data structure. |
numberOfrefGenes |
Integer specifying the number of reference genes used for normalization
(must be |
Factor.level.order |
Optional character vector specifying the order of factor levels.
If |
paired |
Logical; if |
var.equal |
Logical; if |
p.adj |
Method for p-value adjustment. One of
|
order |
Optional character vector specifying the order of genes in the output plot. |
plotType |
Plot scale to use: |
Fold change values are computed using one or more reference genes for normalization. Both paired and unpaired experimental designs are supported.
Paired samples in quantitative PCR refer to measurements collected from the same individuals under two different conditions (e.g. before vs after treatment), whereas unpaired samples originate from different individuals in each condition. Paired designs allow within-individual comparisons and typically reduce inter-individual variability.
The function returns numerical summaries as well as bar plots based on either relative expression (RE) or log2 fold change (log2FC).
A list with the following components:
Table containing RE values, log2FC, p-values, significance codes, confidence intervals, standard errors, and lower/upper SE limits.
Bar plot of relative expression values.
Bar plot of log2 fold change values.
Ghader Mirzaghaderi
Livak, K. J. and Schmittgen, T. D. (2001). Analysis of Relative Gene Expression Data Using Real-Time Quantitative PCR and the Double Delta CT Method. Methods, 25(4), 402–408. doi:10.1006/meth.2001.1262
Ganger, M. T., Dietz, G. D., and Ewing, S. J. (2017). A common base method for analysis of qPCR data and the application of simple blocking in qPCR experiments. BMC Bioinformatics, 18, 1–11.
Yuan, J. S., Reed, A., Chen, F., and Stewart, N. (2006). Statistical Analysis of Real-Time PCR Data. BMC Bioinformatics, 7, 85.
# Example data structure
data_1factor_one_ref
# Unpaired t-test
TTEST_DDCt(
data_1factor_one_ref,
paired = FALSE,
var.equal = TRUE,
numberOfrefGenes = 1
)
# With amplification efficiencies
data_1factor_one_ref_Eff
TTEST_DDCt(
data_1factor_one_ref_Eff,
paired = FALSE,
var.equal = TRUE,
numberOfrefGenes = 1
)
# Two reference genes
TTEST_DDCt(
data_1factor_Two_ref,
numberOfrefGenes = 2,
var.equal = TRUE,
p.adj = "BH"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.