Team:UCSF/Project/Background1

From 2013.igem.org

(Difference between revisions)
 
(96 intermediate revisions not shown)
Line 156: Line 156:
/***Body styling***/
/***Body styling***/
h1{
h1{
-
font-size: 2.5em;
+
font-size: 2.3em;
 +
line-height: 1em;
}
}
h2{
h2{
-
font-size: 1.7em;
+
font-size: 1.8em;
 +
line-height: 1.5em;
}
}
h3{
h3{
-
font-size: 1.7em;
+
font-size: 1.6em;
 +
margin: 0px 15px;
 +
font-weight: bold;
 +
}
 +
h4{
 +
font-size: 1.4em;
 +
color: #333333;
 +
margin: 0px 20px;
 +
font-weight: bold;
 +
}
 +
#bodycontainer p{
 +
font-size: 1.2em;
 +
}
 +
#pagetitle{
 +
border-bottom: 2px solid black;
 +
padding-bottom: 10px;
 +
padding-left: 10px;
 +
}
 +
#bodycontainer h2{
 +
margin-left: 10px;
 +
margin-right: 10px;
 +
}
 +
#bodycontainer p{
 +
margin-left: 20px;
 +
margin-right: 10px;
 +
}
 +
#bodycontainer{
 +
margin-left: 220px;
 +
}
 +
#bodycontainer ul{
 +
margin-left: 5.0em;
 +
}
 +
#bodycontainer li{
 +
font-family: Georgia, Serif;
}
}
-
 
#box1{
#box1{
-
width: 700px;
+
width: 750px;
 +
        height: 3000px;
background: #fffff;
background: #fffff;
float: left;
float: left;
-
         margin-left: 150px;
+
         margin-left: 200px;
         margin-top: 15px;
         margin-top: 15px;
}
}
Line 182: Line 217:
#opensource {width:306px; float:left; background-color: #F5F5F5; margin-left:8px; padding: 10px; margin-top:8px;}
#opensource {width:306px; float:left; background-color: #F5F5F5; margin-left:8px; padding: 10px; margin-top:8px;}
#rightcontent {width:800px; float:right; background-color: #F5F5F5; margin-left: 8px;  margin-top:10px;}
#rightcontent {width:800px; float:right; background-color: #F5F5F5; margin-left: 8px;  margin-top:10px;}
-
#photos {width:150px; float:left; background-color: #FFFFFF; margin-left: 2px;  margin-top:10px;}
+
#photos {width:750px; float:left; background-color: #FFFFFF; margin-left: 2px;  margin-top:10px;}
#description{width:600px; height:112px;float:left; background-color: #FFFFFF; margin-left: 10px;  margin-top:10px;}
#description{width:600px; height:112px;float:left; background-color: #FFFFFF; margin-left: 10px;  margin-top:10px;}
#flickr{width:755px; float:right;}   
#flickr{width:755px; float:right;}   
-
#rightcontenttext {width:900px; float:right; background-color: #FFFFFF; margin-left:8px; padding: 10px; margin-top:8px;}  
+
#rightcontenttext {width:700px; float:right; background-color: #FFFFFF; margin-left:10px; padding: 10px; margin-top:8px;}  
</style>
</style>
-
</head>
 
-
<body>
 
-
<div id="box1" align="justify">
 
-
<h2><FONT COLOR="#008000"> Operation CRISPR: Deploying precision guided tools to target unique species in a complex microbiome </FONT COLOR="#008000"></h2>
 
