X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam.h;h=cd2455af2337cd2884249ed308cbbeb6873eea1a;hb=8e3b3f229a04cb81b680987ce06ae1507c9d8b69;hp=159f7159cb2006e75a48de5810485c46b609e832;hpb=0b184e9ada57345b3de076c688a18a913fb96551;p=samtools.git diff --git a/bam.h b/bam.h index 159f715..cd2455a 100644 --- a/bam.h +++ b/bam.h @@ -40,7 +40,11 @@ @copyright Genome Research Ltd. */ -#define BAM_VERSION "0.1.18-r579" +#ifndef VERSION +#define BAM_VERSION "0.1.19+" +#else +#define BAM_VERSION VERSION +#endif #include #include @@ -773,7 +777,7 @@ 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 if (x == 'I' || x == 'i' || x == 'f' || x == 'F') return 4; else return 0; }