Team:Tokyo Tech

From 2011.igem.org

(Difference between revisions)
(Prototype team page)
 
(167 intermediate revisions not shown)
Line 1: Line 1:
-
<!-- *** What falls between these lines is the Alert Box!  You can remove it from your pages once you have read and understood the alert *** -->
+
<!-- template starting point -->
 +
<html lang="english" xmlns="http://www.w3.org/1999/xhtml" xml:lang="english">
 +
<head>
 +
<meta http-equiv="content-script-type" content="text/javascript" />
 +
<meta http-equiv="content-type" content="text/html; charset=Shift_JIS" />
 +
<style>
 +
<!--
-
<html>
+
div#LeftMenu
-
<div id="box" style="width: 700px; margin-left: 137px; padding: 5px; border: 3px solid #000; background-color: #fe2b33;">
+
{
-
<div id="template" style="text-align: center; font-weight: bold; font-size: large; color: #f6f6f6; padding: 5px;">
+
color: #000000;
-
This is a template page. READ THESE INSTRUCTIONS.
+
background-color: #C4C4D2;
 +
margin: 0px;
 +
padding: 0px;
 +
left: 2px;
 +
width: 150px;
 +
float: left;
 +
top: 550px;
 +
position: static;
 +
}
 +
 +
div#navigation
 +
{
 +
background-color: #000000;
 +
color: #FFFFFF;
 +
margin: 0;
 +
padding: 0;
 +
position: absolute;
 +
}
 +
 +
ul#TopMenu
 +
{
 +
font-family: Arial, verdana, sans-serif;
 +
list-style: none;
 +
float: left;
 +
height: 30px;
 +
width: 945px
 +
}
 +
 +
ul#TopMenu > li
 +
{
 +
float: left;
 +
position:relative;
 +
padding: 2px 15px 0 0;
 +
list-style: none;
 +
}
 +
 +
ul#TopMenu > li ul
 +
{
 +
background-color: #050505;
 +
color: #FFFFFF;
 +
display: none;
 +
position: absolute;
 +
font-size: 16px;
 +
opacity: 0.8;
 +
list-style: none;
 +
min-width: 100px;
 +
padding: 9px 0 5px 5px;
 +
z-index: 500;
 +
}
 +
 +
#TopMenu > li:hover ul
 +
{
 +
display: inline;
 +
}
 +
 +
#TopMenu > li > ul > li
 +
{
 +
position: relative;
 +
padding: 0 0 5px 5px;
 +
margin: -1px;
 +
}
 +
 +
body
 +
{
 +
background-color: #EFEBEC;
 +
color: #000000;
 +
font-size: 13px;
 +
}
 +
 +
.top
 +
{
 +
top: 0;
 +
left: 0;
 +
clear: both;
 +
height: 190px;
 +
width: 945px;
 +
}
 +
.main
 +
{
 +
position: absolute;
 +
left: 160px;
 +
width: auto;
 +
}
 +
 +
.under_contents
 +
{
 +
position: static;
 +
top: 310px;
 +
margin: 5px 5px 5px 5px;
 +
padding: 0 0 0 0;
 +
 +
}
 +
 +
h1, h2, h3, h4, h5, h6
 +
{
 +
background-color: #00508D;
 +
color:#FFFFFF;
 +
text-align: center;
 +
padding-left: 5px;
 +
clear: both;
 +
}
 +
 +
.footer
 +
{
 +
position: relative;
 +
 
 +
}
 +
 +
.name
 +
{
 +
font-style: italic;
 +
}
 +
 
 +
#navigation a
 +
{
 +
text-decoration: none;
 +
background-color: transparent;
 +
color: #FFFFFF;
 +
}
 +
 +
#navigation a:hover
 +
{
 +
color: #FF9966;
 +
}
 +
 
 +
p
 +
{
 +
text-indent: 2em;
 +
}
 +
 
 +
img.fig
 +
{
 +
float: right;
 +
}
 +
 +
object
 +
{
 +
float: none;
 +
}
 +
 
 +
-->
 +
</style>
 +
 +
<script type="text/javascript">
 +
<!--
 +
var timeout = 500; //unit: ms
 +
var temp_timer = 0;  //for temp.
 +
var showed_item = 0;  //for temp.
 +
 
 +
