Hello there,
Does anyone know of a tool to remove reads that have alternative alignments? Similarly to filtering for specific flags, I would like to filter out all reads that have more than one alignment.
I am aware that depending on the aligner the XA tag might not be set. I used bwa, which by default does not set an XA tag if there are more than 3 alternative alignments. However, this should not be a problem since multiple alignments would result in a lower mapping quality (and can thus be removed on this basis).
A simple grep
would work, but that could leave me with broken flags (filter out one read in a pair and not the other without adjusting the flag).
Any suggestions?
I don't remember if BWA reports it, but the NH tag reports the total hits, so NH:i:1 means unique hits.