]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/api/BamAux.h
Did some housekeeping in BamAux.h - moved some constants to the files where they...
[bamtools.git] / src / api / BamAux.h
index a122b24496e74c4ffa581b646983818989545791..daad5a0a026e55cd7a0b377d66c488e9d9cf9165 100644 (file)
@@ -3,7 +3,7 @@
 // Marth Lab, Department of Biology, Boston College\r
 // All rights reserved.\r
 // ---------------------------------------------------------------------------\r
-// Last modified: 15 September 2010 (DB)\r
+// Last modified: 16 September 2010 (DB)\r
 // ---------------------------------------------------------------------------\r
 // Provides the basic constants, data structures, etc. for using BAM files\r
 // ***************************************************************************\r
 namespace BamTools {\r
 \r
 // BAM constants\r
-const int BAM_CORE_SIZE   = 32;\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
-\r
-// BAM index constants\r
-const int MAX_BIN           = 37450;   // =(8^6-1)/7+1\r
-const int BAM_MIN_CHUNK_GAP = 32768;\r
-const int BAM_LIDX_SHIFT    = 14;\r
-\r
-// Explicit variable sizes\r
-const int BT_SIZEOF_INT = 4;\r
+const int BAM_CORE_SIZE   = 32;\r
 \r
 struct CigarOp;\r
 \r