function OpenMenu(elem)
 +
{
 +
StopMenuTimer();
 +
if(showed_item) showed_item.style.display = 'none';
 +
 +
showed_item = elem.getElementsByTagName('ul').item(0);
 +
if(showed_item == null) return;
 +
showed_item.style.display = 'block';
 +
 +
}
 +
 +
function CloseMenu()
 +
{
 +
if(showed_item) showed_item.style.display = 'none';
 +
}
 +
 +
function SetCloseTimer()
 +
{
 +
StopMenuTimer();
 +
temp_timer = window.setTimeout(CloseMenu, timeout);
 +
}
 +
 +
function StopMenuTimer()
 +
{
 +
if(temp_timer)
 +
{
 +
window.clearTimeout(temp_timer);
 +
temp_timer = null;
 +
}
 +
}
 +
 +
function getElementsByClass() {
 +
    var classElements = new Array();
 +
    var allElements = document.getElementsByTagName("*");
 +
    for (i = 0 ; i < allElements.length; i++) {
 +
if (allElements[i].className == 'firstHeading') {
 +
    allElements[i].style.display = 'none';
 +
  // window.alert('発見。');
 +
}
 +
    }
 +
}
 +
 +
window.onload = function() {
 +
getElementsByClass();
 +
var menu = window.document.getElementById('TopMenu');
 +
if(menu==null)
 +
return;
 +
var list = menu.getElementsByTagName('li');
 +
for(i=0; i<list.length; i++)
 +
{
 +
list[i].onmouseover = function(){
 +
OpenMenu(this);
 +
}
 +
 +
list[i].onmouseout = function(){SetCloseTimer();}
 +
list[i].onclick    = function(){
 +
if(showed_item) CloseMenu();
 +
else OpenMenu(this);
 +
}
 +
 +
var n_list = list[i].getElementsByTagName('ul');
 +
for(j=0; j<n_list.length; j++)
 +
{
 +
n_list[j].onmouseout = function(){SetCloseTimer();}
 +
n_list[j].onmouseover= function(){StopMenuTimer();}
 +
}
 +
}
 +
}
 +
//-->
 +
</script>
 +
 
 +
</head>
 +
<body>
 +
 
 +
<!-- top box -->
 +
<div class="top">
 +
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="965" height="150" id="Yourfilename" align="" style="float:none;">
 +
<param name="movie" value="https://static.igem.org/mediawiki/2011/4/4d/Header.swf">
 +
<param name="quality" value="high">
 +
<param name="bgcolor" value="#FFFFFF">
 +
<embed src="https://static.igem.org/mediawiki/2011/4/4d/Header.swf" quality="high" bgcolor="#FFFFFF" width="965" height="150" name="Yourfilename" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
 +
</embed>
 +
</object>
 +
<!-- list of top menu -->
 +
<div id="navigation">
 +
<ul id="TopMenu">
 +
<li id="menu_Home"><a href="https://2011.igem.org/Team:Tokyo_Tech">Home</a></li>
 +
 +
<li id="menu_Project">
 +
Project
 +
<ul>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/RPS-game/index.htm">RPS-Game</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/making-rain/index.htm">Make it Rain</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/Urea-cooler/index.htm">Urea Coolers</a></li>
 +
</ul>
 +
</li>
 +
 +
<li id="menu_data_page"><a href="https://2011.igem.org/Team:Tokyo_Tech/DataPage.htm">Data page</a></li>
 +
 +
<li id="menu_Modeling">
 +
Modeling
 +
<ul>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Modeling/RPS-game/RPS-game">RPS-Game</li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Modeling/Urea-cooler/urea-cooler">Urea Coolers</li>
 +
</ul>
 +
</li>
 +
 +
<li id="menu_Human Practice"><a href="https://2011.igem.org/Team:Tokyo_Tech/HumanPractice.htm">Human Practice</a></li>
 +
 +
<li id="menu_Sitemap"><a href="https://2011.igem.org/Team:Tokyo_Tech/sitemap.htm">Sitemap</a></li>
 +
 +
<li id="menu_Extra">
 +
More
 +
<ul style="width:210px;">
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Safety">Safety</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Attribution_and_Contributions.htm">Attribution and Contributions</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/notebook">NoteBook</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/team">Team</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Sponsers.htm">Sponsors</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Collaboration.htm">Collaboration</a></li>
 +
