Difference between revisions of "Team:Alverno CA"

Line 1: Line 1:
 
{{:Team:Alverno_CA/headertest}}
 
{{:Team:Alverno_CA/headertest}}
 
{{:Team:Alverno_CA/CSS}}
 
{{:Team:Alverno_CA/CSS}}
<html>
 
 
<body>
 
 
 
<div class="splash" style="background-image: url(https://static.igem.org/mediawiki/2014/d/dc/Aalto_Helsinki_Logov_Oma.png)"); " id="mainsplash">
 
 
</div>
 
 
 
 
<script src="https://2014.igem.org/Team:Aalto-Helsinki/jquery-1.11.0.min.js?action=raw&ctype=text/js"></script>
 
 
<div class="link" id="Abstract"></div>
 
<h2>Clamping Down on Crosstalk:<br>
 
<small>How can we keep genes from interfering with each other in synthetic DNA circuits?</small></h2>
 
 
<center><h3>About this Project</h3></center>
 
<p><center>{{:Team:Alverno_CA/headertest}}
 
 
<html>
 
<html>
  
Line 70: Line 51:
 
<center><h3>About this Project</h3></center>
 
<center><h3>About this Project</h3></center>
 
<p><center>
 
<p><center>
Building complex biological systems with many genes requires isolating genes. Active genes can cause nearby DNA to become supercoiled, <br>leading to unpredictable behavior of synthetic biology systems. We will test if DNA clamps (made from DNA-binding proteins) placed between <br>genes can stop this interference. If this project succeeds, it will allow bioengineers to build more predictable genetic circuits.</center>
 
</p>
 
    <div class="row">
 
        <div class="img-center">
 
            <a href="https://youtu.be/sFfD-AivQw4"><img src="https://static.igem.org/mediawiki/2016/5/55/Videothumb.png" class="img-responsive smallerimg"></img></a>
 
            <p class="kuvateksti">
 
                <center>Watch our introduction video here.</center>
 
            </p>
 
        </div>
 
    </div>
 
<img src="https://static.igem.org/mediawiki/2014/7/7e/Aalto_Helsinki_Logot_Oma.png" class="img-responsive center-block omalogot">
 
 
 
<center><h3>What is the context of this research?</h3></center>
 
<p><center>
 
Programming cells often requires building "circuits" of several genes<br> together on the same piece of DNA. Bioengineers have observed that <br>when two genes are placed next to each other, they often unexpectedly interfere with each other's<br> expression in an unexpectedly orientation-dependent manner.
 
Nobody knows with certainty what causes this genetic crosstalk, but one promising<br> theory involves DNA supercoiling. The transcription of DNA into RNA, the transcription process introduces supercoils, similar to kinks in a tightly-wound phone <br> cord. Supercoils directly affect the expression of genes, turning them on or off depending on the direction of the supercoil.</center>
 
</p>
 
 
<center><h3>What is the significance of this project?</h3></center>
 
<p><center>
 
If successful, a DNA-binding, gene- isolating clamp could be used in any multi-gene circuit assembly, making multi-gene assemblies more predictable and their assembly much more efficient.<br>
 
This is particularly relevant when engineering metabolic pathways to produce chemicals<br> like methanol, insulin, or antibiotics, where circuits of many genes are routinely constructed. The physical layout of these circuits can unpredictably affect production of<br> the desired output by several orders of magnitude, so large engineered metabolic pathways must typically be hand-tuned or have many configurations screened for activity. By<br> making gene expression more predictable, our results could greatly improve the predictability (and, therefore, designability)<br> of large gene circuits for metabolic engineering.</center>
 
</p>
 
 
<center><h3>What are the goals of the project?</h3></center>
 
<p><center>
 
We will first build several plasmids (circular pieces of DNA) that <br>demonstrate cross-talk between genes. These plasmids <br>will consist of genes for two different fluorescent proteins (green fluorescent protein and red fluorescent protein) next to each other, in different orientations. <br>We expect to see differences in the relative expression of the two genes depending on how they are arranged and oriented, and we will quantify this effect.<br>
 
Next, we will try several strategies for removing these differences, including adding extra base pairs of spacing between the two genes and adding DNA "clamps" <br> made from DNA-binding repressor proteins between the two genes. We will again quantify the effects of cross-talk between genes, <br> which will hopefully be ameliorated by our additions.</center>
 
</p>
 
 
</article>
 
 
</div>
 
</body>
 
<script>
 
$(document).ready(function() {
 
 
if(location.pathname != "/Team:Aalto-Helsinki") {
 
$('#navigation a[href^="https://2014.igem.org' + location.pathname + '"]').addClass('active');
 
} else $('#navigation a.home').addClass('active');
 
});
 
</script>
 
