p.s. esempio di esercizio di traduzione:
Tu hai la seq. nucleotidica seq:seq = 'agtccggatacgccgatcagtacgaggtcgatcaccggcgcccattgt'
per tradurla, la scomponi in triplette:
-> 'agt', 'ccg', 'gat', 'acg', 'ccg', 'ata', 'ccg', 'gcg', 'ccc', 'att'
prendi la tabella su wikipedia, e ti ricavi la sequenza corrispondente ad ogni tripletta:
'agt' > Serina [S], 'ccg' -> Prolina [P], 'gat' -> Acido Aspartico [D], etc..
Alla fine, ti ricavi la seq. della proteina corrispondente:
proteina = 'SPDTPISTRSITGAHC'
Se il prof te lo richiede, ripeti l'esercizio con gli altri schemi di lettura.
Se vuoi un esempio in biopython:
>>> from Bio.Seq import Seq, translate
>>> seq = Seq('agtccggatacgccgatcagtacgaggtcgatcaccggcgcccattgt')
>>> translate(seq)
'SPDTPISTRSITGAHC'