-
<div id="description" style = "width:420px; height:200px">
+
<!-------------------------------------------------------------------------->
-
<font face="calibri" size = "3" >
+
<!----{{Template:12SJTU_js}}---->
-
Rarely in nature do bacterial strains exist in isolation; they form complex microbial communities that interact with various organisms. We ourselves contain a major microbial community in our digestive tract that has shown to directly affect our health and well-being. As shown on the left, to improve and maintain healthly living it would be useful to have the ability to change the microbial community. For example, if a large of amount of a certain sugar was present in your gut ("signal #1") you might want to slow the growth of a certain bacterial populations . In another scenario ("signal #2") it might be useful to increase the growth of other specific bacteria in your gut. But targeting precise bacterial community strains and controlling their growth, activity, and outputs is difficult and requires many new tools. </font>
+
<script type="text/javascript" >
-
</div>
+
    function SDMenu(id) {
 +
        if (!document.getElementById || !document.getElementsByTagName)
 +
            return false;
 +
        this.menu = document.getElementById(id);
 +
        this.submenus = this.menu.getElementsByTagName("div");
 +
        this.remember = true;
 +
        this.speed = 20;
 +
        this.markCurrent = true;
 +
        this.oneSmOnly = false;
 +
    }
 +
    SDMenu.prototype.init = function () {
 +
        var mainInstance = this;
 +
        for (var i = 0; i < this.submenus.length; i++)
 +
            this.submenus[i].getElementsByTagName("span")[0].onclick = function () {
 +
                mainInstance.toggleMenu(this.parentNode);
 +
            };
 +
        if (this.markCurrent) {
 +
            var links = this.menu.getElementsByTagName("a");
 +
            for (var i = 0; i < links.length; i++)
 +
                if (links[i].href == document.location.href) {
 +
                    links[i].className = "current";
 +
                    break;
 +
                }
 +
        }
 +
        if (this.remember) {
 +
            var regex = new RegExp("sdmenu_" + encodeURIComponent(this.menu.id) + "=([01]+)");
 +
            var match = regex.exec(document.cookie);
 +
            if (match) {
 +
                var states = match[1].split("");
 +
                for (var i = 0; i < states.length; i++)
 +
                    this.submenus[i].className = (states[i] == 0 ? "collapsed" : "");            }
 +
        }
 +
    };
 +
    SDMenu.prototype.toggleMenu = function (submenu) {
 +
        if (submenu.className == "collapsed")
 +
            this.expandMenu(submenu);
 +
        else if (submenu.className == "collapsed_ab")
 +
            this.expandMenu(submenu);
 +
        else
 +
            this.collapseMenu(submenu);
 +
        this.collapseOthers(submenu);
 +
    };
 +
    SDMenu.prototype.expandMenu = function (submenu) {
 +
        var fullHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
 +
        var links = submenu.getElementsByTagName("a");
-
<div id="photos">
+
        for (var i = 0; i < links.length; i++)
-
<center><img style="height:290px;margin-left:20px"; padding:0;"
+
            fullHeight += links[i].offsetHeight;
-
src="https://static.igem.org/mediawiki/2013/1/15/IntroMicrobiome_Pic1.png"> </center></div>
+
        var moveBy = Math.round(this.speed * links.length);
-
<div id="description" style = "width:600px; height:315px">
+
        var mainInstance = this;
-
<font face="calibri" size = "3" align = "left">
+
        var intId = setInterval(function () {
-
At the beginning of this summer, we asked ourselves a question: “What could we introduce to a microbiome which would allow targeting and eventual gene expression changes in a specific bacteria?”  The difficulty faced with this situation is in
+
            var curHeight = submenu.offsetHeight;
 +
            var newHeight = curHeight + moveBy;
 +
            if (newHeight < fullHeight)
 +
                submenu.style.height = newHeight + "px";
 +
            else {
 +
                clearInterval(intId);
 +
                submenu.style.height = "";
 +
                submenu.className = "";
 +
                mainInstance.memorize();
 +
            }
 +
        }, 30);
 +
        this.collapseOthers(submenu);
 +
    };
 +
    SDMenu.prototype.collapseMenu = function (submenu) {
 +
        var minHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
 +
        var moveBy = Math.round(this.speed * submenu.getElementsByTagName("a").length);
 +
        var mainInstance = this;
 +
        var intId = setInterval(function () {
 +
            var curHeight = submenu.offsetHeight;
 +
            var newHeight = curHeight - moveBy;
 +
            if (newHeight > minHeight)
 +
                submenu.style.height = newHeight + "px";
 +
            else {
 +
                clearInterval(intId);
 +
                submenu.style.height = "";
 +
                submenu.className = "collapsed";
 +
                mainInstance.memorize();
 +
            }
 +
        }, 30);
 +
    };
 +
    SDMenu.prototype.collapseOthers = function (submenu) {
 +
        if (this.oneSmOnly) {
 +
            for (var i = 0; i < this.submenus.length; i++)
 +
                if (this.submenus[i] != submenu) {
 +
                    if (this.submenus[i].className != "collapsed") {
 +
                        this.collapseMenu(this.submenus[i]);
 +
                    }
 +
                    else if (this.submenus[i].className != "collapsed_ab") {
 +
                        this.collapseMenu(this.submenus[i]);
 +
                    }
 +
                }
 +
        }
 +
    };
 +
    SDMenu.prototype.expandAll = function () {
 +
        var oldOneSmOnly = this.oneSmOnly;
 +
        this.oneSmOnly = false;
 +
        for (var i = 0; i < this.submenus.length; i++)
 +
            if (this.submenus[i].className == "collapsed")
 +
                this.expandMenu(this.submenus[i]);
 +
            else if (this.submenus[i].className == "collapsed_ab")
 +
                this.expandMenu(this.submenus[i]);
 +
        this.oneSmOnly = oldOneSmOnly;
 +
    };
 +
    SDMenu.prototype.collapseAll = function () {
 +
        for (var i = 0; i < this.submenus.length; i++)
 +
            if (this.submenus[i].className != "collapsed")
 +
                this.collapseMenu(this.submenus[i]);
 +
            else if (this.submenus[i].className != "collapsed_ab")
 +
                this.collapseMenu(this.submenus[i]);
 +
    };
 +
    SDMenu.prototype.memorize = function () {
 +
        if (this.remember) {
 +
            var states = new Array();
 +
            for (var i = 0; i < this.submenus.length; i++)
 +
                states.push(this.submenus[i].className == "collapsed" ? 0 : 1);
 +
            var d = new Date();
 +
            d.setTime(d.getTime() + (30 * 24 * 60 * 60 * 1000));
 +
            document.cookie = "sdmenu_" + encodeURIComponent(this.menu.id) + "=" + states.join("") + "; expires=" + d.toGMTString() + "; path=/";
 +
        }
 +
    };
 +
