bioparse-0.1.0.0: A simple library for parsing various bioinformatics sequence formats

Safe HaskellNone
LanguageHaskell2010

Bio.Parse.Sequence.SequenceParser

Synopsis

Documentation

type ParseConstraint m = (Monad m, CharParsing m, TokenParsing m) #

class SequenceParser a where #

A general way to talk about "sequences which can be parsed".

In a previous life, this talked about a specific parsing function, binding us to a specific parser combinator library, making our rendering our use of parsers pointless. Now we solely rely on CharParsing (from parsers) and leave what to do with that fact up to the call site.

Minimal complete definition

parseSequence, parseSequences