getPPIbyIDs | R Documentation |
Get Protein-Protein interactions (PPIs) for the set of internal GeneIDs. Function lookups for PPIs for specific GeneID and returns either “induced” (all interaction for this GeneID) or “limited” (only interactions between GeneIDs specified in the query) table of A and B interacting genes, where A and B are respective GeneIDs.
getPPIbyIDs(ids, type = c("induced", "limited"))
ids |
Gene IDs |
type |
type of the PPI network should be either |
data.frame with interactors internal GeneID in columns A and B
getPPIbyName()
and
getPPIbyEntrez()
to get
PPI data.frame
,
getIGraphFromPPI()
to get igraph
representation of the PPI data.frame
and
getTableFromPPI()
to
get interpretable
table representation of the PPI data.frame
.
Other PPI functions:
getIGraphFromPPI()
,
getPPIbyEntrez()
,
getPPIbyIDs4BrainRegion()
,
getPPIbyIDs4Compartment()
,
getPPIbyName()
,
getTableFromPPI()
t <- getPPIbyIDs(c(48, 585, 710), type = "limited") # (16 rows)
t <- getPPIbyIDs(c(48, 585, 710), type = "induced") # 306 rows
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.