fasta-0.10.0.0: A simple, mindless parser for fasta files.

Safe HaskellNone
LanguageHaskell98

Data.Fasta.Text.Parse

Description

Collection of functions for the parsing of a fasta file. Uses the Text type.

Synopsis

Documentation

parsecFasta :: Text -> [FastaSequence] Source

Parse a standard fasta file

parsecCLIPFasta :: Text -> CloneMap Source

Parse a CLIP fasta file

attoFasta :: Text -> [FastaSequence] Source

Parse a standard fasta file

attoCLIPFasta :: Text -> [(Germline, [FastaSequence])] Source

Parse a CLIP fasta file

pipesFasta :: MonadIO m => Producer Text m () -> Producer FastaSequence m () Source

Parse a standard fasta file into a pipe

pipesCLIPFasta :: MonadIO m => Producer Text m () -> Producer (Germline, [FastaSequence]) m (Either (ParsingError, Producer Text m ()) ()) Source

Parse a CLIP fasta file into a pipe

removeNs :: [FastaSequence] -> [FastaSequence] Source

Remove Ns from a collection of sequences

removeN :: FastaSequence -> FastaSequence Source

Remove Ns from a sequence

removeCLIPNs :: CloneMap -> CloneMap Source

Remove Ns from a collection of CLIP fasta sequences