X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam_pileup.c;h=3ffd52851e3be64bed628081b2b57d8ca6378b8b;hb=8cab5e6afd245a6dbbb1580dc37cd3ee36e55078;hp=46906dba429032c49920f61a4149c29ec43eae11;hpb=01ddec3d623b07bfe54d7c31913da79db92b4dbf;p=samtools.git diff --git a/bam_pileup.c b/bam_pileup.c index 46906db..3ffd528 100644 --- a/bam_pileup.c +++ b/bam_pileup.c @@ -1,6 +1,7 @@ #include #include #include +#include #include "sam.h" typedef struct __linkbuf_t { @@ -61,7 +62,7 @@ static inline int resolve_cigar(bam_pileup1_t *p, uint32_t pos) int ret = 1, is_restart = 1; if (c->flag&BAM_FUNMAP) return 0; // unmapped read - assert(x <= pos); + assert(x <= pos); // otherwise a bug p->qpos = -1; p->indel = 0; p->is_del = p->is_head = p->is_tail = 0; for (k = 0; k < c->n_cigar; ++k) { int op = bam1_cigar(b)[k] & BAM_CIGAR_MASK; // operation @@ -97,7 +98,7 @@ static inline int resolve_cigar(bam_pileup1_t *p, uint32_t pos) break; } } - assert(x > pos); + assert(x > pos); // otherwise a bug return ret; } @@ -196,7 +197,12 @@ int bam_plbuf_push(const bam1_t *b, bam_plbuf_t *buf) buf->func(buf->tid, buf->pos, n_pu, buf->pu, buf->func_data); } // update tid and pos - if (buf->head->next) assert(buf->tid <= buf->head->b.core.tid); // otherwise, not sorted + if (buf->head->next) { + if (buf->tid > buf->head->b.core.tid) { + fprintf(stderr, "[bam_plbuf_push] unsorted input. Pileup aborts.\n"); + return 1; + } + } if (buf->tid < buf->head->b.core.tid) { // come to a new reference sequence buf->tid = buf->head->b.core.tid; buf->pos = buf->head->beg; // jump to the next reference } else if (buf->pos < buf->head->beg) { // here: tid == head->b.core.tid