</script>
 +
<!----End {{Template:12SJTU_js}}---->
-
<ol>
+
<!----{{Template:12SJTU_sdmenu_css}}---->
 +
<style type="text/css">
 +
div.sdmenu {
 +
font-family: Myriad Pro, Gill Sans MT, Trebuchet MS, Arial, Sans-Serif;
 +
        font-size: 1.2em;
 +
padding-bottom: 5px;
 +
color: #fff;
 +
}
 +
div.sdmenu div {
 +
background-color: #6BAFAB;
 +
overflow: hidden;
 +
}
-
<li>Introduce a targeting system into a defined mixture of bacteria such that you can select and introduce manipulations without negatively affecting other bacteria. </li>
+
div.sdmenu div.collapsed {
-
<li>Creating easy to transfer pathways or circuits that can produce a multitude of outcomes (killing, repressing, upregulating) </li>
+
height: 30px;}
 +
div.sdmenu div span {
 +
display: block;
 +
padding: 6px 25px;
 +
width: 150px;
 +
font-weight: bold;
 +
color: white;
 +
background: url(/wiki/images/f/f7/12SJTU_floatnav_expanded.gif) no-repeat 10px center;
 +
cursor: default;
 +
border-bottom: 1px solid #ddd;
 +
cursor: pointer;
 +
}
 +
div.sdmenu div:hover{
 +
background-color: #51C9C9;
 +
}
 +
div.sdmenu div.collapsed span {
 +
background-image: url(/wiki/images/2/20/12SJTU_floatnav_collapsed.gif);
 +
}
 +
div.sdmenu div a {
 +
padding: 5px 10px;
 +
background: #DDE7E2;
 +
display: block;
 +
border-bottom: 1px solid #ddd;
 +
color: #3F7572;
 +
}
 +
div.sdmenu div a.current {
 +
background : #B7CDC2;
 +
}
 +
