Description Usage Arguments Details Value Examples
View source: R/combineSources.R
Given several sources of pathways with the same for the same id of the genes it merge them.
1 |
... |
Lists of genes and their pathways. |
It assumes that the identifier of the genes are the same for both sources but if many aren't equal it issues a warning. Only unique pathways identifiers are returned.
A single list with the pathways of each source on the same gene.
1 2 3 4 5 6 7 8 | DB1 <- list(g1 = letters[6:8], g2 = letters[1:5], g3 = letters[4:7])
DB2 <- list(g1 = c("one", "two"), g2 = c("three", "four"),
g3 = c("another", "two"))
combineSources(DB1, DB2)
combineSources(DB1, DB1)
DB3 <- list(g1 = c("one", "two"), g2 = c("three", "four"),
g4 = c("five", "six", "seven"), g5 = c("another", "two"))
combineSources(DB1, DB3) # A warning is expected
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.