Entering edit mode
4.2 years ago
Goback
•
0
Hi Biostars,
I downloaded the 5'UTR and 3'UTR bed file from the UCSC genome browser, then I used "bedToGenePred" and "genePredToGtf" to convert the bed file to gft file for featurecounts. after I got the gft file, I found the UTR regions were re-annotated as exon, CDS, transcripts, which made me confused. if I want to count reads mapping to the UTR region, shall I count all these features and then sum the result?
Thank you.
Why can't you use featureCounts with a GTF file with all annotations and count 3'-UTRs (three_prime_utr) and 5'-UTRs (five_prime_utr)?
The annotation file (gencode.v33.annotation_comprehensive.gtf) doesn't provide features like 3'UTR and 5' UTR.
Is there a problem with using annotations from Ensembl? The nice thing for you is that the GTF file already contains all the annotations you need.
If you want to get your approach to work there are other methods to convert bed files to GTF and are described in this post.
Thank you very much 😊 . I didn't notice it contains this information.