Team:USTC-Software
From 2011.igem.org
(Difference between revisions)
(banner hidden) |
|||
(133 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
- | {{:Team:USTC-Software/ | + | {{:Team:USTC-Software/header}} |
- | + | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | <head> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | < | + | <!-- Javascript--> |
- | < | + | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> |
+ | <script type="text/javascript"> | ||
+ | $(document).ready(function() { | ||
+ | //Set Default State of each portfolio piece | ||
+ | $(".paging").show(); | ||
+ | $(".paging a:first").addClass("active"); | ||
+ | |||
+ | //Get size of images, how many there are, then determin the size of the image reel. | ||
+ | var imageWidth = $(".window").width(); | ||
+ | var imageSum = $(".image_reel img").size(); | ||
+ | var imageReelWidth = imageWidth * imageSum; | ||
+ | |||
+ | //Adjust the image reel to its new size | ||
+ | $(".image_reel").css({'width' : imageReelWidth}); | ||
+ | |||
+ | //Paging + Slider Function | ||
+ | rotate = function(){ | ||
+ | var triggerID = $active.attr("rel") - 1; //Get number of times to slide | ||
+ | var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide | ||
- | + | $(".paging a").removeClass('active'); //Remove all active class | |
- | + | $active.addClass('active'); //Add active class (the $active is declared in the rotateSwitch function) | |
- | + | ||
- | + | //Slider Animation | |
- | + | $(".image_reel").animate({ | |
- | + | left: -image_reelPosition | |
- | + | }, 500 ); | |
- | + | ||
- | } | + | }; |
+ | |||
+ | //Rotation + Timing Event | ||
+ | rotateSwitch = function(){ | ||
+ | play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds | ||
+ | $active = $('.paging a.active').next(); | ||
+ | if ( $active.length === 0) { //If paging reaches the end... | ||
+ | $active = $('.paging a:first'); //go back to first | ||
+ | } | ||
+ | rotate(); //Trigger the paging and slider function | ||
+ | }, 4000); //Timer speed in milliseconds | ||
+ | }; | ||
+ | |||
+ | rotateSwitch(); //Run function on launch | ||
+ | |||
+ | //On Hover | ||
+ | $(".image_reel a").hover(function() { | ||
+ | clearInterval(play); //Stop the rotation | ||
+ | }, function() { | ||
+ | rotateSwitch(); //Resume rotation | ||
+ | }); | ||
+ | |||
+ | //On Click | ||
+ | $(".paging a").click(function() { | ||
+ | $active = $(this); //Activate the clicked paging | ||
+ | //Reset Timer | ||
+ | clearInterval(play); //Stop the rotation | ||
+ | rotate(); //Trigger rotation immediately | ||
+ | rotateSwitch(); // Resume rotation | ||
+ | return false; //Prevent browser jump to link anchor | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
- | |||
- | |||
- | + | </head> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <body> | |
- | + | ||
- | + | ||
- | + | ||
- | + | <div id="content_wrapper"> | |
- | img | + | <div align="center"> |
+ | <table id="rotator_news"> | ||
+ | <tr> | ||
+ | <td id="window_images"> | ||
+ | <div class="main_view"> | ||
+ | <div class="window"> | ||
+ | <div class="image_reel"> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/b/bf/USTC_Software_L001.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/d/da/USTC_Software_L002.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/e/e6/USTC_Software_L003.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/9/96/USTC_Software_L004.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/6/60/USTC_Software_L005.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/2/22/USTC_Software_L006.png" style=" margin-right:0px; width:650px; height:400px" alt="" /> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/b/ba/USTC_Software_L007.png" style=" margin-right:0px; width:640px; height:400px" alt="" /> | ||
+ | </div> | ||
+ | </div> | ||
+ | <div class="paging"> | ||
+ | <a href="#" rel="1">1</a> | ||
+ | <a href="#" rel="2">2</a> | ||
+ | <a href="#" rel="3">3</a> | ||
+ | <a href="#" rel="4">4</a> | ||
+ | <a href="#" rel="5">5</a> | ||
+ | <a href="#" rel="6">6</a> | ||
+ | <a href="#" rel="7">7</a> | ||
+ | |||
+ | </div> | ||
+ | </div> <!-- close "main_view" div --> | ||
+ | </td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | </div> | ||
+ | <br/><br/> | ||
- | . | + | <h1>Lachesis</h1> |
+ | <!-- Content wrap --> | ||
+ | <div> | ||
+ | |||
+ | <div class="content_section"> | ||
+ | |||
+ | <div class="intro_box margin_r10"> | ||
+ | |||
+ | <h3>Team</h3> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/7/78/USTC_Software_image_02.jpg" alt="product" /> | ||
+ | |||
+ | <p class="intro">Our team is formed of a group of diligent students coming from various departments of USTC. In the School of Life Sciences, we devoted our perspirations to this project for nearly a year. <div class="button_01"> | ||
+ | <a href="https://2011.igem.org/Team:USTC-Software/team">Details</a> </div> </p> </div> | ||
+ | <div class="intro_box margin_r10"> | ||
+ | <h3>Models</h3> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/c/c8/USTC_Software_image_03.jpg" alt="product" /> | ||
+ | <p class="intro">Biological reaction networks, even small ones, contain a lot of species and reactions and, thus, are hard to build by hand. Our rule-based modeling approach aims at freeing human from such labor. | ||
- | . | + | <div class="button_01"> |
- | .cleaner_h40 | + | <a href="https://2011.igem.org/Team:USTC-Software/documents">Details</a> </div> </p> </div> |
+ | |||
+ | <div class="intro_box margin_r10"> | ||
+ | <h3>Human practice</h3> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/3/3c/USTC_Software_image_04.jpg" alt="product" /> | ||
+ | |||
+ | <p class="intro">We conducted a survey, during the National Science Week, to discover USTC students' opinion on Synthetic | ||
+ | Biology.<div class="button_01"> <a href="https://2011.igem.org/Team:USTC-Software/human practice">Details</a> </div> </p> </div> | ||
+ | |||
+ | <div class="cleaner"></div> | ||
+ | </div> | ||
+ | |||
+ | <div class="cleaner_h40"></div> | ||
+ | <div class="content_section"> | ||
+ | |||
+ | <h2>Project</h2> | ||
+ | |||
+ | <img src="https://static.igem.org/mediawiki/2011/f/fd/USTC_Software_image_05.jpg" alt="image" width="363" class="fl_image" /> | ||
+ | |||
+ | <p> | ||
+ | <span lang="EN-US" xml:lang="EN-US">Our project this year is named Lachesis, which consists of the following</span> | ||
+ | <br/> | ||
+ | |||
+ | <div><span lang="EN-US" xml:lang="EN-US"> | ||
+ | 1.Automatic generation of biological reaction network simply from biobrick assemblys.<br/> | ||
+ | 2.Data exchange,Reaction network visualization.<br/> | ||
+ | 3.Automatic parameter fitting of a mathematical model for a desired behavior, according to experiment data or hand drawn curves using evolution algorithm.<br/> | ||
+ | 4.Evaluation of the workablility or robustness of a biological reaction network using pca and entropy.<br/> | ||
+ | </p> | ||
+ | </span> | ||
+ | </div> | ||
- | . | + | <p class="em_text"><p class="intro"> <div class="button_01"> <a href="https://2011.igem.org/Team:USTC-Software/project">Details</a> </div> </p> </p> |
+ | |||
+ | </div> | ||
+ | <br/> | ||
+ | |||
+ | <h2>Sponsers</h2> | ||
+ | <table width="917" border="0"> | ||
+ | <tr> | ||
+ | <td width="180"><img src="https://static.igem.org/mediawiki/2011/5/5b/USTC_Software_IF_LOGO_2.jpg" width="180" /></td> | ||
+ | <td width="867"> | ||
+ | <table width="724" height="172" border="0"> | ||
+ | <tr> | ||
+ | <td width="227"><img src="https://static.igem.org/mediawiki/2011/1/11/USTC_Software_TAO_LOGO.png" width="238" height="83"/></td> | ||
+ | <td width="234"><img src="https://static.igem.org/mediawiki/2011/d/d3/USTC_Software_sols.png" width="238" height="83"/></td> | ||
+ | <td width="249"><img src="https://static.igem.org/mediawiki/2011/e/ef/USTC_Software_ADGE_LOGO.png" width="238" height="83"/></td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td height="86"><img src="https://static.igem.org/mediawiki/2011/1/18/USTC_Software_information.png" width="238" height="83"/></td> | ||
+ | <td><img src="https://static.igem.org/mediawiki/2011/2/25/USTC_Software_chemistry.jpg" width="238" height="83"/></td> | ||
+ | <td><img src="https://static.igem.org/mediawiki/2011/c/cf/USTC_Software_math.jpg" width="238" height="83"/></td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | </td> | ||
+ | </tr> | ||
+ | </table> | ||
- | |||
- | |||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | / | + | <br/> |
+ | |||
+ | <br/> | ||
- | + | <h2>Vistor</h2> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <div id="clustrmaps-widget"></div><script type="text/javascript">var _clustrmaps = {'url' : 'https://2011.igem.org/Team:USTC-Software', 'user' : 930921, 'server' : '4', 'id' : 'clustrmaps-widget', 'version' : 1, 'date' : '2011-10-02', 'lang' : 'zh', 'corners' : 'square' };(function (){ var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = 'http://www4.clustrmaps.com/counter/map.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);})();</script><noscript><a href="http://www4.clustrmaps.com/user/e30e3469"><img src="http://www4.clustrmaps.com/stats/maps-no_clusters/2011.igem.org-Team-USTC-Software-thumb.jpg" alt="Locations of visitors to this page" /></a></noscript> | |
- | + | ||
- | + | ||
- | } | + | |
- | + | </div> | |
- | + | <!-- end of content --> | |
- | + | ||
- | + | <div class="cleaner"></div> | |
- | + | ||
- | + | <br/> <br/> | |
- | + | ||
- | + | </div> | |
+ | |||
+ | <div id="content_wrapper_bottom"></div> <!-- end of content_wrapper --> | ||
- | + | <script type="text/javascript"> | |
- | + | ||
- | + | ||
- | + | ||
- | + | var _gaq = _gaq || []; | |
- | + | _gaq.push(['_setAccount', 'UA-25857438-1']); | |
- | + | _gaq.push(['_trackPageview']); | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | / | + | (function() { |
+ | var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | ||
+ | ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | ||
+ | var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | ||
+ | })(); | ||
- | / | + | </script> |
+ | |||
- | + | <div id="mfooter"> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <ul class="mfooter_menu"> | |
- | + | <li><a href="#" target="_parent">Home</a></li> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <li><a href="#" | + | |
<li><a href="https://2011.igem.org/Team:USTC-Software/project" target="_parent">Project</a></li> | <li><a href="https://2011.igem.org/Team:USTC-Software/project" target="_parent">Project</a></li> | ||
- | |||
<li><a href="https://2011.igem.org/Team:USTC-Software/notebook" target="_parent">Notebook</a></li> | <li><a href="https://2011.igem.org/Team:USTC-Software/notebook" target="_parent">Notebook</a></li> | ||
- | <li><a href="https://2011.igem.org/Team:USTC-Software/ | + | <li><a href="https://2011.igem.org/Team:USTC-Software/team" class="current">Team</a></li> |
- | <li | + | <li><a href="https://2011.igem.org/Team:USTC-Software/human practice" target="_parent">Human practice</a></li> |
- | + | <li class="last_menu"><a href="https://2011.igem.org/Team:USTC-Software/download" target="_parent">Download</a></li> | |
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | </ul> | |
- | + | <b> Welcome to   <a href="http://en.ustc.edu.cn/" target="_blank">University of Science and Technology of China</a> ! </b> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <div id="to_org_box"><a href="https://2011.igem.org/Main_Page"><img src="https://static.igem.org/mediawiki/2011/8/88/USTC_Software_back_to_igem.png" width="69" height="70"alt="Go back to igem.org"/></a> | |
- | + | </div> | |
- | + | ||
- | + | <div id="totop_box"> | |
- | + | <a href="#top"><img src="https://static.igem.org/mediawiki/2011/e/eb/USTC_Software_top_icon.gif" width="76" height="72"alt="Go back to Top"/></a> | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <div id=" | + | |
- | + | ||
- | + | ||
- | </div> | + | |
- | + | ||
- | + | ||
- | <!-- end of | + | </div> <!-- end of mfooter --> |
</body> | </body> | ||
</html> | </html> |
Latest revision as of 12:42, 27 October 2011
USTC-Software
Lachesis
Team
Our team is formed of a group of diligent students coming from various departments of USTC. In the School of Life Sciences, we devoted our perspirations to this project for nearly a year.
Models
Biological reaction networks, even small ones, contain a lot of species and reactions and, thus, are hard to build by hand. Our rule-based modeling approach aims at freeing human from such labor.
Human practice
We conducted a survey, during the National Science Week, to discover USTC students' opinion on Synthetic Biology.
Project
Our project this year is named Lachesis, which consists of the following
1.Automatic generation of biological reaction network simply from biobrick assemblys.
2.Data exchange,Reaction network visualization.
3.Automatic parameter fitting of a mathematical model for a desired behavior, according to experiment data or hand drawn curves using evolution algorithm.
4.Evaluation of the workablility or robustness of a biological reaction network using pca and entropy.
2.Data exchange,Reaction network visualization.
3.Automatic parameter fitting of a mathematical model for a desired behavior, according to experiment data or hand drawn curves using evolution algorithm.
4.Evaluation of the workablility or robustness of a biological reaction network using pca and entropy.
Sponsers
|