div.sdmenu div a:hover {
 +
background : #31A29F url(/wiki/images/2/2d/12SJTU_floatnav_linkarrow.gif) no-repeat right center;
 +
color: #fff;
 +
text-decoration: none;
 +
}
 +
</style>
 +
<!----End {{Template:12SJTU_sdmenu_css}}---->
-
</ol>
+
<style type="text/css">
 +
.floatbox{
 +
position:absolute;
 +
width:160px;
 +
height:00px;
 +
background:#FFFFFF
 +
}
 +
</style>
-
<b><FONT COLOR="#008000"><u>1. Introducing CRISPRi to a bacterial community:</u></font></b>
+
<script type="text/javascript">
-
To selectively target and eliminate harmful bacteria, we are utilizing the CRISPRi system, a tool repurposed from a natural adaptive immunity system in bacteria (see diagram below). This tool is comprised of a catalytically dead Cas9 (dCas9) protein that complexes with guide RNAs (gRNA) complementary to the target bacteria’s DNA sequence. This complex binds to DNA complementary to the gRNA and prevents transcription, therefore repressing gene expression. </div>
+
// <![CDATA[
 +
    var myMenu;
 +
    window.onload = function () {
 +
        myMenu = new SDMenu("my_menu");
 +
        myMenu.oneSmOnly = true;
 +
        myMenu.remember = false;
 +
        myMenu.init();
 +
        myMenu.expandMenu(myMenu.submenus[0]);
 +
    };
 +
// ]]>
 +
</script>
-
<div>
+
<!---------------------------------------------------------------------------------------------------->
-
<center><img style="margin-left:10px; height:420px"; padding:0;"
+
</head>
-
src="https://static.igem.org/mediawiki/2013/1/19/CRISPRi-Addgene.png"> </center></div>
+
 +
<body>
 +
<div class="floatbox" id="12SJTU_floatnav" style="top:200px; left:2px;">
 +
<table border="0" width="150" cellspacing="0" cellpadding="0">
 +
  <tr>
 +
<td width="100%">
-
<div id="description" style = "width:600px; height:20px" align="justify">
+
<!--End {{Template:12SJTU_floatnav_head}}-->
-
<font face="calibri" size = "2"><center>https://www.addgene.org/CRISPR/guide/</font></center>  </div>
+
-
 
+
-
<div id="description" style = "width:400px; height:175px; margin-top:100px"align="justify">
+
-
<font face="calibri" size = "3" >
+
-
As a means <a href="https://2013.igem.org/Team:UCSF/Project/Conjugation/Design" >to introduce our CRISPRi system into a microbial community we’ve opted to utilize conjugation</a><span> - a naturally occurring mechanism bacteria use to transfer DNA.  By utilizing this mechanism, we are able to target specific strains of bacteria and affect gene expression. This will have a potential for future applications that require targeting individual strains in a bacterial community. </div>
+
-
 
+
-
<div id="photos">
+
-
<center><img style="margin-left:20px; height: 390px"; padding:0;"
+
-
src="https://static.igem.org/mediawiki/2013/2/28/Conjugation-Intro.png"> </center></div>
+
-
<div id="description" style = "width:420px; height:20px" align="justify">
+
<script type="text/javascript">
-
<font face="calibri" size = "2"><center>http://en.wikipedia.org/wiki/Bacterial_conjugation</font></center> </div>
+
// <![CDATA[
-
 
+
    var myMenu;
-
 
+
    window.onload = function () {
-
<div id="description" style = "width:600px; height:75px; margin-top:10px"align="justify">
+
        myMenu = new SDMenu("my_menu");
-
<font face="calibri" size = "4" >
+
        myMenu.oneSmOnly = true;
-
<b><center><FONT COLOR="#008000">
+
        myMenu.remember = false;
-
The combination of conjugation and CRISPRi allows us to create a system capable of both transferring genetic instructions from one cell to another as well as targeting unique species in a microbial community through a specific gene. </font></b></center>
+
        myMenu.init();
 +
        myMenu.expandMenu(myMenu.submenus[0]);
 +
    };
 +
