Hi Ryan, The GTF file, that I obtained from the stringTie, is missing strand information. I need strand information to check the splice sites sequence (both at 5' and 3')
Do you have idea, how can I deal with that ?
how to extract intron coordinates (in bed) from bam
I have aligned raw RNA-seq reads against a reference genome with STAR. I would like to extract the intronic coordinates from obtained bam files. Any suggestion?
• 2,997 views
•
link
1 answer
This isn't information that one extracts, since it's not held within the BAM files. Instead your steps will be:
- Determine where transcripts and exons are (e.g. with stringTie).
- Process the resulting GTF file to retrieve introns (using whatever definition of this you'd like).
The second step may require some custom code, depending on whether you want introns that overlap exons (e.g., due to having multiple transcripts for a gene) or not.
• 0 views
•
link
• 0 views
•
link
Log in to answer this question.