X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam.h;h=a3305e3cf4b758edaaeaf201ea4fbc87ab8f919b;hb=50be08b2de946accc4c15aab2ec45ac86f30b09f;hp=95cf8fad436d66922b8267d6645671f243636dce;hpb=af97a7bdff4f0d3fec9543ce8077902f8d263ba0;p=samtools.git diff --git a/bam.h b/bam.h index 95cf8fa..a3305e3 100644 --- a/bam.h +++ b/bam.h @@ -40,7 +40,7 @@ @copyright Genome Research Ltd. */ -#define BAM_VERSION "0.1.18-r572" +#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; }