How To Convert Refseq Id To Gene Symbol As Pitx1
3
4
Entering edit mode
12.5 years ago
Hamilton ▴ 290

Hi, how can i convert refseqids (mouse) to gene symbols?

next-gen sequencing rna • 6.9k views
ADD COMMENT
5
Entering edit mode
12.5 years ago

you could use the UCSC database for mus musculus:

$ mysql   --user=genome --host=genome-mysql.cse.ucsc.edu -A   -D mm9  \
  -e "select distinct refseq,geneSymbol from kgXref where refseq in ('NM_008866','NM_011541','NM_011011') "
+-----------+------------+
| refseq    | geneSymbol |
+-----------+------------+
| NM_008866 | Lypla1     |
| NM_011011 | Oprk1      |
| NM_011541 | Tcea1      |
+-----------+------------+
ADD COMMENT
3
Entering edit mode
7.8 years ago
Newgene ▴ 370

use MyGene.info API, python and R clients are available.

For Python:

pip install mygene

then

import mygene
mg = mygene.MyGeneInfo()
mg.querymany(['NM_008866','NM_011541','NM_011011'], scopes='refseq')

that's it!

ADD COMMENT
0
Entering edit mode
12.5 years ago
Curiosity ▴ 130

You could download refseq gene list in "all" format instead of "BED" format using Galaxy http://main.g2.bx.psu.edu/ and then print the selected columns using unix command.

Use the following command

 awk '{print $2"\t"$13}' all_refseq.list

Ex: NM_001195025 Nuak2

ADD COMMENT

Login before adding your answer.

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