getGeneInfoByPapers | R Documentation |
Function lookup for specified PubMedIDs in the gene reference data and
return following features for genes referenced by requested papers at
least cnt
times:
GeneID (internal database ID), Localisation (one of the following:
presynaptic, postsynaptic, synaptosome),
MGI (MGI ID), HumanEntrez (Human Entrez ID), MouseEntrez (Mouse Entrez ID),
HumanName (Human gene name), MouseName (Mouse gene name),
PaperPMID (PMID IDs for the publications where the genes were reported if
it is within pmids
list),
Paper (papers where specific genes were reported in a format
FIRSTAUTHOR_YEAR), Year, SpeciesTaxID (specie the original experiment
was performed on), BrainRegion (Brain region where the specific genes
were identified, according to the paper)
getGeneInfoByPapers(pmids, cnt = 1)
pmids |
vector of PMIDs to search for genes |
cnt |
minimal number of papers that mentioned gene |
This function then returns following features for all found genes:
GeneID,
Localisation,
MGI,
HumanEntrez,
MouseEntrez,
HumanName,
MouseName,
PaperPMID,
Paper,
Year,
SpeciesTaxID,
BrainRegion
data.frame
with fields specified above.
Other GeneInfo functions:
getGeneInfoByEntrez()
,
getGeneInfoByIDs()
,
getGeneInfoByName()
res<- getAllGenes4Compartment(compartmentID = 1)
gnt<-getGeneInfoByIDs(res$GeneID)
pmids<-names(sort(table(gnt$PaperPMID))[1:5])
cntT <- getGeneInfoByPapers(pmids,cnt=3)
head(cntT)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.