This is a test version of Biostars. For the public version, visit https://www.biostars.org.
IGV deletion insert size

Hi,

I am trying to extract variant reads for deletion (large SVs) from DNA-seq bam files. In IGV, variant reads for deletions are labelled in red (insert size larger than expected): IGV link. I am currently using the pysam package to parse bam files. I have a look at those deletion variant reads in red, but couldn't find unique features to extract them out from the bam files...not sure how IGV identifies those reads. Any suggestions? Thanks!

deletion igv variantion structural dna

1 answer

but couldn't find unique features to extract them out from the bam files...

  • reads not-properly-paired with a large TLEN (distance) between the read and it's mate.
    • reads with supplementary alignments mapping far from the original read.

Thanks! This gave me some ideas! I guess I will start working on measuring the inner distance between two paired reads (segments), and if the inner distance is unexpected large (e.g., >>100bp), then they are potential variant reads. Is that correct?

Log in to answer this question.