Skip to content

Instantly share code, notes, and snippets.

@stepjue
stepjue / rna_codons.py
Created June 9, 2014 22:41
Python dict for translating for RNA codon table (http://rosalind.info/glossary/rna-codon-table/)
codons = {
"UUU" : "F",
"CUU" : "L",
"AUU" : "I",
"GUU" : "V",
"UUC" : "F",
"CUC" : "L",
"AUC" : "I",
"GUC" : "V",
"UUA" : "L",