(ns cljam.io.bam-index.common)

The magic number of BAI file.

(def bai-magic
  "BAI\1")

Maximum bin number or magic bin number.

(def ^:const max-bins
  37450)

The first bin numbers of each levels.

(def level-starts
  [0 1 9 73 585 4681])

Minimum shift size for searching binning.

(def ^:const linear-index-shift
  14)

The depth of tree for searching binning.

(def ^:const linear-index-depth
  5)