I have a list of HUGO and ENS gene ids and I want to associate the ncbi summary to each of them. I want to also account for gene synonyms (also knows as field in the ncbi site) . Finally I'd like to be able to query other species, not only human.
Here is an example for the BRAC1 gene.
So my output should be:
gene_id, summary
BRAC1, This gene encodes a nuclear phosphoprotein that plays a role in maintaining ...
...
I would prefer not having to perform queries over the network so the database should be local.
How would you attack this?
Thanks.