Team:Gifu

From 2014.igem.org

(Difference between revisions)
 
(647 intermediate revisions not shown)
Line 1: Line 1:
-
{{CSS/Main}}
+
{{:CSS/gifu/main}}
 +
{{:CSS/gifu/home}}
<html>
<html>
 +
<head>
 +
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script></script>
 +
</head>
 +
<body>
 +
<div id="uroboros">
 +
<img id="boros" src="https://static.igem.org/mediawiki/2014/0/02/Roboros.png"></img>
 +
</div>
 +
<noscript>
 +
<p id="kouzityuu" style="color:white">
 +
Sorry... We use Javascript.</p>
 +
</noscript>
 +
<div id="base">
 +
<img id="rail" src="https://static.igem.org/mediawiki/2014/f/f6/Circular_rna.png"></img>
-
<!--main content -->
+
<a id="menu1" >
-
<table width="70%" align="center">
+
<img src="https://static.igem.org/mediawiki/2014/0/08/Gifu_renew2_Project_.png"  
 +
  onmouseover="javascript:stopmove1()"
 +
  onmouseout="javascript:startmove()"
 +
></img></a>
 +
<a id="menu2"><img src="https://static.igem.org/mediawiki/2014/2/26/Gifu_renew2_NOTE.png"
 +
  onmouseover="javascript:stopmove2()"
 +
  onmouseout="javascript:startmove()"
 +
>
 +
<a id="menu3"><img src="https://static.igem.org/mediawiki/2014/1/13/Gifu_renew2_RESULT.png"
 +
  onmouseover="javascript:stopmove3()"
 +
  onmouseout="javascript:startmove()"
 +
></img></a>
 +
<a id="menu4"><img src="https://static.igem.org/mediawiki/2014/5/5f/Gifu_renew2_MORE.png"
 +
  onmouseover="javascript:stopmove4()"
 +
  onmouseout="javascript:startmove()"
 +
></img></a>
 +
<a id="menu5"><img src="https://static.igem.org/mediawiki/2014/e/e0/Gifu_renew2_TEAM.png"
 +
  onmouseover="javascript:stopmove5()"
 +
  onmouseout="javascript:startmove()"
 +
></img></a>
 +
<img id="fukidasi1" src="https://static.igem.org/mediawiki/2014/9/9b/CmRNA_moji2.png" usemap="#projectjump"></img>
 +
<img id="fukidasi2" src="https://static.igem.org/mediawiki/2014/5/5b/Note_moji2.png" usemap="#notejump"></img>
 +
<img id="fukidasi3" src="https://static.igem.org/mediawiki/2014/4/40/Gifu_result_balloon.png" usemap="#resultjump"></img>
 +
<img id="fukidasi4" src="https://static.igem.org/mediawiki/2014/7/71/Gifu_more_balloon.png" usemap="#morejump"></img>
 +
<img id="fukidasi5" src="https://static.igem.org/mediawiki/2014/c/ce/Team_moji2.png" usemap="#teamjump" ></img>
 +
<map name="projectjump">
 +
<area href="https://2014.igem.org/Team:Gifu/Projects/Circular%26RNA" shape="rect" coords="94,136,320,271" alt="project">
 +
</map>
 +
<map name="notejump">
 +
<area href="https://2014.igem.org/Team:Gifu/Protocol" shape="rect" coords="41,64,169,88" alt="protocols">
 +
<area href="https://2014.igem.org/Team:Gifu/Notebook" shape="rect" coords="40,162,152,188" alt="calender">
 +
</map>
 +
<map name="resultjump">
 +
<area href="https://2014.igem.org/Team:Gifu/Parts" shape="rect" coords="70,78,137,99" alt="parts">
 +
<area href="https://2014.igem.org/Team:Gifu/Modeling" shape="rect" coords="86,126,196,146" alt="modeling">
 +
</map>
 +
<map name="morejump">
 +
<area href="https://2014.igem.org/Gifu/discussion-safety" shape="rect" coords="126,45,208,66" alt="safety">
 +
