Sha256: 4710efcd4dcf503feededfbf65521d02a677f119f5e8f5ec9187dc6e8514c388

Contents?: true

Size: 1.6 KB

Versions: 77

Compression:

Stored size: 1.6 KB

Contents

Translate RNA sequences into proteins.

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 three 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", "UAA", "AUG"` =>

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

Note the stop codon `"UAA"` 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

Learn more about [protein translation on Wikipedia](http://en.wikipedia.org/wiki/Translation_(biology))

Version data entries

77 entries across 77 versions & 1 rubygems

Version Path
trackler-2.2.1.180 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.179 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.178 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.177 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.176 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.175 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.174 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.173 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.172 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.171 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.170 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.169 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.167 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.166 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.165 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.164 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.163 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.162 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.161 problem-specifications/exercises/protein-translation/description.md
trackler-2.2.1.160 problem-specifications/exercises/protein-translation/description.md