Hi there,
I'm wondering if anybody can shed some light into what is happening during the count table step with featureCounts. I am loosing more than half of my reads. My mapping statistics seem to be fine when I run STAR.
My library is 75bp paired end using the Nugen Ovation Universal kit. The RNA is from rat. I downloaded the NCBI genome and made the STAR index. Here is my command to run STAR:
STAR --runThreadN 12 \
--genomeDir <path to...>/genomes/rn6/ncbi/star \
--readFilesIn ${R1} ${R2} \
--outFileNamePrefix starMapped/${job_name} \
--outSAMtype BAM Unsorted \
--seedSearchStartLmax 40 \
--outFilterScoreMinOverLread 0.5 \
--outFilterMatchNminOverLread 0.5
My mapping rate is 84-89%. A representative Log.final.out:
UNIQUE READS:
Uniquely mapped reads % | 85.59%
Average mapped length | 147.92
Number of splices: Total | 23011150
Number of splices: Annotated (sjdb) | 19835290
Number of splices: GT/AG | 22429313
Number of splices: GC/AG | 180851
Number of splices: AT/AC | 22581
Number of splices: Non-canonical | 378405
Mismatch rate per base, % | 0.28%
Deletion rate per base | 0.02%
Deletion average length | 1.98
Insertion rate per base | 0.01%
Insertion average length | 1.66
MULTI-MAPPING READS:
% of reads mapped to multiple loci | 10.03%
% of reads mapped to too many loci | 0.38%
UNMAPPED READS:
% of reads unmapped: too many mismatches | 0.00%
% of reads unmapped: too short | 3.55%
% of reads unmapped: other | 0.45%
Next, I run featureCounts using the following command:
featureCounts -T 12 -p -t exon -g gene_id -a <path to...>/NCBI/Annotation/Genes/genes.gtf -o combined_counts.txt *.bam
My output from featureCounts looks like:
Successfully assigned fragments : 41071240 (44.6%)
And this is representative of one sample in the summary file:
Assigned 41243743
Unassigned_Ambiguity 259701
Unassigned_MultiMapping 30155153
Unassigned_NoFeatures 20857145
My question is, why am I losing so many reads at the step of making the count table? Why are multi-mappers ~10% with STAR and then ~30% with featureCounts?
Thanks!
rna-seq
alignment
rna-seq
featurecounts
star