Hi,
In fact, I have already run Picard MarkDuplicates which indicates the duplicates through sam/bam flag field. But it can also add a duplicate type (DT) tag:
Although the bitwise flag annotation indicates whether a read was marked as a duplicate, it does not identify the type of duplicate. To do this, a new tag called the duplicate type (DT) tag was recently added as an optional output in the 'optional field' section of a SAM/BAM file. Invoking the TAGGING_POLICY option, you can instruct the program to mark all the duplicates (All), only the optical duplicates (OpticalOnly), or no duplicates (DontTag). The records within the output of a SAM/BAM file will have values for the 'DT' tag (depending on the invoked TAGGING_POLICY), as either library/PCR-generated duplicates (LB), or sequencing-platform artifact duplicates (SQ).
Do you think if I re-run Picard MarkDuplicates with this option I will be able to highlight the duplicates in IGV (through "Color alignments by > tag > DT")?
Thanks!