View source: R/brain_regions.R
getPPIbyIDs4BrainRegion | R Documentation |
Prepare PPI network for genes from your list annotated
for specific brain region. Should be used with
findGenesByEntrez()
)
or findGenesByName()
functions to obtain list of internal IDs for your list of genes.
Could be used with getAllGenes4BrainRegion functions to obtain
all genes belonging to respective brain region. Function lookups
the PPI table for gene IDs from the list and returns “limited”
or “induced” interactors GeneIDs for the specified region.
getPPIbyIDs4BrainRegion(
ids,
brainRegion,
taxID,
type = c("induced", "limited")
)
ids |
gene IDs |
brainRegion |
region ID |
taxID |
taxon ID |
type |
type of the PPI network should be either |
data.frame with interactors internal GeneID in columns A and B
Other PPI functions:
getIGraphFromPPI()
,
getPPIbyEntrez()
,
getPPIbyIDs4Compartment()
,
getPPIbyIDs()
,
getPPIbyName()
,
getTableFromPPI()
Other BrainRegion functions:
getAllGenes4BrainRegion()
,
getBrainRegions()
,
getGenes4BrainRegion()
# getting all genes for mouse Striatum
gns <- getAllGenes4BrainRegion(brainRegion = "Striatum", taxID = 10090)
head(gns)
# getting full PPI network for postsynaptic compartment
ppi <- getPPIbyIDs4BrainRegion(
gns$GeneID,
brainRegion = "Striatum",
taxID = 10090,
type = "limited"
)
head(ppi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.