Thank you for your response. I did look at that, but have also read other posts that suggest the results shouldnt be so different. I aligned my reads with STAR, and got dissimilar mapping. The following is samtools flagstat output for hg19 then ensembl aligned reads:
29991285 + 702821 in total (QC-passed reads + QC-failed reads)
2278391 + 64385 secondary
0 + 0 supplementary
0 + 0 duplicates
29991285 + 702821 mapped (100.00% : 100.00%)
27712894 + 638436 paired in sequencing
13871636 + 315364 read1
13841258 + 323072 read2
27665798 + 627952 properly paired (99.83% : 98.36%)
27665798 + 627952 with itself and mate mapped
47096 + 10484 singletons (0.17% : 1.64%)
0 + 0 with mate mapped to a different chr
0 + 0 with mate mapped to a different chr (mapQ>=5)
30213813 + 705544 in total (QC-passed reads + QC-failed reads)
2286418 + 64605 secondary
0 + 0 supplementary
0 + 0 duplicates
30213813 + 705544 mapped (100.00% : 100.00%)
27927395 + 640939 paired in sequencing
13978944 + 316580 read1
13948451 + 324359 read2
27880148 + 630366 properly paired (99.83% : 98.35%)
27880148 + 630366 with itself and mate mapped
47247 + 10573 singletons (0.17% : 1.65%)
0 + 0 with mate mapped to a different chr
0 + 0 with mate mapped to a different chr (mapQ>=5)
I then counted genes with featureCounts, and noticed that the ensembl annotation has way more info. The first is output from a couple read summaries with hg19 annotation and then ensembl annotation:
|| Load annotation file /groups/shared_databases/igenome/Homo_sapiens/UCS ... ||
|| Features : 392959 ||
|| Meta-features : 23228 ||
|| Chromosomes/contigs : 47 ||
|| ||
|| Process BAM file ... ||
|| Paired-end reads are included. ||
|| Assign fragments (read pairs) to features... ||
|| Total fragments : 33961661 ||
|| Successfully assigned fragments : 14868327 (43.8%) ||
|| Running time : 3.29 minutes ||
|| ||
|| Process BAM file ... ||
|| Paired-end reads are included. ||
|| Assign fragments (read pairs) to features... ||
|| Total fragments : 33899360 ||
|| Successfully assigned fragments : 18155450 (53.6%) ||
|| Running time : 3.44 minutes ||
|| Load annotation file /groups/shared_databases/igenome/Homo_sapiens/Ens ... ||
|| Features : 1309155 ||
|| Meta-features : 62069 ||
|| Chromosomes/contigs : 244 ||
|| ||
|| Process BAM file ... ||
|| Paired-end reads are included. ||
|| Assign fragments (read pairs) to features... ||
|| Total fragments : 34164741 ||
|| Successfully assigned fragments : 27688203 (81.0%) ||
|| Running time : 0.52 minutes ||
|| ||
|| Process BAM file ... ||
|| Paired-end reads are included. ||
|| Assign fragments (read pairs) to features... ||
|| Total fragments : 34067700 ||
|| Successfully assigned fragments : 28410464 (83.4%) ||
|| Running time : 0.65 minutes ||
The big difference is obviously that the ensembl annotation contains way more chromosomes/contigs and features. Are these added pieces of information obfuscating my results? Are they unnecessary, or added benefits?