@nexys/math-ts
Version:
[](https://www.npmjs.com/package/@nexys/math-ts) [](https://travis-ci.com/github/Nexysweb/math-ts) [ • 665 B
TypeScript
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 {};