Which chromosome a gene belongs to, in human?
2
0
Entering edit mode
8.8 years ago

Hi all,

I have a list of human genes (ENTREZ gene ID).

I would like to know the location of each gene.

i.e. : gene 8639 -> Chromsome 17.

I use R.

Cheers

genome metabolism pathway entrez R • 2.3k views
ADD COMMENT
2
Entering edit mode

Using Org.Hs.eg.db :

> unlist(mget(x = '8639',envir = org.Hs.egCHR,ifnotfound = NA))
8639
"17"

> unlist(mget(x = '8639',envir = org.Hs.egCHRLOC,ifnotfound = NA))
 8639.17
41003201
ADD REPLY
0
Entering edit mode

Thank you all Guys !

ADD REPLY
6
Entering edit mode
8.8 years ago

Biomart is your friend. That URL goes to a search for the chromosome of the gene with Entrez ID 8639. Just add more genes in the "Filter" section or use the R or perl interface if that's more convenient.

ADD COMMENT
2
Entering edit mode
ADD COMMENT

Login before adding your answer.

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