<area href="https://2014.igem.org/Team:Gifu/Judging_Form" shape="rect" coords="22,102,191,127" alt="judging form">
 +
<area href="https://2014.igem.org/Team:Gifu/Human_Practice" shape="rect" coords="29,106,258,181" alt="Policy&amp; Practice">
 +
</map>
 +
<map name="teamjump">
 +
<area href="https://2014.igem.org/Team:Gifu/Members%26Attributions" shape="rect" coords="65,51,267,99" alt="official">
 +
<area href="https://2014.igem.org/Gifu/official_team_profile" shape="rect" coords="62,127,261,174" alt="member">
 +
</map>
 +
<img id="stopme" src="https://static.igem.org/mediawiki/2014/5/53/Pleasestopme.png"></img>
 +
<div id="point"><p id="rib"></p>
 +
<img id="ribosome" src="https://static.igem.org/mediawiki/2014/5/5f/Gifu_ribosome_renew.png"></img>
 +
</div>
 +
</div>
 +
<script type="text/javascript">
 +
<!--
 +
var r=280;
 +
var rad=0;
 +
var x;
 +
var y;
 +
var circle =document.getElementById("point") ;
 +
var k=90;
 +
var m;
 +
var w;
 +
var t;
-
<style type="text/css">
+
function spin(){
-
<!--
+
AAA=setInterval(function(){
-
body
+
if(rad==360){rad=0;}
-
    {
+
else{rad+=2};
-
    margin:0px;        
+
x=r*Math.cos(Math.PI/180*rad);
-
    padding:0px;        
+
y=r*Math.sin(Math.PI/180*rad);
-
    text-align:center;  
+
circle.style.top=y+180+"px";
-
    }
+
circle.style.left=x+390+"px";
-
#main
+
k+=2;
-
    {
+
if(rad==360){k=90};
-
    margin-left:auto;  
+
circle.style.transform="rotate("+k+"deg)";
-
    margin-right:auto;  
+
},7);
-
    text-align:left;    
+
};
-
    width:70%;       
+
-
    }
+
-
-->
+
function catching(){
-
</style>
+
BBB=setInterval(function(){
 +
rad+=2;
 +
if(rad==m){rad-=2,k-=2};
 +
if(rad==360){rad=0};
 +
x=r*Math.cos(Math.PI/180*rad);
 +
y=r*Math.sin(Math.PI/180*rad);
 +
circle.style.top=y+180+"px";
 +
circle.style.left=x+390+"px";
 +
if(rad==m){k-=2;}
 +
else{k+=2;};
 +
if(rad==360){k=90};
 +
circle.style.transform="rotate("+k+"deg)";
 +
},7);
 +
};
-
<!--welcome box -->
+
function stopmove1(){
-
<tr>
+
clearInterval(AAA);
-
<td style="border:1px solid black;" colspan="3" align="center" height="150px" bgColor=#008080>
+
m=270;
-
<h1 style="color:#ccffcc">WELCOME TO iGEM 2014! </h1>
+
catching();
-
<p style="color:#330000">Your team has been approved and you are ready to start the iGEM season!
+
};
-
<br>On this page you can document your project, introduce your team members, document your progress <br> and share your iGEM experience with the rest of the world! </p>
+
-
<br>
+
-
<p style="color:#E7E7E7"> <a href="https://2014.igem.org/wiki/index.php?title=Team:Gifu&action=edit"style="color:#FFFFFF"> Click here  to edit this page!</a> </p>
+
-
</td>
+
-
</tr>
+
-
<tr> <td colspan="3"  height="5px"> </td></tr>
+
function stopmove2(){
-
<!-- end welcome box -->
+
clearInterval(AAA);
-
<tr>
+
m=342;
 +
catching();
 +
};
-
<!--navigation menu -->
+
function stopmove3(){
-
<td align="center" colspan="3">
+
clearInterval(AAA);
 +
m=54;
 +
catching();
 +
};
-
<table  width="100%">
+
function stopmove4(){
-
<tr heigth="15px"></tr>
+
clearInterval(AAA);
-
<tr heigth="75px">
+
m=126;
 +
catching();
 +
};
 +
