{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE TypeFamilies #-} -- | -- Module : Data.BAM.Version1_6.BAM.Header -- Copyright : (c) Matthew Mosior 2024 -- License : BSD-style -- Maintainer : mattm.github@gmail.com -- Portability : portable -- -- = WARNING -- -- This module is considered __internal__. -- -- The Package Versioning Policy __does not apply__. -- -- The contents of this module may change __in any way whatsoever__ -- and __without any warning__ between minor versions of this package. -- -- Authors importing this library are expected to track development -- closely. -- -- All credit goes to the author(s)/maintainer(s) of the -- [containers](https://hackage.haskell.org/package/containers) library -- for the above warning text. -- -- = Description -- -- This library enables the decoding/encoding of SAM, BAM and CRAM file formats. module Data.BAM.Version1_6.BAM.Header ( -- * BAM version 1.6 header section data type (RE-EXPORT) module Data.BAM.Version1_6.BAM.Header.CO, module Data.BAM.Version1_6.BAM.Header.HD, module Data.BAM.Version1_6.BAM.Header.PG, module Data.BAM.Version1_6.BAM.Header.RG, module Data.BAM.Version1_6.BAM.Header.SQ ) where -- | Re-exports. import Data.BAM.Version1_6.BAM.Header.CO import Data.BAM.Version1_6.BAM.Header.HD import Data.BAM.Version1_6.BAM.Header.PG import Data.BAM.Version1_6.BAM.Header.RG import Data.BAM.Version1_6.BAM.Header.SQ