Entering edit mode
7.8 years ago
carl.h
▴
20
I would like to quantify the number of exones of one particular exone in a specific gene. I have rnaseq data.
I would like to quantify the number of exones of one particular exone in a specific gene. I have rnaseq data.
you can use DEXSeq on R see this.
DEXSeq is a good suggestion.
If you wanted to use JunctionSeq for splicing analysis, QoRTs can provide exon and splice junction counts.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
I assume you mean counts for a particular exon? Align to the genome/transcriptome as usual. Use a GTF containing just the data you are interested in for counting with
featureCounts
at exon level.Yes that is right. Thank you!
For a follow up question, you don't happen to know how to count all exones in one gene? I have the gtf annotations for all the exones in one gene and I would like to get the number of each exon for the gene.
As long as you have the annotations in your GTF file you can count the exons separately (e.g.
-t exon
, which is the default for featureCounts. Take a look at the manual here.)Thank you it worked perfectly, I had to add -f to count feature.