UNPKG

@nexys/math-ts

Version:

[![npm version](https://badge.fury.io/js/%40nexys%2Fmath-ts.svg)](https://www.npmjs.com/package/@nexys/math-ts) [![TavisCI](https://travis-ci.com/Nexysweb/tableau-wdc-react.svg?branch=master)](https://travis-ci.com/github/Nexysweb/math-ts) [![Deployment](

13 lines (12 loc) 665 B
export declare const aas: { l: string; short: string; name: string; }[]; declare type AA = 'A' | 'R' | 'N' | 'D' | 'C' | 'Q' | 'E' | 'G' | 'H' | 'I' | 'L' | 'K' | 'M' | 'F' | 'P' | 'S' | 'T' | 'W' | 'Y' | 'V' | ')' | '}' | ']'; export declare const aaToCodon: (aa: AA) => string; export declare const codonToAa: (codon: string) => "F" | "L" | "I" | "M" | "V" | "S" | "P" | "T" | "A" | "Y" | "H" | "Q" | "K" | "D" | "E" | "C" | "W" | "R" | "G" | "N" | ")" | "}" | "]" | null; export declare const anticodon: (str: string) => string; export declare const dnaToRna: (str: string) => string; export declare const codons: (str: string) => string; export {};