How to convert old entrez id to updated-entrez id in R?
1
5
Entering edit mode
7.8 years ago
agicict ▴ 190

Hi.

Like other identifiers, entrez ids are also change as time goes by.

I used two library, 'org.Hs.eg.db' and 'annotate', to convert entrez ids into gene symbols.

Some of entrez ids were not changed because of updates.

Take entrez id 164022 as an example,

library(org.Hs.eg.db);library(annotate)
getSYMBOL('164022',data = 'org.Hs.eg')

164022 
NA

If you search the entrez id at NCBI, it says that 164022 was replaced with 653505.

(See. http://www.ncbi.nlm.nih.gov/gene/?term=164022)

Therefore, you should use the newest entrez id to get its gene symbol.

getSYMBOL('653505',data = 'org.Hs.eg')
   653505 
"PPIAL4A"

There are about two hundreds entrez ids whose symbol-matching failed.

As manual searching requires huge time, I need a solution.

How to update old entrez ids into newest entrez id?

Is there a function or library for this?

entrez id R update • 3.3k views
ADD COMMENT
7
Entering edit mode
7.8 years ago

This is a very good question.

You may try with the mygene.info service:

$: curl mygene.info/v2/gene/164022?fields=entrezgene
{
_id: "653505",
entrezgene: 653505
}

Remove the "fields" parameter to get more information.

For more documentation on mygene.info, check http://mygene.info/v2/api#MyGene.info-gene-annotation-services-GET-Gene-annotation-service

ADD COMMENT
1
Entering edit mode

Thank you. I used getURL function of RCurl to retrieve the information from the site.

ADD REPLY

Login before adding your answer.

Traffic: 3101 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6