Line 62: | Line 62: | ||
</script> | </script> | ||
+ | <h3>Biological Module Design</h3> | ||
+ | |||
+ | <button class="collapsible">Overview</button> | ||
+ | <div class="drop"> | ||
+ | <p2>Oxidised redox molecules oxidise the transcription factor SoxR. This allows it to bind to and initiate transcription from the pSoxS promoter. This allows for the electronic induction of any gene placed downstream of this promoter.</p2> | ||
+ | </div> | ||
+ | <button class="collapsible">Details</button> | ||
+ | <div class="drop"> | ||
+ | <h4>SoxR:</h4> | ||
+ | <p2>SoxR is a transcription factor which is constitutively expressed from the pSoxR portion of the pSoxR/pSoxS bidirectional promoter. Upon oxidation by a redox-cycling drug (such as pyocyanin) SoxR is able to activate gene transcription downstream of the pSoxS portion of the bidirectional promoter. The PixCell library contains a series of SoxR transcription factors with different activities which can be assembled modularly.</p2> | ||
+ | |||
+ | <h4>pSoxS:</h4> | ||
+ | <p2>pSoxS forms one half of the pSoxR/pSoxS bidirectional promoter. It is constitutively inactive, being activated by oxidised SoxR. The PixCell library includes engineered, unidirectional pSoxS promoters with variable activity which can be assembled modularly.</p2> | ||
+ | |||
+ | <h4>Quinone Pool:</h4> | ||
+ | <p2>Quinones are molecules found in respiratory membranes which shuttle electrons across the electron transport chain. Ferricyanide has been known to oxidise the quinone pool, drawing electrons out of a cell to amplify the response of pyocyanin. The full mechanism of this pathway is currently unknown. | ||
+ | </p2> | ||
+ | |||
+ | <script> | ||
+ | |||
+ | var coll = document.getElementsByClassName("collapsible"); | ||
+ | var i; | ||
+ | |||
+ | for (i = 0; i < coll.length; i++) { | ||
+ | coll[i].addEventListener("click", function() { | ||
+ | this.classList.toggle("active"); | ||
+ | var drop = this.nextElementSibling; | ||
+ | if (drop.style.display === "block") { | ||
+ | drop.style.display = "none"; | ||
+ | } else { | ||
+ | drop.style.display = "block"; | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | |||
+ | </script> | ||
+ | |||
+ | <h3>PixCell Electrogenetic System Design</h3> | ||
+ | |||
+ | <button class="collapsible">OFF State</button> | ||
+ | <div class="drop"> | ||
+ | <h4>SoxR:</h4> | ||
+ | <p2>In ambient conditions sulfite maintains pyocyanin in a reduced state whereas ferrocyanide is stable in its reduced form. The SoxR transcription factor therefore remains reduced, preventing induction of gene transcription from the pSoxS promoter.</p2> | ||
+ | </div> | ||
+ | <button class="collapsible">ON State</button> | ||
+ | <div class="drop"> | ||
+ | <p2>An electrode pulse of +0.5V oxidises the redox molcules pyocyanin and ferrocyanide. Pyocyanin oxidises the SoxR transcription factor which in turn initiates transcription of any gene downstream of pSoxS. This electronic induction of gene expression is amplified by the oxidised ferricyanide which pulls electrons out of the respiratory transport chain.</p2> | ||
+ | |||
+ | <script> | ||
+ | |||
+ | var coll = document.getElementsByClassName("collapsible"); | ||
+ | var i; | ||
+ | |||
+ | for (i = 0; i < coll.length; i++) { | ||
+ | coll[i].addEventListener("click", function() { | ||
+ | this.classList.toggle("active"); | ||
+ | var drop = this.nextElementSibling; | ||
+ | if (drop.style.display === "block") { | ||
+ | drop.style.display = "none"; | ||
+ | } else { | ||
+ | drop.style.display = "block"; | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | |||
+ | </script> | ||
</div> | </div> |
Revision as of 23:48, 15 October 2018