// ]]>
 +
</script>
 +
<!--{{Template:12SJTU_nav_project}}-->
 +
    <div style="float: left" id="my_menu" class="sdmenu">
 +
      <div class="collapsed">
 +
        <span>Background</span>
 +
        <a href="/Team:UCSF/Project/Background1">Background</a>
 +
      </div>
 +
      <div class="collapsed">
 +
        <span>CRISPRi Circuit</span>
 +
        <a href="/Team:UCSF/Project/Circuit/Design">Design</a>
 +
        <a href="/Team:UCSF/Project/Circuit/Data">Data</a>
 +
      </div>
 +
      <div class="collapsed">
 +
        <span>CRISPRi Conjugation</span>       
 +
        <a href="/Team:UCSF/Project/Conjugation/Design">Design</a>
 +
        <a href="/Team:UCSF/Project/Conjugation/Data">Data</a>
 +
      </div>
</div>
</div>
 +
     
 +
<!--End {{Template:12SJTU_nav_project}}-->
-
<div id="description" style = "width:600px; height:315px">
+
<!--{{Template:12SJTU_floatnav_foot}}-->
-
<font face="calibri" size = "3" align = "left">  
+
  </tr>
 +
</table>
 +
</div>
 +
<script type="text/javascript">
 +
    var id = function (o) { return document.getElementById(o) }
 +
    var scroll = function (o) {
 +
        var space = id(o).offsetTop;
 +
        id(o).style.top = space + 'px';
 +
        void function () {
 +
            var goTo = 0;
 +
            var roll = setInterval(function () {
 +
                var height = document.documentElement.scrollTop + document.body.scrollTop + space;
 +
                var top = parseInt(id(o).style.top);
 +
                if (parseInt(document.documentElement.scrollTop + document.body.scrollTop) > 98) {
 +
                    height = height - 70;
 +
                    if (parseInt(document.documentElement.scrollTop + document.body.scrollTop) > 198) {
 +
                        height = height - 70;
 +
                        if (parseInt(document.documentElement.scrollTop + document.body.scrollTop) > 298) {
 +
                            height = height - 70;
 +
                        }
 +
                    }
 +
                }
 +
                if (height != top) {
 +
                    goTo = height - parseInt((height - top) * 0.9);
 +
                    id(o).style.top = goTo + 'px';
 +
                }
 +
            }, 30);
 +
        } ()
 +
    }
 +
    scroll('12SJTU_floatnav');
 +
</script>
-
<b><FONT COLOR="#008000"><u>2. Creating scalable CRISPRi circuits that can choose between outcomes based on the input</u></font></b>
+
<div id="box1" align="justify">
-
In addition to our conjugation project, we have developed a <a href="https://2013.igem.org/Team:UCSF/Project/Circuit/Design" >CRISPRi circuit</a><span>, which could be delivered by the same conjugation system, that could apply to future regulatory applications (upregulation of bacterial growth, bacterial activity and behavior, gene expression, and other bacterial processes, etc.).  Our circuit is multi-functional, eliciting different responses with the presence of different inducers and is scalable by incorporating additional designed plasmids or guide RNAs. The circuit relies on the use of CRISPRi gRNAs to provide scalability - several genes can be targeted for silencing, upregulation, or other needs. </div>
+
<h2><FONT COLOR="#008000"> Operation CRISPR: Deploying precision guided tools to target unique species in a complex microbiome </FONT COLOR="#008000"></h2>
-
</div>
+
<div id="description" style = "width: 750px;height:150px">
-
</div>
+
<font face="calibri" size = "3" >
-
</div>
+
Rarely in nature do bacterial strains exist in isolation; they form complex microbial communities that interact with various organisms. We ourselves contain a major microbial community in our digestive tract that has shown to directly affect our health and well-being.  As shown on the left, to improve and maintain healthly living it would be useful to have the ability to change the microbial community. For example, if a large of amount of a certain sugar was present in your gut ("signal #1") you might want to slow the growth of a certain bacterial populations . In another scenario ("signal #2") it might be useful to increase the growth of other specific bacteria in your gut. But targeting precise bacterial community strains and controlling their growth, activity, and outputs is difficult and requires many new tools.  </font>
-
</div>
+
</div>
</div>
 +
