Retrieve exon positions from UCSC Genome Browser
1
0
Entering edit mode
9.8 years ago

Title says it all. I'm interested in a specific gene, say HK1. How can I retrieve the exon positions?

Exon UCSC-Genome-Browser Positions • 3.6k views
ADD COMMENT
4
Entering edit mode
9.8 years ago

You could use rtracklayer in R:

library(rtracklayer)
ucsc <- browserSession()
query <- ucscTableQuery(ucsc, "knownGene", names="HK1")
HK1 <- track(query)
HK1.tx <- blocks(HK1)

This yields a GRangesList object, where each element contains the exon ranges for one of the 7 trancripts for HK1.

ADD COMMENT

Login before adding your answer.

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