Which are the different kinds of GeneID that exist?
1
0
Entering edit mode
8 days ago

I have raw counts from a RNA-Seq experiment, but the GeneIDs are listed as numbers, they don't look like ensembl or NCBI gene IDs. Here is a picture. Can you help me out?

enter image description here

R RNA-Seq • 312 views
ADD COMMENT
2
Entering edit mode
8 days ago
GenoMax 150k

Likely those are NCBI/Entrez ID's (which are numerical). You can look them up using EntrezDirect:

$ esearch -db gene -query 645520 | esummary | xtract -pattern DocumentSummary -element Id,Name 
645520  FAM138A

$ esearch -db gene -query 79501 | esummary | xtract -pattern DocumentSummary -element Id,Name,ScientificName
79501   OR4F5   Homo sapiens

$ esearch -db gene -query 100287102 | esummary | xtract -pattern DocumentSummary -element Id,Name,ScientificName
100287102   DDX11L1 Homo sapiens

Does this match the dataset you are working with?

ADD COMMENT
0
Entering edit mode

thank you very much, GenoMax I believe you're right, I'm working with human samples.. I need to convert them to gene symbols..

ADD REPLY
1
Entering edit mode

You can lookup many ID's by putting them in a file (one per line) and using epost method like so.

$ more names.txt
645520
79501
100287102

$ epost -db gene -input names.txt -format acc | esummary | xtract -pattern DocumentSummary -element Id,Name,ScientificName

79501   OR4F5   Homo sapiens
645520  FAM138A Homo sapiens
100287102   DDX11L1 Homo sapiens
ADD REPLY

Login before adding your answer.

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