Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell98 |
Collects all functions pertaining to the translation of nucleotides to amino acids for Text.
- codon2aa :: Codon -> Either Text Text
- translate :: Int -> FastaSequence -> Either Text FastaSequence
Documentation
codon2aa :: Codon -> Either Text Text Source
Converts a codon to an amino acid Remember, if there is an N in that DNA sequence, then it is invalid
translate :: Int -> FastaSequence -> Either Text FastaSequence Source
Translates a string of nucleotides. Returns a text with the error if the codon is invalid.