Collections:
Double Stranded DNA, mRNA and Transcription
What are Double Stranded DNA and mRNA sequences?
✍: FYIcenter.com
A Double Stranded DNA sequence actually contains two nucleotide strands.
Here is a made-up example:
DNA coding strand (aka Crick strand, strand +1) 5' ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG 3' DNA template strand (aka Watson strand, strand −1) which is the reverse complement of the coding strand 3' TACCGGTAACATTACCCGGCGACTTTCCCACGGGCTATC 5'
The mRNA is derived from the biological transcription process, which does a reverse complement (TCAG → CUGA) from the DNA template strand.
Single stranded mRNA 5' AUGGCCAUUGUAAUGGGCCGCUGAAAGGGUGCCCGAUAG 3’
We can simulate this biological transcription process using the transcribe() function.
fyicenter$ python
>>> from Bio.Seq import Seq
>>> coding_dna = Seq("ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG")
>>> coding_dna
Seq('ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG')
>>> template_dna = coding_dna.reverse_complement()
>>> template_dna
Seq('CTATCGGGCACCCTTTCAGCGGCCCATTACAATGGCCAT')
>>> messenger_rna = coding_dna.transcribe()
>>> messenger_rna
Seq('AUGGCCAUUGUAAUGGGCCGCUGAAAGGGUGCCCGAUAG')
We can also convert the mRNA (messenger_rna) back to the DNA coding strand, using the back_transcribe() function.
>>> coding_dna = messenger_rna.back_transcribe()
>>> coding_dna
Seq('ATGGCCATTGTAATGGGCCGCTGAAAGGGTGCCCGATAG')
⇒ mRNA, Protein and Translation
⇐ Play with the Bio.Seq Module
2023-03-17, 966🔥, 0💬
Popular Posts:
Molecule Summary: ID: FYI-1006457 Names: InChIKey: BNHHIBWSNZELKC-UHFFFAOYS A-NSMILES: CC(C)c1cc(C(C...
Molecule Summary: ID: FYI-1000464 SMILES: Received at FYIcenter.com on: 2021-07-19
How to add hydrogen atoms to molecule data during data conversion? Most molecules contains many hydr...
How to display a 3-D molecule structure with 3Dmol.js? If you have a 3-D molecule structure stored i...
Molecule Summary: ID: FYI-1003256 Names: InChIKey: ZSYPGADQMCKYDM-LADVCJOIS A-NSMILES: CSc1ccccc1C[C...