Description Usage Arguments Value See Also Examples
getAdditionalInfo
gets additional enrichment information of the
analysis done.
1 2 3 4 | getAdditionalInfo(migsaRes)
## S4 method for signature 'MIGSAres'
getAdditionalInfo(migsaRes)
|
migsaRes |
MIGSAres object. |
data.frame with additional information for each analyzed gene set.
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(migsaRes)
## Lets get additional enrichment information of the MIGSAres object.
adtnlInfo <- getAdditionalInfo(migsaRes)
dim(adtnlInfo)
# it is a huge data.frame
## This huge amount of information commonly is not that interesting. Lets
## keep the gene sets that were enriched in every experiment and check that
## information. Lets set a cutoff of 0.1.
migsaResWCoff <- setEnrCutoff(migsaRes, 0.1)
migsaResFiltered <- migsaResWCoff[rowSums(migsaResWCoff[, 4:5]) == 2, ]
adtnlInfo <- getAdditionalInfo(migsaResFiltered)
dim(adtnlInfo)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.