]> git.donarmstrong.com Git - samtools.git/blobdiff - bam.h
bgzip now compiles
[samtools.git] / bam.h
diff --git a/bam.h b/bam.h
index 159f7159cb2006e75a48de5810485c46b609e832..cd2455af2337cd2884249ed308cbbeb6873eea1a 100644 (file)
--- a/bam.h
+++ b/bam.h
   @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 <stdint.h>
 #include <stdlib.h>
@@ -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;
 }