Sha256: 5aa457cef5e67d41d4ef500e01f86fa8d2b4b8e40663183906fcf80caf4b10c7

Contents?: true

Size: 1.56 KB

Versions: 39

Compression:

Stored size: 1.56 KB

Contents

Let's translate RNA sequences into proteins. [general ref](http://en.wikipedia.org/wiki/Translation_(biology))

RNA can be broken into three nucleotide sequences called codons, and then translated to a polypeptide like so:

RNA: `"AUGUUUUCU"` => translates to

Codons: `"AUG", "UUU", "UCU"`
=> which become a polypeptide with the following sequence =>

Protein: `"Methionine", "Phenylalanine", "Serine"`
 
There are 64 codons which in turn correspond to 20 amino acids; however, all of the codon sequences and resulting amino acids are not important in this exercise.  If it works for one codon, the program should work for all of them.
However, feel free to expand the list in the test suite to include them all.  

There are also four terminating codons (also known as 'STOP' codons); if any of these codons are encountered (by the ribosome), all translation ends and the protein is terminated.

All subsequent codons after are ignored, like this:

RNA: `"AUGUUUUCUUAAAUG"` =>

Codons: `"AUG", "UUU", "UCU", "UAG", "AUG"` => 

Protein: `"Methionine", "Phenylalanine", "Serine"`

Note the stop codon terminates the translation and the final methionine is not translated into the protein sequence.

Below are the codons and resulting Amino Acids needed for the exercise.

Codon                 | Protein
:---                  | :---
AUG                   | Methionine
UUU, UUC              | Phenylalanine
UUA, UUG              | Leucine
UCU, UCC, UCA, UCG    | Serine
UAU, UAC              | Tyrosine
UGU, UGC              | Cysteine
UGG                   | Tryptophan
UAA, UAG, UGA         | STOP

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
trackler-2.0.8.54 common/exercises/protein-translation/description.md
trackler-2.0.8.53 common/exercises/protein-translation/description.md
trackler-2.0.8.52 common/exercises/protein-translation/description.md
trackler-2.0.8.51 common/exercises/protein-translation/description.md
trackler-2.0.8.50 common/exercises/protein-translation/description.md
trackler-2.0.8.49 common/exercises/protein-translation/description.md
trackler-2.0.8.48 common/exercises/protein-translation/description.md
trackler-2.0.8.47 common/exercises/protein-translation/description.md
trackler-2.0.8.46 common/exercises/protein-translation/description.md
trackler-2.0.8.45 common/exercises/protein-translation/description.md
trackler-2.0.8.44 common/exercises/protein-translation/description.md
trackler-2.0.8.43 common/exercises/protein-translation/description.md
trackler-2.0.8.42 common/exercises/protein-translation/description.md
trackler-2.0.8.41 common/exercises/protein-translation/description.md
trackler-2.0.8.40 common/exercises/protein-translation/description.md
trackler-2.0.8.39 common/exercises/protein-translation/description.md
trackler-2.0.8.38 common/exercises/protein-translation/description.md
trackler-2.0.8.37 common/exercises/protein-translation/description.md
trackler-2.0.8.36 common/exercises/protein-translation/description.md