cobot-io-0.1.2.0: Biological data file formats and IO

Safe HaskellNone
LanguageHaskell2010

Bio.FASTA.Type

Synopsis

Documentation

type Fasta a = [FastaItem a] Source #

Type alias for FASTA file. satisfies the following format : >(s|t)*[^nr]+(s|t)*(n|r)*(w(n|r)*)*

data FastaItem a Source #

One record in FASTA file.

Constructors

FastaItem 

Fields

Instances
Functor FastaItem Source # 
Instance details

Defined in Bio.FASTA.Type

Methods

fmap :: (a -> b) -> FastaItem a -> FastaItem b #

(<$) :: a -> FastaItem b -> FastaItem a #

Eq a => Eq (FastaItem a) Source # 
Instance details

Defined in Bio.FASTA.Type

Methods

(==) :: FastaItem a -> FastaItem a -> Bool #

(/=) :: FastaItem a -> FastaItem a -> Bool #

Show a => Show (FastaItem a) Source # 
Instance details

Defined in Bio.FASTA.Type