Team:USTC-Software

From 2011.igem.org

(Difference between revisions)
(Prototype team page)
 
(136 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 *** -->
+
__NOTOC__
 +
{{:Team:USTC-Software/header}}
 +
<html xmlns="http://www.w3.org/1999/xhtml">
 +
<head>
-
<html>
+
 
-
<div id="box" style="width: 700px; margin-left: 137px; padding: 5px; border: 3px solid #000; background-color: #fe2b33;">
+
<!-- Javascript-->
-
<div id="template" style="text-align: center; font-weight: bold; font-size: large; color: #f6f6f6; padding: 5px;">
+
 
-
This is a template page. READ THESE INSTRUCTIONS.
+
<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">
 +
 
 +
<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>
</div>
-
<div id="instructions" style="text-align: center; font-weight: normal; font-size: small; color: #f6f6f6; padding: 5px;">
+
<br/><br/>
-
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>.
+
 
 +
        <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">
 +
<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>
</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.
+
<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>
-
</div>
+
   
-
</html>
+
    <div id="content_wrapper_bottom"></div> <!-- end of content_wrapper -->
-
<!-- *** End of the alert box *** -->
+
<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);
 +
  })();
-
{|align="justify"
+
</script>
-
|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.
+
   
-
|[[Image:USTC-Software_logo.png|200px|right|frame]]
+
-
|-
+
-
|
+
-
''Tell us more about your project.  Give us background.  Use this as the abstract of your project.  Be descriptive but concise (1-2 paragraphs)''
+
-
|[[Image:USTC-Software_team.png|right|frame|Your team picture]]
+
-
|-
+
-
|
+
-
|align="center"|[[Team:USTC-Software | Team Example]]
+
-
|}
+
-
<!--- The Mission, Experiments --->
+
<div id="mfooter">
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
  <ul class="mfooter_menu">
-
!align="center"|[[Team:USTC-Software|Home]]
+
                <li><a href="#" target="_parent">Home</a></li>
-
!align="center"|[[Team:USTC-Software/Team|Team]]
+
                <li><a href="https://2011.igem.org/Team:USTC-Software/project" target="_parent">Project</a></li>
-
!align="center"|[https://igem.org/Team.cgi?year=2011&team_name=USTC-Software Official Team Profile]
+
                <li><a href="https://2011.igem.org/Team:USTC-Software/notebook" target="_parent">Notebook</a></li>
-
!align="center"|[[Team:USTC-Software/Project|Project]]
+
                <li><a href="https://2011.igem.org/Team:USTC-Software/team" class="current">Team</a></li>
-
!align="center"|[[Team:USTC-Software/Parts|Parts Submitted to the Registry]]
+
                <li><a href="https://2011.igem.org/Team:USTC-Software/human practice" target="_parent">Human practice</a></li>
-
!align="center"|[[Team:USTC-Software/Modeling|Modeling]]
+
                <li  class="last_menu"><a href="https://2011.igem.org/Team:USTC-Software/download" target="_parent">Download</a></li>
-
!align="center"|[[Team:USTC-Software/Notebook|Notebook]]
+
               
-
!align="center"|[[Team:USTC-Software/Safety|Safety]]
+
  </ul>
-
!align="center"|[[Team:USTC-Software/Attributions|Attributions]]
+
  <b> Welcome to &#160;&#160;<a href="http://en.ustc.edu.cn/" target="_blank">University of Science and Technology of China</a>&#160;! </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> <!-- end of mfooter -->
 +
 
 +
</body>
 +
</html>

Latest revision as of 12:42, 27 October 2011


Team:USTC-Software - 2011.igem.org

1 2 3 4 5 6 7


Lachesis

Team

product

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

product

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

product

We conducted a survey, during the National Science Week, to discover USTC students' opinion on Synthetic Biology.

Project

image

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.


Sponsers



Vistor