]> git.donarmstrong.com Git - samtools.git/blobdiff - bam.h
Added the support for the new SAM/BAM type "B"
[samtools.git] / bam.h
diff --git a/bam.h b/bam.h
index 87e3de326fea144e10323ad8229309b6b31136a4..2de5b091a6bcbc217b244284e1d9464214c6172d 100644 (file)
--- a/bam.h
+++ b/bam.h
@@ -746,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