function stopmove5(){
 +
clearInterval(AAA);
 +
m=198;
 +
catching();
 +
};
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc> 
+
function startmove(){
-
<a href="https://2014.igem.org/Team:Gifu"style="color:#330000">Home </a> </td>
+
clearInterval(BBB);
 +
spin();
 +
};
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
 
-
<a href="https://2014.igem.org/Team:Gifu/Team"style="color:#330000"> Team </a> </td>
 
-
<td style="border:1px solid black;" align="center"  height ="45px"  onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
+
function sakujo(){
-
<a href="https://igem.org/Team.cgi?year=2014&team_name=Gifu"style="color:#330000"> Official Team Profile </a></td>
+
setTimeout(function(){
 +
$("#rib").css("visibility","hidden");
 +
},3000);
 +
};
-
<td style="border:1px solid black" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc> 
+
$(function(){
-
<a href="https://2014.igem.org/Team:Gifu/Project"style="color:#330000"> Project</a></td>
+
$("#menu1").mouseover(
 +
  function(){
 +
  $("#stopme").css("visibility","hidden")
 +
  $("#fukidasi1").css("visibility","visible")
 +
  $("#fukidasi2").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","hidden")
 +
});
 +
}); 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
+
$(function(){
-
<a href="https://2014.igem.org/Team:Gifu/Parts"style="color:#330000"> Parts</a></td>
+
$("#menu2").mouseover(
 +
  function(){
 +
  $("#stopme").css("visibility","hidden")
 +
  $("#fukidasi2").css("visibility","visible")
 +
  $("#fukidasi1").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","hidden")
 +
});
 +
}); 
 +
 
 +
$(function(){
 +
$("#menu3").mouseover(
 +
  function(){
 +
  $("#stopme").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","visible")
 +
  $("#fukidasi1").css("visibility","hidden")
 +
  $("#fukidasi2").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","hidden")
 +
});
 +
}); 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
+
$(function(){
-
<a href="https://2014.igem.org/Team:Gifu/Modeling"style="color:#330000"> Modeling</a></td>
+
$("#menu4").mouseover(
 +
  function(){
 +
  $("#stopme").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","visible")
 +
  $("#fukidasi1").css("visibility","hidden")
 +
  $("#fukidasi2").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","hidden")
 +
});
 +
}); 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc> 
+
$(function(){
-
<a href="https://2014.igem.org/Team:Gifu/Notebook"style="color:#330000"> Notebook</a></td>
+
$("#menu5").mouseover(
 +
  function(){
 +
  $("#stopme").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","visible")
 +
  $("#fukidasi1").css("visibility","hidden")
 +
  $("#fukidasi2").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","hidden")
 +
});
 +
}); 
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
+
$(function(){
-
<a href="https://2014.igem.org/Team:Gifu/Safety"style=" color:#330000"> Safety </a></td>
+
$("#rail").mouseout(
 +
  function(){
 +
  $("#stopme").css("visibility","visible")
 +
  $("#fukidasi1").css("visibility","hidden")
 +
  $("#fukidasi2").css("visibility","hidden")
 +
  $("#fukidasi3").css("visibility","hidden")
 +
  $("#fukidasi4").css("visibility","hidden")
 +
  $("#fukidasi5").css("visibility","hidden")
 +
});
 +
});
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#00ffcc'" onMouseOut="this.bgColor='#ccffcc'" bgColor=#ccffcc>
 
-
<a href="https://2014.igem.org/Team:Gifu/Attributions"style="color:#330000"> Attributions </a></td>
 
 +
$(document).ready(function () {
 +
spin()
 +
});
-
<td align ="center"> <a href="https://2014.igem.org/Main_Page"> <img src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="55px"></a> </td>
 
-
</tr>
 
-
</table>
 
 +
//-->
 +
</script>
 +
<p id="space">
 +
</p>
-
 
+
</body>
-
<!--end navigation menu -->
+
</html>
-
</tr>
+
-
 
