hs-samtools-0.5.0.2: src/Data/SAM/Version1_6/Read/Parser/Header/HD/Base.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedLists #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE QuasiQuotes #-}
-- |
-- Module : Data.SAM.Version1_6.Read.Parser.Header.HD.Base
-- Copyright : (c) Matthew Mosior 2023
-- 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.SAM.Version1_6.Read.Parser.Header.HD.Base ( -- * SAM_V1_6 parser - header section (File-level metadata)
parse_SAM_V1_6_File_Level_Metadata
) where
import Data.SAM.Version1_6.Header
import Data.SAM.Version1_6.Read.Error
import Data.SAM.Version1_6.Read.Parser.Header.HD.VN
import Data.SAM.Version1_6.Read.Parser.Header.HD.SO
import Data.SAM.Version1_6.Read.Parser.Header.HD.GO
import Data.SAM.Version1_6.Read.Parser.Header.HD.SS
import Data.Attoparsec.ByteString.Lazy as DABL
import Text.Regex.PCRE.Heavy
-- | Make a parser optional, return Nothing if there is no match.
maybeOption :: Parser a
-> Parser (Maybe a)
maybeOption p = option Nothing (Just <$> p)
-- | @"SAM_V1_6_File_Level_Metadata"@ parser.
--
-- Defines a parser for @HD tag section of the SAM v1.6 file format.
--
-- See the [SAM v1.6](http://samtools.github.io/hts-specs/SAMv1.pdf) specification documentation.
parse_SAM_V1_6_File_Level_Metadata :: Parser SAM_V1_6_File_Level_Metadata
parse_SAM_V1_6_File_Level_Metadata = do
_ <- do hdheaderp <- DABL.takeTill (== 09)
-- Parse @HD tag of the header section.
case (hdheaderp =~ [re|[@][H][D]|]) of
False -> fail $ show SAM_V1_6_Error_File_Level_Metadata_Tag_Incorrect_Format
True -> -- @HD tag is in the accepted format.
return hdheaderp
_ <- word8 09
-- This parser assumes that the VN tag always appears first, followed by
-- SO, GO and SS tags, if they exist, in that order.
vn <- parse_SAM_V1_6_File_Level_Metadata_VN
_ <- word8 09
so <- maybeOption parse_SAM_V1_6_File_Level_Metadata_SO
_ <- word8 09
go <- maybeOption parse_SAM_V1_6_File_Level_Metadata_GO
_ <- word8 09
ss <- maybeOption parse_SAM_V1_6_File_Level_Metadata_SS
return SAM_V1_6_File_Level_Metadata { sam_v1_6_file_level_metadata_format_version = vn
, sam_v1_6_file_level_metadata_sorting_order = so
, sam_v1_6_file_level_metadata_alignment_grouping = go
, sam_v1_6_file_level_metadata_subsorting_order = ss
}