View source: R/calculateEQvalue.R
calculateEvalue | R Documentation |
This function calculates E-value based on .
calculateEvalue(df, TFs)
df |
a data frame containng p-values |
TFs |
a character vector of transcription factor |
data.frame
Atsushi Fukushima
Essaghir A et al. Nucleic Acids Res. 2010 Jun;38(11):e120.
data(DEGs)
data(catalog)
tftg <- extractTFTG(DEGs, catalog)
TFs <- tftg$TFs
p.value <- runif(10)/(1:10)
df <- data.frame(p.value = p.value)
res <- calculateEvalue(df, TFs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.