View source: R/REPEATED_DDCt.r
| REPEATED_DDCt | R Documentation |
\Delta\Delta C_T) analysis of repeated-measure qPCR dataThe REPEATED_DDCt function performs fold change (FC) analysis using the
\Delta\Delta C_T method for qPCR data obtained from repeated measurements
over time. Data may originate from uni- or multi-factorial experimental designs.
In addition to numerical results, bar plots of relative expression (RE) or log2 fold change values with associated uncertainty are optionally produced.
REPEATED_DDCt(
x,
numberOfrefGenes,
factor,
calibratorLevel,
block,
x.axis.labels.rename = "none",
p.adj = "none",
plot = TRUE,
plotType = "RE"
)
x |
A data frame in which the first column is the individual identifier ( |
numberOfrefGenes |
Integer specifying the number of reference genes (must be |
factor |
Character string specifying the factor for which fold changes are analysed
(commonly |
calibratorLevel |
A level of |
block |
Optional blocking factor column name. If supplied, block effects are treated as random effects. |
x.axis.labels.rename |
Optional character vector used to replace x-axis labels in the bar plot. |
p.adj |
Method for p-value adjustment (passed to |
plot |
Logical; if |
plotType |
Either |
The analysis is carried out using a linear mixed-effects model in which repeated
measurements are accounted for by a random effect of individual (id).
The factor of interest (e.g. time or treatment) is specified via the
factor argument. The first level of this factor (or the level specified
by calibratorLevel) is used as the calibrator.
The function supports one or more reference genes. When multiple reference genes
are supplied, their contributions are averaged when computing weighted
\Delta C_T values.
A list with the following components:
Input data frame augmented with weighted \Delta C_T values.
Fitted linear mixed-effects model object.
ANOVA table for fixed effects.
Table containing RE values, log2FC, p-values, significance codes, confidence intervals, and standard errors.
Bar plot of relative expression values (if requested).
Bar plot of log2 fold change values (if requested).
Ghader Mirzaghaderi
REPEATED_DDCt(
data_repeated_measure_1,
numberOfrefGenes = 1,
factor = "time",
calibratorLevel = "1",
block = NULL
)
REPEATED_DDCt(
data_repeated_measure_2,
numberOfrefGenes = 1,
factor = "time",
calibratorLevel = "1",
block = NULL
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.