</ul>
 +
</li>
 +
</ul>
 +
</div>
 +
<!-- end of top menu -->
</div>
</div>
-
<div id="instructions" style="text-align: center; font-weight: normal; font-size: small; color: #f6f6f6; padding: 5px;">
+
<!-- end of top box -->
-
You are provided with this team page template with which to start the iGEM season.  You may choose to personalize it to fit your team but keep the same "look." Or you may choose to take your team wiki to a different level and design your own wiki.  You can find some examples <a href="https://2009.igem.org/Help:Template/Examples">HERE</a>.
+
 
 +
<!-- under contents -->
 +
<p class="under_contents">
 +
 
 +
<!-- left menu list -->
 +
<div style="min-height:2550px; float: left">
 +
<div id="LeftMenu" style="top:70px;">
 +
<!--list of page menu: DO NOT WRITE LINKS NOT WRITTEN IN THIS PAGE -->
 +
<ul>
 +
<li><a href="#Overall"> Overview: Cool down with our RPS Game</a></li>
 +
<li><a href="#RPS"> Rock-Paper-Scissors (RPS) Game</a></li>
 +
<li><a href="#rain"> Make it rain</a></li>
 +
<li><a href="#urea"> Urea Coolers</a></li>
 +
<li><a href="#manabi"> Human Practice</a></li>
 +
</ul>
 +
</div><br />
 +
<div style="clear:both;float: left; left: 2px; position: static; width: 146px; top: 50px; border: 2px dotted #ff69b4; color:#ff69b4;">
 +
If you use IE9, please inactivate "Compatibility View". Otherwise, this page will not be displayed correctly.<br />
 +
