I have 6 mouse RNA-Seq data, and use STAR for the alignment and featureCounts for the quantification. The command I run featureCoutns is below.
rc <- featureCounts(files = c("Chuong753.bam", "Chuong754.bam", "Chuong755.bam", "Chuong756.bam", "Chuong757.bam", "Chuong758.bam"), annot.ext = "mm10ncbiRefSeqCurated.gtf", isGTFAnnotationFile = TRUE, GTF.featureType = "exon", GTF.attrType = "gene_id", minMQS = 10, strandSpecific = 0, nthreads = 6, verbose = TRUE)
I found that there are a lot of Unassigned_MappingQuality reads (the detail below). Should I set minMQS=3 or 0 to increase the number of Assigned reads? Many thanks.
> rc$stat
Status Chuong753 Chuong754 Chuong755 Chuong756 Chuong757 Chuong758
1 Assigned 28552790 19795064 26274194 26601820 21264775 21703604
2 Unassigned_Unmapped 0 0 0 0 0 0
3 Unassigned_MappingQuality 10233734 6718392 10369784 9299763 9249801 12905108
4 Unassigned_Chimera 0 0 0 0 0 0
5 Unassigned_FragmentLength 0 0 0 0 0 0
6 Unassigned_Duplicate 0 0 0 0 0 0
7 Unassigned_MultiMapping 0 0 0 0 0 0
8 Unassigned_Secondary 0 0 0 0 0 0
9 Unassigned_Nonjunction 0 0 0 0 0 0
10 Unassigned_NoFeatures 2596367 1732967 2577948 1882419 2235492 2757615
11 Unassigned_Overlapping_Length 0 0 0 0 0 0
12 Unassigned_Ambiguity 237389 166711 228953 216951 178357 218899
Thank you for pointing that out.
In this situation, I think a cross-post was helpful (since my interpretation was different than provided in that answer), but it is definitely helpful to have access to both sets of answers here!