UTR annotation on top of reference GTF
1
0
Entering edit mode
9.1 years ago
rmihael • 0

I'm trying to study UTRs based on reference genome of rattus norvegicus available at http://www.ncbi.nlm.nih.gov/genome?term=rattus%20norvegicus. Provided GTF has information about exons and CDS, so I'm wondering if there's any tools available that can automatically derive UTR annotation based on this data?

Also, if there's no such tools available, will it be correct to assume that UTR can be derived as "concatenation of all exons of a transcript excluding concatenation of all CDSs of same transcript"?

RNA-Seq • 3.4k views
ADD COMMENT
0
Entering edit mode
ADD REPLY
0
Entering edit mode

Yes your assumption is right.

ADD REPLY
2
Entering edit mode
9.1 years ago

In R:

library(GenomicFeatures) #You may have to install this
txdb <- makeTranscriptDbFromGFF("something.gtf", format="gtf") #this will take some time
fiveUTRsByTranscript(txdb)
threeUTRsByTranscript(txdb)
ADD COMMENT
1
Entering edit mode

Just came across this helpful answer 2.5 years in the future.

Seems the command is now txdb<-makeTxDbFromGFF("something.gtf", format="gtf") for anybody in the future looking to achieve this!

ADD REPLY

Login before adding your answer.

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