Team:MoWestern Davidson/project

From 2009.igem.org

(Difference between revisions)
(The Satisfiability (SAT) Problem:)
Line 9: Line 9:
[[Image:Doors.png|Figure.1 Hallway of doors (Clauses)|300x300px|left]]
[[Image:Doors.png|Figure.1 Hallway of doors (Clauses)|300x300px|left]]
-
each lock on each door can be opened by two different keys, (represented by the letters on each door- so the first lock can be opened by either the "G" (first <span style="color:#228B22"> green </span> key) or the "B" (first <span style="color:#0000FF"> blue </span>  key).) As long as you have at least one of the keys you can open the door.   
+
Each lock on each door can be opened by two different keys, (represented by the letters on each door- so the first lock can be opened by either the "G" (first <span style="color:#228B22"> green </span> key) or the "B" (first <span style="color:#0000FF"> blue </span>  key).) As long as you have at least one of the keys you can open the door.   
-
A janitor then, with three sets of keys <span style="color:#0000FF"> blue </span>,(B,b),<span style="color:#228B22"> green </span>,(G,g),<span style="color:#FF0000"> red </span>,(R,r) wants to find the combination of one <span style="color:#0000FF"> blue </span>  key, one <span style="color:#228B22"> green </span>  key, and one <span style="color:#FF0000"> red </span> key that will open all four of the doors.  The graphic below illustrates 3 of the janitor's possible 8 key combinations, and out of this set, only the first key ring can open all four doors. This key ring is said to "satisfy" the door problem.
+
A janitor then, with three sets of keys <span style="color:#0000FF">blue</span>,(B,b), <span style="color:#228B22">green</span>,(G,g) , <span style="color:#FF0000">red</span>,(R,r) wants to find the combination of one <span style="color:#0000FF"> blue </span>  key, one <span style="color:#228B22"> green </span>  key, and one <span style="color:#FF0000"> red </span> key that will open all four of the doors.  The graphic below illustrates 3 of the janitor's possible 8 key combinations, and out of this set, only the first key ring can open all four doors. This key ring is said to "satisfy" the door problem.
<center>
<center>
[[Image:picture2doorsno.png|500x500px|Testing different keys]]
[[Image:picture2doorsno.png|500x500px|Testing different keys]]

Revision as of 19:35, 28 July 2009

Contents

The Satisfiability (SAT) Problem:

A member of the NP-complete family (the most challenging of the non-deterministic polynomial time problems) can be compared to an analogy of locks and keys. Imagine a hallway of 4 doors, each with one lock.

Figure.1 Hallway of doors (Clauses)

Each lock on each door can be opened by two different keys, (represented by the letters on each door- so the first lock can be opened by either the "G" (first green key) or the "B" (first blue key).) As long as you have at least one of the keys you can open the door. A janitor then, with three sets of keys blue,(B,b), green,(G,g) , red,(R,r) wants to find the combination of one blue key, one green key, and one red key that will open all four of the doors. The graphic below illustrates 3 of the janitor's possible 8 key combinations, and out of this set, only the first key ring can open all four doors. This key ring is said to "satisfy" the door problem.

Testing different keys

The Real Math

A Sat problem is made by joining (with the logical operator "AND") a number of clauses (doors) together.Each clause contains literals(key holes)joined together by the logical operator "OR" and these literals(key holes) come from the number of variables being used (the different keys). So the same problem from above would be translated like this

(a OR b) AND (a OR b') AND (a OR c') AND (a'or c)

where (a,a') replaces the blue set of keys, (b,b') replaces green set of keys and (c,c') replaces the red set of keys.


In E.coli

Our team translated this np-complete problem into a modified biological process. In cells, the process of transcription codes DNA into RNA, and then the RNA is translated into a protein that is expressed once completed. Just as an English sentence requires a specific grouping of letters to form words, DNA must be read in 3 nucleotide groupings called codons to continue the process successfully. Transfer RNAs (tRNAs) are RNA molecules with 3 nucleotide anticodon loops that match specifically to codon sequences and supply the amino acids according to those sequences. These amino acids are required to construct the protein. If nucleotides are inserted or deleted, the reading frame is shifted, causing a frameshift mutation. That frameshift mutation causes the tRNA to supply the wrong amino acid in the peptide chain that then gives an unanticipated protein, or no protein.

With this biological background, the connection can be made between the “door and key” analogy and the biological interpretation. Our “doors” are engineered reporter gene DNA sequences including the 5 nucleotide frameshift mutation “keyhole”, resulting in our frameshift leaders (FSL). The “keys” that may or may not open the door are engineered 5 nucleotide anticodon suppressor tRNAs. Opening the door, thus solving the MAX SAT problem, would allow the cell to convey this outcome in the expression of the reporter gene (fluorescence/antibiotic resistance). The idea of using suppressor tRNAs to bypass designed mutation to solve a SAT problem is an extension using suppressor logic from papers by Thomas J. Magliery, J. Christopher Anderson and Peter G. Schultz {Magliery et. al. & Anderson et. al.}. This team worked with 2,3,4,5, and 6 nucleotide frameshift mutations. Their research found that 4 and 5 base codon suppression was most efficient in their mission of expanding the genetic code. The difference in the original amino acid and the modified 5mer amino acid is the addition of the 2 nucleotides.