To turn it OFF, click the button on the right side of the Address bar (if it's blue, it is ON).
</div>
</div>
-
<div id="warning" style="text-align: center; font-weight: bold; font-size: small; color: #f6f6f6; padding: 5px;">
 
-
You <strong>MUST</strong> have a team description page, a project abstract, a complete project description, a lab notebook, and a safety page.  PLEASE keep all of your pages within your teams namespace. 
 
</div>
</div>
-
</div>
+
<!-- main contents -->
-
</html>
+
<div class="main">
 +
<!-- ############ Write main contents here ############### -->
 +
 +
<!-- page title -->
 +
<h1> iGEM Tokyo Tech 2011 Team </h1>
-
<!-- *** End of the alert box *** -->
+
<h2 id="Overall"> Overview: Cool down in summer with our Rock-Paper-Scissors Game</h2>
 +
<img src="https://static.igem.org/mediawiki/2011/2/24/Happy-rps.png" width="408px" alt="Project Overview" style="float:right;" />
 +
<p>
 +
When summer comes it brings vacations, so students have plenty time to have fun.
 +
But summer means hot weather! In light of these circumstances,
 +
we designed a game that can be played between<span class="name"> E.coli</span> and humans.
 +
The winner of the game can get refreshing prizes!
 +
Dear students and judges, let us introduce you to the first human-bacteria Rock-Paper-Scissors game!
 +
Win and get a rain shower and a &ldquo;urea cooler&rdquo;!
 +
</p>
 +
 +
<h2 id="RPS"> Rock-Paper-Scissors (RPS) Game </h2>
 +
<img src="https://static.igem.org/mediawiki/2011/1/10/TokyoTech_home_fig2.png" alt="RPS" width="480px" class="fig" />
 +
<p>
 +
So, how to play RPS with a handless bacteria?
 +
Instead of hands, we use different signaling molecules corresponding
 +
either to rock, paper or scissors.
 +
In our set of six signaling molecules, humans use IPTG,
 +
aTc and salicylate, and <span class="name">E. coli</span> uses
 +
3OC6-HSL, 3OC12-HSL and AI-2. In each case,
 +
these signaling molecules correspond to rock, paper and scissors respectively.
 +
</p>
 +
 +
<p>
 +
The next step is to design a way to know who wins the RPS game.
 +
That is when the<span class="name"> E. coli</span> judge team comes in!
 +
Each judge has an AND-gate promoter which produces a single output
 +
based on two inputs, human side and<span class="name"> E.coli</span>
 +
side signaling molecules. Since we want the output to be visible,
 +
we use either GFP, RFP or CFP to indicate whether humans win,
 +
lose or it is a tie, respectively.
 +
</p>
 +
 +
<p>
 +
Lastly, we need to make sure <span  class="name">E. coli</span> follows
 +
the rules of the game by synthetizing only one signaling molecule
 +
every time it plays. Importantly, we have to design the opponent
 +
<span class="name">E. coli</span> to be able to choose its signal
 +
randomly for a fair game, because <span class="name">E. coli</span>
 +
will continue to lose if it always produces the same signaling
 +
molecule. In a view of these needs, we designed three randomizers that
 +
satisfy the conditions for the game:Single Colony Isolation, Survival
 +
of One Strain and Conditional Knockout.
 +
<a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/RPS-game/index.htm">(see more...)</a>
 +
</p>
 +
 +
<h2 id="rain"> Make it Rain </h2>
 +
<img src="https://static.igem.org/mediawiki/2011/7/7b/TokyoTech_home_fig3.png" alt="Raining" width="480px" class="fig" />
 +
<p>
 +
Playing RPS with <span class="name">E. coli</span> during summer was fun, but,
 +
even if humans won, joy did not last long since we soon returned to
 +
complaining about the hot weather. As a prize for humans who win in our RPS game,
 +
we designed an <span class="name">E. coli</span> that can make it rain,
 +
making the hot summer more fun and refreshing (let alone applications in agriculture).
 +
To make it rain, we constructed an isoprene synthetizing <span class="name">E. coli</span>.
 +
Photo-oxidized isoprene acts as a condensation nucleus(Leonardo Silva Santos <i>et al</i>.,2006),
 +
which might cause rain, even in very low concentrations.
 +
<a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/making-rain/index.htm">(see more...)</a>
 +
</p>
 +
 +
<h2 id="urea"> Urea Coolers </h2>
 +
<img src="https://static.igem.org/mediawiki/2011/e/ef/Home-urea.png" alt="Urea cooler" width="480px" class="fig" />
 +
<p>
 +
Coolers can be made by adding urea to water, since dissolving urea in water
 +
is an endothermic reaction (-57.8 cal/g). We can make <span class="name">E.coli</span>
 +
synthetize urea just by introducing a gene encoding arginase!
 +
</p>
 +
<p>
 +
To analyze how we obtain even more urea from our <span class="name">E. coli</span>,
 +
we used elementary flux analysis (Schuste <i>et al.</i>, 2000) to identify
 +
 +
metabolic routes that are both stoichiometrically and thermodynamically
 +
feasible for a group of enzymes. Making use of it we can tell which
 +
 +
                substrates and pathways are the best for obtaining
 +
               
 +
                more urea.<a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/Urea-cooler/index.htm">(see more...)</a>
 +
</p>
-
{|align="justify"
+
<h2 id="manabi"> Human Practice </h2>
-
|You can write a background of your team here. Give us a background of your team, the members, etc. Or tell us more about something of your choosing.
+
<img src="https://static.igem.org/mediawiki/2011/2/25/Creating_Perception_1.png" alt="Creating Perception" width="480px" class="fig" />
-
|[[Image:Tokyo_Tech_logo.png|200px|right|frame]]
+
<p>
-
|-
+
We love Synthetic Biology, and to share our passion with other people,
-
|
+
we did educational activities as part of our human practices.  
-
''Tell us more about your projectGive us background. Use this as the abstract of your project. Be descriptive but concise (1-2 paragraphs)''
+
We would like to spread the word about what is made and aimed by synthetic  
-
|[[Image:Tokyo_Tech_team.png|right|frame|Your team picture]]
+
biology and iGEM. To do so, we created the &ldquo;iGEM Card Game&rdquo; and several  
-
|-
+
                posters. We also measured our impact through a survey.
-
|
+
<a href="https://2011.igem.org/Team:Tokyo_Tech/HumanPractice.htm">(see more...)</a>
-
|align="center"|[[Team:Tokyo_Tech | Team Example]]
+
</p>
-
|}
+
-
<!--- The Mission, Experiments --->
+
<!-- ############ End of main contents ############ -->
 +
</div>
 +
<!-- end of main contents -->
 +
</p>
 +
<!-- end of under contents -->
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
<div style="bottom: 0;left: 30; position:fixed; background-color: #000000; opacity:0.8;">
-
!align="center"|[[Team:Tokyo_Tech|Home]]
+
<a onclick="scrollTo(0,0);return false;" onfocus="this.blur();" style="color:#FFFFFF;">Return to Page Top</a>
-
!align="center"|[[Team:Tokyo_Tech/Team|Team]]
+
</div>
-
!align="center"|[https://igem.org/Team.cgi?year=2011&team_name=Tokyo_Tech Official Team Profile]
+
 
-
!align="center"|[[Team:Tokyo_Tech/Project|Project]]
+
<!-- DO NOT WRITE UNDER HERE -->
-
!align="center"|[[Team:Tokyo_Tech/Parts|Parts Submitted to the Registry]]
+
</body>
-
!align="center"|[[Team:Tokyo_Tech/Modeling|Modeling]]
+
</html>
-
!align="center"|[[Team:Tokyo_Tech/Notebook|Notebook]]
+
-
!align="center"|[[Team:Tokyo_Tech/Safety|Safety]]
+
-
!align="center"|[[Team:Tokyo_Tech/Attributions|Attributions]]
+
-
|}
+

Latest revision as of 16:44, 28 October 2011


If you use IE9, please inactivate "Compatibility View". Otherwise, this page will not be displayed correctly.
To turn it OFF, click the button on the right side of the Address bar (if it's blue, it is ON).

iGEM Tokyo Tech 2011 Team

Overview: Cool down in summer with our Rock-Paper-Scissors Game

Project Overview

When summer comes it brings vacations, so students have plenty time to have fun. But summer means hot weather! In light of these circumstances, we designed a game that can be played between E.coli and humans. The winner of the game can get refreshing prizes! Dear students and judges, let us introduce you to the first human-bacteria Rock-Paper-Scissors game! Win and get a rain shower and a “urea cooler”!

Rock-Paper-Scissors (RPS) Game

RPS

So, how to play RPS with a handless bacteria? Instead of hands, we use different signaling molecules corresponding either to rock, paper or scissors. In our set of six signaling molecules, humans use IPTG, aTc and salicylate, and E. coli uses 3OC6-HSL, 3OC12-HSL and AI-2. In each case, these signaling molecules correspond to rock, paper and scissors respectively.

The next step is to design a way to know who wins the RPS game. That is when the E. coli judge team comes in! Each judge has an AND-gate promoter which produces a single output based on two inputs, human side and E.coli side signaling molecules. Since we want the output to be visible, we use either GFP, RFP or CFP to indicate whether humans win, lose or it is a tie, respectively.

Lastly, we need to make sure E. coli follows the rules of the game by synthetizing only one signaling molecule every time it plays. Importantly, we have to design the opponent E. coli to be able to choose its signal randomly for a fair game, because E. coli will continue to lose if it always produces the same signaling molecule. In a view of these needs, we designed three randomizers that satisfy the conditions for the game:Single Colony Isolation, Survival of One Strain and Conditional Knockout. (see more...)

Make it Rain

Raining

Playing RPS with E. coli during summer was fun, but, even if humans won, joy did not last long since we soon returned to complaining about the hot weather. As a prize for humans who win in our RPS game, we designed an E. coli that can make it rain, making the hot summer more fun and refreshing (let alone applications in agriculture). To make it rain, we constructed an isoprene synthetizing E. coli. Photo-oxidized isoprene acts as a condensation nucleus(Leonardo Silva Santos et al.,2006), which might cause rain, even in very low concentrations. (see more...)

Urea Coolers

Urea cooler

Coolers can be made by adding urea to water, since dissolving urea in water is an endothermic reaction (-57.8 cal/g). We can make E.coli synthetize urea just by introducing a gene encoding arginase!

To analyze how we obtain even more urea from our E. coli, we used elementary flux analysis (Schuste et al., 2000) to identify metabolic routes that are both stoichiometrically and thermodynamically feasible for a group of enzymes. Making use of it we can tell which substrates and pathways are the best for obtaining more urea.(see more...)

Human Practice

Creating Perception

We love Synthetic Biology, and to share our passion with other people, we did educational activities as part of our human practices. We would like to spread the word about what is made and aimed by synthetic biology and iGEM. To do so, we created the “iGEM Card Game” and several posters. We also measured our impact through a survey. (see more...)

Return to Page Top