Просмотр исходного кода

Merge pull request #1282 from sjwarner-bp/fix-plf-hints

rename plf HINTS and regenerate READMEs
Katrina Owen 8 лет назад
Родитель
Сommit
cca0587be4
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      exercises/protein-translation/README.md

+ 2
- 2
exercises/protein-translation/README.md Просмотреть файл

@@ -20,11 +20,11 @@ All subsequent codons after are ignored, like this:
20 20
 
21 21
 RNA: `"AUGUUUUCUUAAAUG"` =>
22 22
 
23
-Codons: `"AUG", "UUU", "UCU", "UAG", "AUG"` =>
23
+Codons: `"AUG", "UUU", "UCU", "UAA", "AUG"` =>
24 24
 
25 25
 Protein: `"Methionine", "Phenylalanine", "Serine"`
26 26
 
27
-Note the stop codon terminates the translation and the final methionine is not translated into the protein sequence.
27
+Note the stop codon `"UAA"` terminates the translation and the final methionine is not translated into the protein sequence.
28 28
 
29 29
 Below are the codons and resulting Amino Acids needed for the exercise.
30 30