converting gene name to gene id
1
0
Entering edit mode
8.3 years ago
zizigolu ★ 4.3k

Hi,

I found many tools for ID conversion but I found no one to convert gene name to gene ID for example FLP1 (gene name) to R0010W (gene ID).

Do you know such a tool please?

Thank you

gene • 4.4k views
ADD COMMENT
3
Entering edit mode
8.3 years ago
biocyberman ▴ 860

IDs are databse specific. Can you tell which database you want to have IDs from (i.e. genbank, ensemble, etc)?

This http://biodb.jp/#ids may be want you want to use, but it does not work right now. Or try playing around with ENSEML biomart http://www.ensembl.org/biomart/martview

Update:

Assume you are working with the Yeast database (because the ID you gave as an example is from here: http://www.yeastgenome.org/locus/S000029654/overview

So do the following:

  1. Download this cross reference file from here

  2. Put all your genes in a file called mygenes.txt in one column, for example:

    FLP1
    CKS1
    GCN4
    PAP1
    
  3. Make sure dbxref.tab and mygenes.txt are in the same folder. Run this (in a linux machine):

    gawk 'BEGIN{FS="\t"}(NR == FNR){a[$1]++;next}{ if ($6 in a) print $4"\t"$6}' mygenes.txt dbxref.tab |sort|uniq
    
ADD COMMENT
0
Entering edit mode

thank you, actually i don't know which database i want, i only know about needing conversion

ADD REPLY
1
Entering edit mode

That is very challenging :-) Try to retrieve information from this file maybe: http://downloads.yeastgenome.org/curation/chromosomal_feature/dbxref.tab

README of the file: http://downloads.yeastgenome.org/curation/chromosomal_feature/dbxref.README

ADD REPLY
0
Entering edit mode

@Fereshteh See my updated answer.

ADD REPLY
1
Entering edit mode

thank you so much, for your complete explanation

ADD REPLY

Login before adding your answer.

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