This is a test version of Biostars. For the public version, visit https://www.biostars.org.
mapping between gene symbol and entrez ID

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

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

select(org.Hs.eg.db, "NUDT10", c("ENTREZID"), "ALIAS")

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

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

Thank you, that worked!

0 answers

No answers yet.

Log in to answer this question.