tool.fdr.bh {Mergeomics} | R Documentation |
tool.fdr.bh
estimates FDRs of modules by using Benjamini and
Hochberg method.
tool.fdr.bh(p)
p |
p-values of modules |
res |
data list including the estimated false discovery rates of modules |
Ville-Petteri Makinen
## let us assume we have a set of pvalues ## and would like to find FDR values: set.seed(1) p <- abs(rnorm(10))*1e-2 FDRs <- tool.fdr.bh(p) ## the default method is already Benjamini Hochberg