Team:Edinburgh/Genetic Instability

From 2011.igem.org

(Difference between revisions)
Line 53: Line 53:
We use this algorithm to give you the DNA sequences which are as far apart from the original as possible. '''In this mode, the tool also avoids heavy use of rare codons'''. And, it can return more than one sequence of DNA.
We use this algorithm to give you the DNA sequences which are as far apart from the original as possible. '''In this mode, the tool also avoids heavy use of rare codons'''. And, it can return more than one sequence of DNA.
-
What follows are 200 bases of two synthetic versions of <partinfo>BBa_K265008</partinfo> which are both dissimilar to it, as well as being dissimilar to each other. They also avoid using rare codons very often.
+
What follows are 200 bases of two synthetic versions of <partinfo>BBa_K265008</partinfo> which are both dissimilar to it, as well as being dissimilar to each other. They also avoid using rare codons very often. These sequences were produced by the genetic algorithm.
<pre style="background-color: rgba(255, 255, 255, 1.0);">
<pre style="background-color: rgba(255, 255, 255, 1.0);">

Revision as of 20:05, 20 July 2011

OK, so apparently there exists this thing called genetic instability, and we need to counter it...

Contents

What is genetic instability?

When a lot of similar DNA sequences are introduced into a cell, this can potentially lead to those pieces of DNA undergoing recombination and thus rearranging the DNA. This will not be a problem in our lab strain of E. coli, JM109, as it lacks the RecA recombinase enzyme which causes this to happen. However, industry requires hardy strains of E. coli, which must possess recombinases to deal with their high stress working environment.

But there is a solution!

If we only had many different (as far apart as possible) DNA sequences coding for the same protein, the world would be saved! According to Watt et al (1985) even a small number of mismatches drastically reduce recombination.

Enter Team Synergy's genetic stability tool! Using DNA's natural property of redundancy, it will find a number of different DNA sequences for you! And they will code for the same protein! Superb!

So, how does it work?

Possible modes

Random generation

This is a very crude mode, in which a random sequence of codons coding for analogous amino acids is generated, e.g. if you had:

atgaaaaagtctttagtcctcaaagcctctgtagccgttgctaccctcgttccgatgctgtctttcgct...
(the leader sequence for pVIII),

the program would translate it to amino acids sequence, i.e.:

MKKSLVLKASVAVATLVPMLSFA...

and then find a random codon for each amino acid, put them together, and spit out the result.

If this sounds too simple to produce really good results... you're right!

Best codon

In this mode, the tool would choose the best codon per every amino acid. What is the 'best codon'? It's the codon which has the most base pairs different from the original one.

For example, Leucine can be coded by TTA, TTG, CTT, CTC, CTA, or CTG. If the original sequence uses TTA, then the best codon method would choose CTT, CTC or CTG. There often are plenty of 'best' codons, so this method would be improved if it looked at the wider context...

Genetic algorithm

This is a very powerful algorithm, inspired by Computer Scientists observing Biology. It represents a problem using a string of characters - i.e. the 'DNA', then solutions are 'individuals', there is many of them in a 'generation', and they 'cross-over' and 'mutate' their 'genes' at some randomised rate. The most 'fit' individuals get into the next generation.

That means it is perfect for applying it in Biology!

We use this algorithm to give you the DNA sequences which are as far apart from the original as possible. In this mode, the tool also avoids heavy use of rare codons. And, it can return more than one sequence of DNA.

What follows are 200 bases of two synthetic versions of <partinfo>BBa_K265008</partinfo> which are both dissimilar to it, as well as being dissimilar to each other. They also avoid using rare codons very often. These sequences were produced by the genetic algorithm.

Alpha    1  atgaccctggacaaagcgctggtgctgcgtacctgcgccaacaacatggc   50
            |||||||||||.|||||.|||||.||||||||.|||||.|||||||||||
Beta     1  atgaccctggataaagctctggtcctgcgtacgtgcgcgaacaacatggc   50

Alpha   51  agatcactgcggtctgatttggccggcctctggcaccgtagagtcccgtt  100
            .||.||||||||.|||||.||||||||....|||||.||.||.||.||||
Beta    51  tgaccactgcggcctgatctggccggcaagcggcactgttgaatctcgtt  100

Alpha  101  actggcagagcactcgtcgtcatgaaaacggtctggttggcctgctgtgg  150
            |||||||....||.||||||||.|||||||||||.||.||.|||||.|||
Beta   101  actggcaatcgacccgtcgtcacgaaaacggtcttgtgggtctgctctgg  150

Alpha  151  ggcgcgggtacttcggccttcttatctgtccatgctgacgcgcgttggat  200
            ||.||.||.||....||.|||.|.||.||.|||||.||.|||||.|||||
Beta   151  ggtgcaggcaccagcgcattcctgtcggttcatgcggatgcgcgctggat  200

References