Count Unique Alignments in BAM file
I want to get the number of alignments in my bam file that aren't duplicates. I've run Picard Tools to mark duplicates on the bam file, but didn't use the option to actually remove them. I'd prefer not to rerun that step, but I can't figure out how to get a count of this. The samtools flagstat output gives one number (6,689,555) for duplicates, but samtools view -c -F 1024 gives something different (3,266,467). I'm confused.
• 3,535 views
•
link
1 answer
You should be using -f instead -F
• 1 views
•
link
Log in to answer this question.