Ejemplo n.º 1
0
 def test_identifies_Phenylalanine_codons(self):
     for codon in ['UUU', 'UUC']:
         self.assertEqual('Phenylalanine', of_codon(codon))
Ejemplo n.º 2
0
 def test_identifies_stop_codons(self):
     for codon in ['UAA', 'UAG', 'UGA']:
         self.assertEqual('STOP', of_codon(codon))
Ejemplo n.º 3
0
 def test_AUG_translates_to_methionine(self):
     self.assertEqual('Methionine', of_codon('AUG'))
Ejemplo n.º 4
0
 def test_identifies_Cysteine_codons(self):
     for codon in ['UGU', 'UGC']:
         self.assertEqual('Cysteine', of_codon(codon))
Ejemplo n.º 5
0
 def test_identifies_Tryptophan_codons(self):
     self.assertEqual('Tryptophan', of_codon('UGG'))
Ejemplo n.º 6
0
 def test_identifies_Serine_codons(self):
     for codon in ['UCU', 'UCC', 'UCA', 'UCG']:
         self.assertEqual('Serine', of_codon(codon))
Ejemplo n.º 7
0
 def test_identifies_Tyrosine_codons(self):
     for codon in ['UAU', 'UAC']:
         self.assertEqual('Tyrosine', of_codon(codon))
Ejemplo n.º 8
0
 def test_AUG_translates_to_methionine(self):
     self.assertEqual('Methionine', of_codon('AUG'))
Ejemplo n.º 9
0
 def test_identifies_Leucine_codons(self):
     for codon in ['UUA', 'UUG']:
         self.assertEqual('Leucine', of_codon(codon))
Ejemplo n.º 10
0
 def test_identifies_Tryptophan_codons(self):
     self.assertEqual('Tryptophan', of_codon('UGG'))
Ejemplo n.º 11
0
 def test_identifies_stop_codons(self):
     for codon in ['UAA', 'UAG', 'UGA']:
         self.assertEqual('STOP', of_codon(codon))
Ejemplo n.º 12
0
 def test_identifies_Cysteine_codons(self):
     for codon in ['UGU', 'UGC']:
         self.assertEqual('Cysteine', of_codon(codon))
Ejemplo n.º 13
0
 def test_identifies_Tyrosine_codons(self):
     for codon in ['UAU', 'UAC']:
         self.assertEqual('Tyrosine', of_codon(codon))
Ejemplo n.º 14
0
 def test_identifies_Serine_codons(self):
     for codon in ['UCU', 'UCC', 'UCA', 'UCG']:
         self.assertEqual('Serine', of_codon(codon))
Ejemplo n.º 15
0
 def test_identifies_Leucine_codons(self):
     for codon in ['UUA', 'UUG']:
         self.assertEqual('Leucine', of_codon(codon))
Ejemplo n.º 16
0
 def test_identifies_Phenylalanine_codons(self):
     for codon in ['UUU', 'UUC']:
         self.assertEqual('Phenylalanine', of_codon(codon))