]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/api/BamAux.h
On second thought, moved the (non-indexing) constants back to BamAux.h, since they...
[bamtools.git] / src / api / BamAux.h
index daad5a0a026e55cd7a0b377d66c488e9d9cf9165..84223a61654eb51eefadba790acb2d1310b97145 100644 (file)
 namespace BamTools {\r
 \r
 // BAM constants\r
+const int BAM_CMATCH      = 0;\r
+const int BAM_CINS        = 1;\r
+const int BAM_CDEL        = 2;\r
+const int BAM_CREF_SKIP   = 3;\r
+const int BAM_CSOFT_CLIP  = 4;\r
+const int BAM_CHARD_CLIP  = 5;\r
+const int BAM_CPAD        = 6;\r
 const int BAM_CIGAR_SHIFT = 4;\r
 const int BAM_CIGAR_MASK  = ((1 << BAM_CIGAR_SHIFT) - 1);\r
 const int BAM_CORE_SIZE   = 32;\r
+const int BT_SIZEOF_INT   = 4;\r
 \r
 struct CigarOp;\r
 \r