<script type="text/javascript">
 
    // Picture reference script
 
    /*
 
    USAGE:
 
    tag img with a ref that is connected to the image, such as:
 
    <img src="aaltohelsinki.com/testikuva.png" ref="varioskan" />
 
    When you insert a reference in text, put a tag with a ref attribute:
 
    <a ref="varioskan"></a>
 
    Do not put href attribute, it will be replaced with a link to the image.
 
    Moreover, inner html of the anchor tag will be "figure x" where x is the
 
    correct figure number. If span or anchor has "." as the inner html, the
 
    caption will be capitalized.
 
    */
 
    var images = $('img[ref]');
 
    $.each(images, function(index, e){
 
            var referenceName = e.getAttribute("ref");
 
            if (!e.id){
 
                e.setAttribute("id","figure"+(index+1));
 
            }
 
            $.each($('a[ref="'+referenceName+'"]'), function(j, e2){
 
                e2.setAttribute("href","#"+e.id);
 
                if (e2.innerHTML == "."){
 
                    e2.innerHTML = "Figure " + (index+1);
 
                } else {
 
                    e2.innerHTML = "figure " + (index+1);
 
                }
 
            });
 
            $.each($('span[ref="'+referenceName+'"]'), function(j, e2){
 
                e2.setAttribute("href","#"+e.id);
 
                if (e2.innerHTML == "."){
 
                    e2.innerHTML = "Figure " + (index+1);
 
                } else {
 
                    e2.innerHTML = "figure " + (index+1);
 
                }
 
            });
 
        }
 
    );
 
 
    // Table reference script
 
    /*
 
    USAGE:
 
    tag table with a tab that is connected to the table, such as:
 
    <table ref="intensities" />
 
    When you insert a reference in text, put a tag with a ref attribute:
 
    <a tab="intensities"></a>
 
    Do not put href attribute, it will be replaced with a link to the image.
 
    Moreover, inner html of the anchor tag will be "table x" where x is the
 
    correct table number. If span or anchor has "." as the inner html, the
 
    caption will be capitalized.
 
    */
 
    var tables = $('table[tab], img[tab]');
 
    $.each(tables, function(index, e){
 
            var tableName = e.getAttribute("tab");
 
            if (!e.id){
 
                e.setAttribute("id","table"+(index+1));
 
            }
 
            $.each($('a[tab="'+tableName+'"]'), function(j, e2){
 
                e2.setAttribute("href","#"+e.id);
 
                if (e2.innerHTML == "."){
 
                    e2.innerHTML = "Table " + (index+1);
 
                } else {
 
                    e2.innerHTML = "table " + (index+1);
 
                }
 
            });
 
            $.each($('span[tab="'+tableName+'"]'), function(j, e2){
 
                e2.setAttribute("href","#"+e.id);
 
                if (e2.innerHTML == "."){
 
                    e2.innerHTML = "Table " + (index+1);
 
                } else {
 
                    e2.innerHTML = "table " + (index+1);
 
                }
 
            });
 
        }
 
    );
 
</script>
 
</html>
 
{{:Team:Alverno_CA/footertest}}
 
 
 
Building complex biological systems with many genes requires isolating genes. Active genes can cause nearby DNA to become supercoiled, <br>leading to unpredictable behavior of synthetic biology systems. We will test if DNA clamps (made from DNA-binding proteins) placed between <br>genes can stop this interference. If this project succeeds, it will allow bioengineers to build more predictable genetic circuits.</center>
 
Building complex biological systems with many genes requires isolating genes. Active genes can cause nearby DNA to become supercoiled, <br>leading to unpredictable behavior of synthetic biology systems. We will test if DNA clamps (made from DNA-binding proteins) placed between <br>genes can stop this interference. If this project succeeds, it will allow bioengineers to build more predictable genetic circuits.</center>
 
</p>
 
</p>

Revision as of 21:37, 15 October 2016

.splash { background-image: url("185px-T--Alverno_CA--marisa.jpg"); }

Clamp Down on Crosstalk
Alverno_CA

Reducing Noise in Multi-Gene Synthetic Biology Circuits

Clamping Down on Crosstalk:
How can we keep genes from interfering with each other in synthetic DNA circuits?

About this Project

Building complex biological systems with many genes requires isolating genes. Active genes can cause nearby DNA to become supercoiled,
leading to unpredictable behavior of synthetic biology systems. We will test if DNA clamps (made from DNA-binding proteins) placed between
genes can stop this interference. If this project succeeds, it will allow bioengineers to build more predictable genetic circuits.

Watch our introduction video here.

What is the context of this research?

Programming cells often requires building "circuits" of several genes
together on the same piece of DNA. Bioengineers have observed that
when two genes are placed next to each other, they often unexpectedly interfere with each other's
expression in an unexpectedly orientation-dependent manner. Nobody knows with certainty what causes this genetic crosstalk, but one promising
theory involves DNA supercoiling. The transcription of DNA into RNA, the transcription process introduces supercoils, similar to kinks in a tightly-wound phone
cord. Supercoils directly affect the expression of genes, turning them on or off depending on the direction of the supercoil.

What is the significance of this project?

If successful, a DNA-binding, gene- isolating clamp could be used in any multi-gene circuit assembly, making multi-gene assemblies more predictable and their assembly much more efficient.
This is particularly relevant when engineering metabolic pathways to produce chemicals
like methanol, insulin, or antibiotics, where circuits of many genes are routinely constructed. The physical layout of these circuits can unpredictably affect production of
the desired output by several orders of magnitude, so large engineered metabolic pathways must typically be hand-tuned or have many configurations screened for activity. By
making gene expression more predictable, our results could greatly improve the predictability (and, therefore, designability)
of large gene circuits for metabolic engineering.

What are the goals of the project?

We will first build several plasmids (circular pieces of DNA) that
demonstrate cross-talk between genes. These plasmids
will consist of genes for two different fluorescent proteins (green fluorescent protein and red fluorescent protein) next to each other, in different orientations.
We expect to see differences in the relative expression of the two genes depending on how they are arranged and oriented, and we will quantify this effect.
Next, we will try several strategies for removing these differences, including adding extra base pairs of spacing between the two genes and adding DNA "clamps"
made from DNA-binding repressor proteins between the two genes. We will again quantify the effects of cross-talk between genes,
which will hopefully be ameliorated by our additions.

Wiki coding by Aalto-Helsinki, modified by Alverno_CA.
Twitter | Email