Team:XMU Software

From 2013.igem.org

(Difference between revisions)
 
(18 intermediate revisions not shown)
Line 8: Line 8:
</head>
</head>
<body>
<body>
 +
<div id="xmu_body">
<div id="xmu_body">
-
<div id="xmu_software">
+
<div id="home_s1">
 +
<canvas id="myCanvas" width="2000" height="1080" style="border:1px solid #c3c3c3;"></canvas>
 +
</div>
 +
<div id="xmu_software">
<div id="xmu_software_right_matrix"></div>
<div id="xmu_software_right_matrix"></div>
-
<div id="Index">
+
 
-
<div id="home_s1">
+
-
<canvas id="myCanvas" width="1366px" height="660px" style="border:1px solid #c3c3c3;"></canvas>
+
 
-
</div>
+
<div id="home_s2">
<div id="home_s2">
<div class="teamname">XMU-SOFTWARE</div>
<div class="teamname">XMU-SOFTWARE</div>
Line 22: Line 25:
<div id="home_title">
<div id="home_title">
<ul id="jsddm">
<ul id="jsddm">
-
<li><div onClick="home();"><a href="https://2013.igem.org/Team:XMU_Software">Home</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software">Home</a></li>
-
<li><div onClick="team();"><a href="https://2013.igem.org/Team:XMU_Software/Team">Team</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software/Team">Team</a></li>
-
<li><div onClick="project();"><a href="https://2013.igem.org/Team:XMU_Software/Project">Project</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software/Project/promoter">Project</a></li>
-
<li><div onClick="requirements();"><a href="https://2013.igem.org/Team:XMU_Software/Requirements">Requirements</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software/Requirements">Requirements</a></li>
-
<li><div onClick="hp();"><a href="https://2013.igem.org/Team:XMU_Software/Outreach">Outreach</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software/Outreach">Outreach</a></li>
-
<li><div onClick="notebook();"><a href="https://2013.igem.org/Team:XMU_Software/Notebook">Notebook</a></div></li>
+
<li><a href="https://2013.igem.org/Team:XMU_Software/Notebook">Notebook</a></li>
-
</ul>
+
</ul>
</div>
</div>
<div class="home_s3l1"></div>
<div class="home_s3l1"></div>
Line 35: Line 38:
<div class="home_s4t1">We have designed <span class="home_s4t2">2</span> software tools</div></br></br>
<div class="home_s4t1">We have designed <span class="home_s4t2">2</span> software tools</div></br></br>
<div class="home_s4t3">Brick Worker</div>
<div class="home_s4t3">Brick Worker</div>
-
<div class="home_s4t4">Brick Woker is designed to analyze and  predict the strength of various biobricks, i.e. promoters, RBS, protein coding sequence and terminators. It uses Position Weight Matrix method to recognize the key determinants of promoter and RBS sequences, predict their strengths and optimizes the protein coding sequences by  codon usage bias.Brick Worker is the first software to give an all-round and reliable evaluation of all biobricks, especially ,promoters, and represents a major step towards computational prediction and regulation of gene expression.</div></br></br>
+
<div class="home_s4t4">Brick Worker is designed to analyze and  predict the strength of various biobricks, i.e. promoters, RBS, protein coding sequence and terminators. It uses Position Weight Matrix method to recognize the key determinants of promoter and RBS sequences, predict their strengths and optimizes the protein coding sequences by  codon usage bias. Brick Worker is the first software to give an all-round and reliable evaluation of all biobricks, especially, promoters, and represents a major step towards computational prediction and regulation of gene expression.</div></br></br>
<div class="home_s4t3">E' NOTE</div>
<div class="home_s4t3">E' NOTE</div>
-
<div class="home_s4t4">It is a web application serveing as assistant for experiments. It's useful function such as experiments recording and experimental template customization make experimental process easier and more enjoyable.</div>
+
<div class="home_s4t4">
-
</div>
+
E’ NOTE is a web application for experiments recording.
 +
<p>It provides a series of intelligent templates for the users which are linked to the plasmid library constructed by the users and can do some simple calculation.Human-orientated data export port facilitates the users to transfer the experiment notes from E’NOTE to their wiki.Integration of web applications designed by the past iGEM software teams and tools provided online helps the users get access to their desirable software easily.</p>
 +
</div>
 +
</div>
</div>
</div>
</div>
Line 44: Line 50:
<script>
<script>
//定位1366*768
//定位1366*768
 +
var x = window.innerWidth-1366;
var x = window.innerWidth-1366;
if(x>0){
if(x>0){
Line 52: Line 59:
$(".right-menu").get(0).style.right= x+"px";
$(".right-menu").get(0).style.right= x+"px";
$(".left-menu").get(0).style.left= x+"px";
$(".left-menu").get(0).style.left= x+"px";
 +
 +
}
}
else{
else{
Line 59: Line 68:
$(".right-menu").get(0).style.right=x+"px";
$(".right-menu").get(0).style.right=x+"px";
$(".left-menu").get(0).style.left="0px";
$(".left-menu").get(0).style.left="0px";
 +
 +
}
}
Line 88: Line 99:
var c=document.getElementById("myCanvas");
var c=document.getElementById("myCanvas");
var cxt=c.getContext("2d");
var cxt=c.getContext("2d");
-
var grd=cxt.createLinearGradient(20,10,1366,660);
+
var grd=cxt.createLinearGradient(20,10,2000,1080);
grd.addColorStop(0,"#becbad");
grd.addColorStop(0,"#becbad");
grd.addColorStop(0.5,"#e4d7aa");
grd.addColorStop(0.5,"#e4d7aa");
grd.addColorStop(1,"#becbad");
grd.addColorStop(1,"#becbad");
cxt.fillStyle=grd;
cxt.fillStyle=grd;
-
cxt.fillRect(0,0,1366,660);
+
cxt.fillRect(0,0,2000,2000);
</script>
</script>
 +
<style>
 +
#xmu_body{
 +
overflow-x:hidden;
 +
overflow-y:hidden;
 +
 +
}
 +
</style>
</body>
</body>
</html>
</html>

Latest revision as of 02:55, 29 October 2013

<!DOCTYPE HTML>

XMU-SOFTWARE
Xiamen University
We have designed 2 software tools


Brick Worker
Brick Worker is designed to analyze and predict the strength of various biobricks, i.e. promoters, RBS, protein coding sequence and terminators. It uses Position Weight Matrix method to recognize the key determinants of promoter and RBS sequences, predict their strengths and optimizes the protein coding sequences by codon usage bias. Brick Worker is the first software to give an all-round and reliable evaluation of all biobricks, especially, promoters, and represents a major step towards computational prediction and regulation of gene expression.


E' NOTE
E’ NOTE is a web application for experiments recording.

It provides a series of intelligent templates for the users which are linked to the plasmid library constructed by the users and can do some simple calculation.Human-orientated data export port facilitates the users to transfer the experiment notes from E’NOTE to their wiki.Integration of web applications designed by the past iGEM software teams and tools provided online helps the users get access to their desirable software easily.