Description Usage Arguments Value Author(s) References Examples
Calculates the gain or the loss of differentially expressed genes due to meta-analysis compared to individual studies.
1 | IDD.IRR(meta_de, ind_de)
|
meta_de |
Vector of differentially expressed tags (or indices of these tags) with the meta-analysis |
ind_de |
List of vectors storing differentially expressed tags (or indices of these tags) in each individual study |
DE |
Number of Differentially Expressed (DE) genes |
IDD |
Integration Driven Discoveries: number of genes that are declared DE in the meta-analysis that were not identified in any of the individual studies alone. |
Loss |
Number of genes that are declared DE in individual studies but not in meta-analysis. |
IDR |
Integration-driven Discovery Rate: proportion of genes that are identified as DE in the meta-analysis that were not identified in any of the individual studies alone. |
IRR |
Integration-driven Revision Rate: percentage of genes that are declared DE in individual studies but not in meta-analysis. |
Guillemette Marot
Marot, G., Foulley, J.-L., Mayer, C.-D., Jaffrezic, F. (2009) Moderated effect size and p-value combinations for microarray meta-analyses. Bioinformatics. 25 (20): 2692-2699.
1 2 3 4 5 6 7 8 9 | data(rawpval)
adjpval<-lapply(rawpval, FUN=function(x) p.adjust(x, method="BH"))
ind_smalladjp<-lapply(adjpval, FUN=function(x) which(x <= 0.05))
#indicators corresponding to the inverse normal p-value combination
invnormcomb <- invnorm(rawpval,nrep=c(8,8), BHth = 0.05)
IDD.IRR(invnormcomb$DEindices,ind_smalladjp)
#indicators corresponding to the p-value combination with Fisher's method
fishcomb <- fishercomb(rawpval, BHth = 0.05)
IDD.IRR(fishcomb$DEindices,ind_smalladjp)
|
DE IDD Loss IDR IRR
1321.00 25.00 79.00 1.89 5.75
DE IDD Loss IDR IRR
1343.00 15.00 47.00 1.12 3.42
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.