Main.Assignment8 History

Hide minor edits - Show changes to markup

March 24, 2010, at 10:35 AM MST by 10.84.44.70 -
Changed line 8 from:

Assume that the input sequence is an mRNA sequence, i.e. it is composed of the letters $A,C,G,U$. Your function should return the translation of the RNA sequence into protein.

to:

Assume that the input sequence is an mRNA sequence, i.e. it is composed of the letters $A,C,G,U$. Your function should return the translation of the RNA sequence into protein. The translated protein sequence should end at the first stop codon encountered during the translation process.

March 21, 2010, at 09:56 PM MST by 71.196.160.210 -
Added line 8:

Assume that the input sequence is an mRNA sequence, i.e. it is composed of the letters $A,C,G,U$. Your function should return the translation of the RNA sequence into protein.

March 21, 2010, at 09:54 PM MST by 71.196.160.210 -
Added lines 1-11:

Assignment 8

Due date: 3/29/10

Translation from mRNA to protein sequence

Write a function called translate(sequence) that translates a sequence of mRNA into a protein sequence. Every three bases are translated into an amino acid using the genetic code. For example, the sequence AUGUCAGGU translates into MSG. The complete codon table and more information can be found here. Use a python dictionary to represent the codon table.