Pysam: Determine intra-read-position of Base at Pileupsite
0
0
Entering edit mode
8.0 years ago
thm_junk • 0

Hello,

for further analysis (methylation calling and Mbias calculation etc.) I need to determine the intra-read-position of a read base at a given Pileupsite. I'm iterating over a SAM-file via pysam, resulting in a pysam.pileupcolumn Object for every given position. This PileupColumn Object contains as attribute a list of pysam.pileupread objects. For each of those I want to determine the exact position in the read. A pileupread object contains the alignment as attribute in form of a pysam.AlignedSegment object. This AlignedSegment object now has may of the classic SAM-properties such as the CIGAR-String and the query_sequence (WITH softclipped bases). Another attribute of the pileupread class is the query_position which seems pretty nice, however it remains unclear whether this query_position takes softclipped bases into account.

Does anyone know more about this attribute query_position? Has anyone had the same Problem so far?

pysam BSeq SAM BAM • 2.4k views
ADD COMMENT
2
Entering edit mode

Why reinvent the wheel, PileOMeth already does this.

ADD REPLY
0
Entering edit mode

Thanks, I'm going to check this out!

ADD REPLY
0
Entering edit mode

+1 for PileOMeth, I used it today and it worked great :)

Doing it the manual way (parsing CIGAR strings and SEQ with soft-clipped bases) is a lot harder than it sounds, actually. Normally I'm one who likes to reinvent wheels so I can learn how they work, but in this instance I remember it being a real PITA because there are so many conditions which are non-obvious at first. Honestly, best to use a tool that someone else has dumped a few months into thinking about it, in this circumstance.

ADD REPLY
2
Entering edit mode

instead of query_position you can try get_reference_positions, you can specify if soft clipped positions should be included.

ADD REPLY
0
Entering edit mode

Oh, awesome - pysam gets better and better by the day :D

ADD REPLY

Login before adding your answer.

Traffic: 1415 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6