bio-sequence-0.1.0.0: Initial project template from stack

Safe HaskellSafe
LanguageHaskell2010

Bio.Sequence.Alignment

Synopsis

Documentation

type Substitution a = a -> a -> Int Source #

Substitution function for a values comparison

type Gap = Int Source #

Gap type

class Alignment a where Source #

Introduces all useful methods to create an alignment

Minimal complete definition

gap, substitution, conditions, inits, selector, additional

Methods

gap :: a -> Gap Source #

substitution :: a -> Substitution Char Source #

conditions :: a -> Conditions Source #

inits :: a -> Int -> Int Source #

selector :: a -> StartSelector Source #

additional :: a -> Int Source #

mkGlobal :: Substitution Char -> Gap -> SimpleAlignment Source #

mkLocal :: Substitution Char -> Gap -> SimpleAlignment Source #

mkSemiglobal :: Substitution Char -> Gap -> SimpleAlignment Source #

mkEditDistance :: EditDistance Source #