Hello everyone, I want to do splicing analysis using differential exon usage(DEU) in edgeR. I have obtained the counts from Salmon; however, as you know it gives as transcript level.
For DEU, I need exon level counts. I'm avare that I can use it through featureCounts but do you have any recommendations about using Salmon for this purpose?
Thank you.
salmon
is not meant to do exon level read counting. See --> Salmon quantification vs HTSeq count quantificationCould you provide each exon as a "separate transcript" in your reference when you do counting? You could, but that will not be reflective of the eukaryotic biology.
Providing each exon as an individual transcript will throw off pseudoalignment-type algorithms which assume that each read originated from some transcript.
If each exon is a transcript and multiple exons are encountered in a read, the read will not be mapped by salmon.
I see, thank you. So do you suggest using featureCounts instead?