Some genes (tree nodes) have a geneRIFs field which holds a list of references into function curated by NLM (mostly). Each entry has the brief curated summary of gene function and a list of pubmed ids. The leaf nodes that have geneRIFs can be given a special marker in the label zone that when clicked opens a popup of some kind that shows the list of RIFs and their citations.
To get the summaries from pubmed for these articles concatenate the pubmed ids and pass in the id query param.
https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=pubmed&id=15282547,15286295&retmode=json&tool=my_tool&email=my_email@example.com
The tool and email query params are something requested by ncbi. Also, make sure this implementation makes the request only for one gene at a time.
Some genes (tree nodes) have a geneRIFs field which holds a list of references into function curated by NLM (mostly). Each entry has the brief curated summary of gene function and a list of pubmed ids. The leaf nodes that have geneRIFs can be given a special marker in the label zone that when clicked opens a popup of some kind that shows the list of RIFs and their citations.
To get the summaries from pubmed for these articles concatenate the pubmed ids and pass in the id query param.
https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=pubmed&id=15282547,15286295&retmode=json&tool=my_tool&email=my_email@example.com
The tool and email query params are something requested by ncbi. Also, make sure this implementation makes the request only for one gene at a time.