X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam.h;h=2de5b091a6bcbc217b244284e1d9464214c6172d;hb=ea89c550a4ca078a462dc66dfcf77e65b09e1f2f;hp=41f8d95d5b642c5e5f683e34cfbaf12764d1ac78;hpb=213027e3cf754de8f601d3155899119f952fe617;p=samtools.git diff --git a/bam.h b/bam.h index 41f8d95..2de5b09 100644 --- a/bam.h +++ b/bam.h @@ -33,14 +33,14 @@ BAM library provides I/O and various operations on manipulating files in the BAM (Binary Alignment/Mapping) or SAM (Sequence Alignment/Map) - format. It now supports importing from or exporting to TAM, sorting, + format. It now supports importing from or exporting to SAM, sorting, merging, generating pileup, and quickly retrieval of reads overlapped with a specified region. @copyright Genome Research Ltd. */ -#define BAM_VERSION "0.1.12-r924:126" +#define BAM_VERSION "0.1.15 (r949:203)" #include #include @@ -264,6 +264,12 @@ typedef struct __bam_iter_t *bam_iter_t; */ extern int bam_is_be; +/*! + @abstract Verbose level between 0 and 3; 0 is supposed to disable all + debugging information, though this may not have been implemented. + */ +extern int bam_verbose; + /*! @abstract Table for converting a nucleotide character to the 4-bit encoding. */ extern unsigned char bam_nt16_table[256]; @@ -740,4 +746,13 @@ static inline bam1_t *bam_dup1(const bam1_t *src) return b; } +static inline int bam_aux_type2size(int x) +{ + if (x == 'C' || x == 'c' || x == 'A') return 1; + else if (x == 'S' || x == 's') return 2; + else if (x == 'I' || x == 'i' || x == 'f') return 4; + else return 0; +} + + #endif