Team:USTC-Software
From 2011.igem.org
(Difference between revisions)
Gamegame151 (Talk | contribs) |
|||
(41 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"> | |
+ | <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> | </script> | ||
- | |||
- | |||
+ | </head> | ||
- | + | <body> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
<div id="content_wrapper"> | <div id="content_wrapper"> | ||
- | < | + | <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> | <h1>Lachesis</h1> | ||
Line 139: | Line 114: | ||
<div> | <div> | ||
- | + | <div class="content_section"> | |
<div class="intro_box margin_r10"> | <div class="intro_box margin_r10"> | ||
Line 146: | Line 121: | ||
<img src="https://static.igem.org/mediawiki/2011/7/78/USTC_Software_image_02.jpg" alt="product" /> | <img src="https://static.igem.org/mediawiki/2011/7/78/USTC_Software_image_02.jpg" alt="product" /> | ||
- | <p class="intro"> | + | <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"> | <div class="intro_box margin_r10"> | ||
- | <h3> | + | <h3>Models</h3> |
<img src="https://static.igem.org/mediawiki/2011/c/c8/USTC_Software_image_03.jpg" alt="product" /> | <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. | |
- | <p class="intro"> | + | |
- | + | <div class="button_01"> | |
+ | <a href="https://2011.igem.org/Team:USTC-Software/documents">Details</a> </div> </p> </div> | ||
<div class="intro_box margin_r10"> | <div class="intro_box margin_r10"> | ||
Line 159: | Line 135: | ||
<img src="https://static.igem.org/mediawiki/2011/3/3c/USTC_Software_image_04.jpg" alt="product" /> | <img src="https://static.igem.org/mediawiki/2011/3/3c/USTC_Software_image_04.jpg" alt="product" /> | ||
- | <p class="intro"> | + | <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 class="cleaner"></div> | ||
- | + | </div> | |
<div class="cleaner_h40"></div> | <div class="cleaner_h40"></div> | ||
- | + | <div class="content_section"> | |
<h2>Project</h2> | <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"> | + | <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> | <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> | |
- | <tr> | + | <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/> | |
- | + | ||
- | + | ||
- | + | ||
- | </div> | + | <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 --> | <!-- end of content --> | ||
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
|