X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam.h;h=a3305e3cf4b758edaaeaf201ea4fbc87ab8f919b;hb=607d7a0ab79152be4153fa09861cfa889488f2c7;hp=159f7159cb2006e75a48de5810485c46b609e832;hpb=0b3418cf166ce4a58cedf0d9a2df5ec3dd4cc5fa;p=samtools.git diff --git a/bam.h b/bam.h index 159f715..a3305e3 100644 --- a/bam.h +++ b/bam.h @@ -40,7 +40,7 @@ @copyright Genome Research Ltd. */ -#define BAM_VERSION "0.1.18-r579" +#define BAM_VERSION "0.1.18-r580" #include #include @@ -773,7 +773,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; }