Collections:
mRNA, Protein and Translation
How to derive protein sequence from a mRNA sequence?
✍: FYIcenter.com
Biologically, the protein sequence is produced by a translation process from
a mRNA sequence.
We can simulate this biological translation process using the translation() function.
fyicenter$ python
>>> from Bio.Seq import Seq
>>> messenger_rna = Seq("AUGGCCAUUGUAAUGGGCCGCUGAAAGGGUGCCCGAUAG")
>>> messenger_rna
Seq('AUGGCCAUUGUAAUGGGCCGCUGAAAGGGUGCCCGAUAG')
>>> protein = messenger_rna.translate()
>>> protein
Seq('MAIVMGR*KGAR*')
We can also derive the protein sequence from the DNA coding strand, using the same translate() function.
>>> coding_dna = Seq("ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG")
>>> coding_dna
Seq('ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG')
>>> protein = coding_dna.translate()
>>> protein
Seq('MAIVMGR*KGAR*')
Note that "*" in the protein sequence is the stop symbol.
⇐ Double Stranded DNA, mRNA and Transcription
2023-03-17, 1116🔥, 0💬
Popular Posts:
Molecule Summary: ID: FYI-1001192 SMILES: CC2CC(C)C1CC(C)(C)C1(C)C 2CReceived at FYIcenter.com on: 2...
Molecule Summary: ID: FYI-1000940 SMILES: CN(C)CCC=C1C2=CC=CC=C2CC C3=CC=CC=C31Received at FYIcenter...
Molecule Summary: ID: FYI-1005410 Names: InChIKey: AHSGLPNALVCXJM-UHFFFAOYS A-NSMILES: COC(=O)C1=C(C...
Molecule Summary: ID: FYI-1003648 Names: InChIKey: RSNMSLWCZGKIHM-UHFFFAOYS A-NSMILES: Nc4noc5ccc(c1...
What is biomodel.uah.es? biomodel.uah.es is a Website that offers an online tool to draw and view an...