<div id="photos">
 +
<center><img style="height:290px;margin-left:20px"; padding:0;"
 +
src="https://static.igem.org/mediawiki/2013/1/15/IntroMicrobiome_Pic1.png"> </center>
</div>
</div>
-
</div>
+
<div id="description" style = "width:750px; height:400px">
 +
<font face="calibri" size = "3" align = "left">
 +
At the beginning of this summer, we asked ourselves a question: “What could we introduce to a microbiome which would allow targeting and eventual gene expression changes in a specific bacteria?”  The difficulty faced with this situation is in
 +
<ol>
 +
<li>Introduce a targeting system into a defined mixture of bacteria such that you can select and introduce manipulations without negatively affecting other bacteria. </li>
 +
<li>Creating easy to transfer pathways or circuits that can produce a multitude of outcomes (killing, repressing, upregulating) </li>
 +
</ol>
 +
<b><FONT COLOR="#008000"><u>1. Introducing CRISPRi to a bacterial community:</u></font></b>
 +
To selectively target and eliminate harmful bacteria, we are utilizing the CRISPRi system, a tool repurposed from a natural adaptive immunity system in bacteria (see diagram below). This tool is comprised of a catalytically dead Cas9 (dCas9) protein that complexes with guide RNAs (gRNA) complementary to the target bacteria’s DNA sequence. This complex binds to DNA complementary to the gRNA and prevents transcription, therefore repressing gene expression.
-
 
+
</div>
-
<div id="sidebar">
+
</div>
-
<div id="list">
+
-
<h2>Team</h2>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:UCSF/About_Us">About Us</a></li>
+
-
<li><a href="https://2013.igem.org/Team:UCSF/Team">Members</a></li>
+
-
<li><a href="https://2013.igem.org/Team:UCSF/Advisors">Advisors</a></li>
+
-
<li><a href="https://2013.igem.org/Team:UCSF/Mentors&Instructors">Mentors</a></li>
+
-
<li><a href="https://igem.org/Team.cgi?year=2013&team_name=UCSF">Profile</a></li>
+
-
<li><a href="https://2013.igem.org/Team:UCSF/ContactUs">Contact Us</a>
+
-
</ul>
+
</div>
</div>
</body>
</body>
</html>
</html>

Latest revision as of 21:47, 27 October 2013

Operation CRISPR: Deploying precision guided tools to target unique species in a complex microbiome

Rarely in nature do bacterial strains exist in isolation; they form complex microbial communities that interact with various organisms. We ourselves contain a major microbial community in our digestive tract that has shown to directly affect our health and well-being. As shown on the left, to improve and maintain healthly living it would be useful to have the ability to change the microbial community. For example, if a large of amount of a certain sugar was present in your gut ("signal #1") you might want to slow the growth of a certain bacterial populations . In another scenario ("signal #2") it might be useful to increase the growth of other specific bacteria in your gut. But targeting precise bacterial community strains and controlling their growth, activity, and outputs is difficult and requires many new tools.
At the beginning of this summer, we asked ourselves a question: “What could we introduce to a microbiome which would allow targeting and eventual gene expression changes in a specific bacteria?” The difficulty faced with this situation is in
  1. Introduce a targeting system into a defined mixture of bacteria such that you can select and introduce manipulations without negatively affecting other bacteria.
  2. Creating easy to transfer pathways or circuits that can produce a multitude of outcomes (killing, repressing, upregulating)
1. Introducing CRISPRi to a bacterial community: To selectively target and eliminate harmful bacteria, we are utilizing the CRISPRi system, a tool repurposed from a natural adaptive immunity system in bacteria (see diagram below). This tool is comprised of a catalytically dead Cas9 (dCas9) protein that complexes with guide RNAs (gRNA) complementary to the target bacteria’s DNA sequence. This complex binds to DNA complementary to the gRNA and prevents transcription, therefore repressing gene expression.