Hi! myfriends,
I'm doing read count of my RNA-seq data using featurecounts, I found a pretty low assigned rate which ranges 20~30%, like below.
FeatureCounts result
I noticed that the total is not accord with my FastQC and STAR' report:
So, I used samtools flagstat to check:
I'm in doubt that whether featureCounts and samtools recounted multi-mapping reads? and if so, I wish your kindly suggestions, Thank you!
featureCounts
does NOT count multi-mapped reads by default (which you don't want to do anyway). You can force it to do so using-M
option. Check to see if you have rRNA contamination in your data if you see a large amount of multi-mapping.I've previously seen examples were a lot of RNA-seq reads map to other parts of the genome (introns, intergenic) - could you test whether that is the case?
If " reads map to other parts of the genome (introns, intergenic)" should I remove the sample from downstream analysis?