+
-
 
+
-
</tr>
+
-
+
-
 
+
-
 
+
-
 
+
-
 
+
-
</td>
+
-
 
+
-
<tr> <td colspan="3"  height="15px"> </td></tr>
+
-
<tr><td bgColor="#e7e7e7" colspan="3" height="1px"> </tr>
+
-
<tr> <td colspan="3"  height="5px"> </td></tr>
+
-
 
+
-
 
+
-
<tr>
+
-
  <td><h2>Theme of our project</h2></td>
+
-
</tr>
+
-
</table>
+
-
 
+
-
<div id="main">
+
-
<ol type="1">
+
-
  <li>
+
-
    <p>Transform new year's card to rice cake
+
-
    (make cellulose resolve and reconstruct it to synthesize amylopectin)
+
-
    </p>
+
-
  </li>
+
-
  <li>
+
-
    <p>RNA shaped like a ring / ring-shaped RNA
+
-
    (mass-produce protein by ring-shaped RNA)
+
-
    </p>
+
-
  </li>
+
-
</ol>
+
-
</div>
+
-
 
+
-
 
+
-
<table width="70%" align="center">
+
-
<tr>
+
-
  <td><h2>Description</h2></td>
+
-
</tr>
+
-
</table>
+
-
 
+
-
 
+
-
 
+
-
 
+
-
 
+
-
<div id="main">
+
-
<ol type="1">
+
-
  <li>
+
-
    <p>Today paper is used in quantity every day and will be waste after use.
+
-
    In Japan, for example, they send new year's card to relations, friends and acquaintances every year.
+
-
    So some cards are thrown away when it is written incorrectly, stained or sent from disagreeable person.
+
-
    It is a sheer waste to throw away many cards, so it is great idea that we transform card into MOCHI, tranditional Japanese food made from rice and composed of amylopectin.
+
-
    Paper contains cellulose, and both amylopectin and cellulose are polyglucose.
+
-
    Why we can't the transformation?
+
-
    </p>
+
-
    <p>
+
-
    We genetically modify Escherichia coli and make 2 type of function. One of the function is synthesis of cellulase, which is enzyme analyzes cellulose into glucose. Another is synthesis of amylopectin synthetic enzyme. We use them to analyze cellulose (it compose new year’s card) and synthesize amylopectin (it is main ingredient of MOCHI). In 2008, the iGEM team of the University of Edinburgh studied reducing cellulose to glucose. We refer to this study and improve it to reduce cellulose. On the other hand we introduce gene coding amylopectin synthetic enzyme from Oryza sativa into E.coli to synthesize amylopectin in body of E.coli. In fact, E.coli have a function to synthesize glycogen from glucose in natural. So we use some parts of this function and remove some of them to realize the efficient transformation.
+
-
    </p>
+
-
  </li>
+
-
  <li>
+
-
    <p>In vivo, proteins are synthesized in transcription and translation.
+
-
    Generally, mRNA is single-strand RNA, starting translation by binding ribosome on initiation codon, and ending by separating ribosome from mRNA.
+
-
    In this study, we aim to build the method of synthesizing long-chain, massive proteins and to improve translation efficiency.
+
-
    That is, allowing ribosomes to have a semi-permanent translation mechanism by producing circular mRNA and causing a defect of termination codon.
+
-
    To cyclize mRNA, we can use a splicing mechanism of T4 phage.
+
-
    Splicing is a mechanism removing circular introns which don't code for proteins and joining in exons which code for ones.
+
-
    It occurs after transcription.
+
-
    Splicing is catalyzed by several base sequences of the ends of introns as a ribozyme, being subjected to nucleophilic attack from introns to exons.
+
-
    So we will introduce the plasmids which place the sequence of the end of introns as a splicing ribozyme on the end of a gene coding for proteins into E.coli, and cyclize mRNA for
+
-
    synthesis of long-chain, massive proteins.
+
-
    </p>
+
-
  </li>
+
-
</ol>
+
-
 
+
-
</div>
+

Latest revision as of 07:21, 5 September 2015

factory1