Description Usage Arguments Details Value Examples
For all possible absolute log2 fold changes (LFC), which genes have at least this fold change at a specified False Discovery Rate (FDR)?
1 2 3 4 5 6 7 8 |
fit |
A limma MArrayLM object. |
coef |
Number or name of coefficient or contrast to test. |
fdr |
False Discovery Rate to control for. |
step |
Granularity of log2 fold changes to test. |
trend |
Should |
full |
Include some further statistics used to calculate confects in the output, and also include FDR-adjusted p-values that effect size is non-zero (note that this is against the spirit of the topconfects approach). |
Results are presented in a table such that for any given LFC, if the reader
chooses the genes with abs(confect)
less than this they are assured
that this set of genes has at least this LFC (with the specified FDR). Once
this set of genes is selected, the confect values provide confidence bounds
with False Coverage-statement Rate at the same level as the FDR.
fit
should be produced using lmFit
. It is not necessary to use
eBayes
, this function calls eBayes
itself.
To test contrasts, this function can also be used with the result of
contrasts.fit
, but limma's handling of weights may be approximate (for
example if voom
has been used). For exact results for a contrast, use
contrastToCoef
to adjust the design matrix given to lmFit
.
See nest_confects
for details of how to interpret the result.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #Prepare a data set
library(NBPSeq)
library(edgeR)
library(limma)
data(arab)
dgelist <- DGEList(arab)
dgelist <- calcNormFactors(dgelist)
cpms <- cpm(dgelist, log=TRUE)
# Retain genes with more than a geometric mean of 2 RPM
# (about 5 reads per sample)
cpms <- cpms[rowMeans(cpms) >= 1,]
# Fit linear model for each gene
treatment <- c(FALSE,FALSE,FALSE,TRUE,TRUE,TRUE)
batch <- factor(c(1,2,3,1,2,3))
design <- model.matrix(~ treatment + batch)
fit <- lmFit(cpms, design)
# Calculate top confects
# As voom has not been used, it is necessary to use trend=TRUE
limma_confects(fit, "treatmentTRUE", trend=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.