X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam_pileup.c;h=d2d2aa6a8f1890b22344d330d0ca7e612c93b244;hb=f8941aebcb194dbe1ff32c161d3cd51d80805d5d;hp=616767a932b16222c1af7bdd3c5752124ebdfb0d;hpb=e05bad216a0100124389a7360832dff1d69c6155;p=samtools.git diff --git a/bam_pileup.c b/bam_pileup.c index 616767a..d2d2aa6 100644 --- a/bam_pileup.c +++ b/bam_pileup.c @@ -1,7 +1,8 @@ #include #include #include -#include "bam.h" +#include +#include "sam.h" typedef struct __linkbuf_t { bam1_t b; @@ -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 @@ -212,13 +218,13 @@ int bam_pileup_file(bamFile fp, int mask, bam_pileup_f func, void *func_data) bam_plbuf_t *buf; int ret; bam1_t *b; - b = (bam1_t*)calloc(1, sizeof(bam1_t)); + b = bam_init1(); buf = bam_plbuf_init(func, func_data); bam_plbuf_set_mask(buf, mask); while ((ret = bam_read1(fp, b)) >= 0) bam_plbuf_push(b, buf); bam_plbuf_push(0, buf); bam_plbuf_destroy(buf); - free(b->data); free(b); + bam_destroy1(b); return 0; }