Changeset 3916
- Timestamp:
- May 31, 2020, 5:31:11 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/Pileup.h
r3855 r3916 340 340 typename std::list<Entry>::iterator read = data_.begin(); 341 341 while (read != data_.end()) { 342 read->increment();343 342 // remove entry if read is entirely left of pos 344 if (read->bam().end() <= pos_) { // FIXME speedup possible343 if (read->bam().end() <= pos_) { 345 344 data_.erase(read++); 346 345 continue; 347 346 } 347 read->increment(); 348 348 // check if we're stepping into insertion 349 349 if (read->cigar_op() == BAM_CINS) {
Note: See TracChangeset
for help on using the changeset viewer.