mapping between gene symbol and entrez ID
0
0
Entering edit mode
6.2 years ago
mike ▴ 60

Hello,

I have mapped a few gene symbols to their entrez IDs using:

library(org.Hs.eg.db) 

info4gene = select(org.Hs.eg.db, symbols, c("ENTREZID"), "ALIAS")

where symbols are the gene names, such as 'NUDT10'.

As below, why are they some gene symbols can map to more than two entrez IDs?

ALIAS   ENTREZID

NUDT10  53343

NUDT10  170685

Is this usual to have many to many mapping? Is there a way to give only one to one mapping?

Thank you!

gene gene symbol entrez ID mapping • 5.6k views
ADD COMMENT
0
Entering edit mode

https://www.ncbi.nlm.nih.gov/gene/?term=NUDT10 In this case 'NUDT10' one gene symbol can have many alias, even on different chromosomes (chrX, chr4). How should the decision be made?

ADD REPLY
0
Entering edit mode

53343 is NUDT9
170685 is NUDT10

ADD REPLY
0
Entering edit mode

Yes, but NUDT10 is also the alias of 'NUDT9'. Also the command showed the same:

select(org.Hs.eg.db, "NUDT10", c("ENTREZID"), "ALIAS")
ADD REPLY
2
Entering edit mode

Can you not use the primary gene name (instead of the alias)?

ADD REPLY
1
Entering edit mode

Yes I think you should be using "SYMBOL" instead of "ALIAS"

ADD REPLY
0
Entering edit mode

Thank you, that worked!

ADD REPLY

Login before adding your answer.

Traffic: 2846 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