i have a small bam for testing and found that before and after deduplication, the number reads does not seem to match.
I used the most recent picard tool kit.
before remove duplication, there are 178306 reported duplications
after remove duplication, there are 0
but, the total number of reads just dropped 1586 (453052 - 451466).
can anyone give any insights?
$ samtools flagstat 5.bam
453052 + 0 in total (QC-passed reads + QC-failed reads)
178306 + 0 duplicates
447531 + 0 mapped (98.78%:-nan%)
453052 + 0 paired in sequencing
226526 + 0 read1
226526 + 0 read2
437506 + 0 properly paired (96.57%:-nan%)
443874 + 0 with itself and mate mapped
3657 + 0 singletons (0.81%:-nan%)
5006 + 0 with mate mapped to a different chr
4378 + 0 with mate mapped to a different chr (mapQ>=5)
$ samtools flagstat 5.dedup.bam
451466 + 0 in total (QC-passed reads + QC-failed reads)
0 + 0 duplicates
445945 + 0 mapped (98.78%:-nan%)
451466 + 0 paired in sequencing
225684 + 0 read1
225782 + 0 read2
436046 + 0 properly paired (96.58%:-nan%)
442404 + 0 with itself and mate mapped
3541 + 0 singletons (0.78%:-nan%)
5002 + 0 with mate mapped to a different chr
4374 + 0 with mate mapped to a different chr (mapQ>=5)
I used the most recent picard tool kit.
before remove duplication, there are 178306 reported duplications
after remove duplication, there are 0
but, the total number of reads just dropped 1586 (453052 - 451466).
can anyone give any insights?
$ samtools flagstat 5.bam
453052 + 0 in total (QC-passed reads + QC-failed reads)
178306 + 0 duplicates
447531 + 0 mapped (98.78%:-nan%)
453052 + 0 paired in sequencing
226526 + 0 read1
226526 + 0 read2
437506 + 0 properly paired (96.57%:-nan%)
443874 + 0 with itself and mate mapped
3657 + 0 singletons (0.81%:-nan%)
5006 + 0 with mate mapped to a different chr
4378 + 0 with mate mapped to a different chr (mapQ>=5)
$ samtools flagstat 5.dedup.bam
451466 + 0 in total (QC-passed reads + QC-failed reads)
0 + 0 duplicates
445945 + 0 mapped (98.78%:-nan%)
451466 + 0 paired in sequencing
225684 + 0 read1
225782 + 0 read2
436046 + 0 properly paired (96.58%:-nan%)
442404 + 0 with itself and mate mapped
3541 + 0 singletons (0.78%:-nan%)
5002 + 0 with mate mapped to a different chr
4374 + 0 with mate mapped to a different chr (mapQ>=5)
Comment