Team:USTC-Software

From 2011.igem.org

(Difference between revisions)
(Undo revision 212513 by Xuaoxiqi (talk))
Line 504: Line 504:
                                             } while (last == current );             
                                             } while (last == current );             
                                             $.innerfade.next(elements, settings, current, last);
                                             $.innerfade.next(elements, settings, current, last);
 +
                    }, settings.timeout);
 +
                    $(elements[last]).show();
 +
                            } else if ( settings.type == 'random_start' ) {
 +
                                    settings.type = 'sequence';
 +
                                    var current = Math.floor ( Math.random () * ( elements.length ) );
 +
                                    setTimeout(function(){
 +
                                        $.innerfade.next(elements, settings, (current + 1) %  elements.length, current);
 +
                                    }, settings.timeout);
 +
                                    $(elements[current]).show();
 +
                            } else {
 +
                                alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
 +
                            }
 +
                    }
 +
        };
 +
   
 +
        $.innerfade.next = function(elements, settings, current, last) {
 +
            if (settings.animationtype == 'slide') {
 +
                $(elements[last]).slideUp(settings.speed);
 +
                $(elements[current]).slideDown(settings.speed);
 +
            } else if (settings.animationtype == 'fade') {
 +
                $(elements[last]).fadeOut(settings.speed);
 +
                $(elements[current]).fadeIn(settings.speed, function() {
 +
                                removeFilter($(this)[0]);
 +
                            });
 +
            } else
 +
                alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');
 +
            if (settings.type == "sequence") {
 +
                if ((current + 1) < elements.length) {
 +
                    current = current + 1;
 +
                    last = current - 1;
 +
                } else {
 +
                    current = 0;
 +
                    last = elements.length - 1;
 +
                }
 +
            } else if (settings.type == "random") {
 +
                last = current;
 +
                while (current == last)
 +
                    current = Math.floor(Math.random() * elements.length);
 +
            } else
 +
                alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
 +
            setTimeout((function() {
 +
                $.innerfade.next(elements, settings, current, last);
 +
            }), settings.timeout);
 +
        };
 +
   
 +
    })(jQuery);
 +
   
 +
    // **** remove Opacity-Filter in ie ****
 +
    function removeFilter(element) {
 +
        if(element.style.removeAttribute){
 +
            element.style.removeAttribute('filter');
 +
        }
 +
    }
 +
    </script>
 +
  <!--end of jquery.innerfade.js-->
 +
   
 +
<script type="text/javascript">
 +
  $(document).ready(
 +
function(){
 +
 +
$('#left_content').innerfade({
 +
animationtype: 'slide',
 +
speed: 'slow',
 +
timeout: 7000,
 +
type: 'random',
 +
containerheight: '150px'
 +
});
 +
 +
});
 +
</script>
 +
 +
<!--clock.js-->
 +
<script language="javascript" type="text/javascript">
 +
function clearText(field)
 +
{
 +
    if (field.defaultValue == field.value) field.value = '';
 +
    else if (field.value == '') field.value = field.defaultValue;
 +
}
 +
 +
 +
function  Clock()
 +
 +
{  var today = new Date();
 +
    var day;
 +
    if(today.getDay()==0)  day="Sunday"
 +
    if(today.getDay()==1)  day="Monday"
 +
    if(today.getDay()==2)  day="Tuesday"
 +
    if(today.getDay()==3)  day="Wednesday"
 +
    if(today.getDay()==4)  day="Thursday"
 +
    if(today.getDay()==5)  day="Friday"
 +
    if(today.getDay()==6)  day="Saturday"
 +
var sec = today.getSeconds()+1;
 +
var date =day +", "
 +
+ today.getFullYear() + "-" + (today.getMonth()+1) + "-" + today.getDate()+
 +
" " + today.getHours()+":"+today.getMinutes()+":"+sec;
 +
document.getElementById("clock").innerHTML  = date; 
 +
}
 +
</script>
 +
 +
<!-- Javascript-->
 +
</head>
 +
 +
<body>
 +
<div id="header_wrapper">
 +
 +
    <div id="header">
 +
   
 +
  <div id="site_title">
 +
            <h1><img src="https://static.igem.org/mediawiki/2011/b/b8/USTC_Software_iGEM_logo.jpg" alt="iGEM" width="173" height="150" /> </br> </br> USTC-Software </h1>
 +
        </div>
 +
<!-- navigation -->
 +
<ul id="nav">
 +
<li><a class="on" href="https://2011.igem.org/Team:USTC-Software">Home</a></li>
 +
 +
   
 +
    <li><a href="https://2011.igem.org/Team:USTC-Software/project">Project</a>
 +
<ul>
 +
<li><a href="https://2011.igem.org/Team:USTC-Software/documents">Documents</a></li>
 +
<li><a href="https://2011.igem.org/Team:USTC-Software/models">Models</a></li>
 +
<li><a href="https://2011.igem.org/Team:USTC-Software/views">Views</a></li>
 +
                                <li><a href="https://2011.igem.org/Team:USTC-Software/tech&algo">Technology & Algorithm</a></li>
 +
                                <li><a href="https://2011.igem.org/Team:USTC-Software/tutorial">Tutorial</a></li>
 +
</ul>
 +
</li>
 +
 +
 +
                <li><a href="https://2011.igem.org/Team:USTC-Software/notebook">Notebook</a>
 +
                        <ul>
 +
                                <li><a href="https://2011.igem.org/Team:USTC-Software/judging">Judging Criteria</a></li>
 +
                        </ul>
 +
                </li>
 +
 +
<li><a href="https://2011.igem.org/Team:USTC-Software/team">Team</a>
 +
                          <ul>
 +
                            <li><a href="https://2011.igem.org/Team:USTC-Software/members">members</a></li>
 +
                            <li><a href="https://2011.igem.org/Team:USTC-Software/collaboration">collaboration & contributions</a></li>
 +
                            <li><a href="https://2011.igem.org/Team:USTC-Software/attribution">attribution</a></li>
 +
                            <li><a href="https://2011.igem.org/Team:USTC-Software/acknowledgements">acknowledgements</a></li>
 +
                          </ul>
 +
                </li>
 +
 
 +
  <li><a href="https://2011.igem.org/Team:USTC-Software/human practice">Human practice</a>             
 +
  <ul>
 +
    <li><a href="https://2011.igem.org/Team:USTC-Software/safety">safety</a></li>
 +
    <li><a href="https://2011.igem.org/Team:USTC-Software/meetup">meetup</a></li>
 +
  </ul>
 +
</li> 
 +
 +
<li><a class="last" href="https://2011.igem.org/Team:USTC-Software/download">Download</a></li>
 +
           
 +
</ul>
 +
<!-- // end of navigation -->
 +
           
 +
         
 +
  <div id="search_box">
 +
 
 +
  <form action="http://www.google.com.hk/cse" id="cse-search-box" method="get" target="_blank" >
 +
    <input type="text" value="SEARCH..." name="q" size="10" id="searchfield" title="searchfield" onFocus="clearText(this)" onBlur="clearText(this)" />
 +
    <input type="hidden" name="cx" value="012577055908532603606:zpok5ilqnda" />
 +
    <input type="hidden" name="cof" value="FORID:10" />
 +
    <input type="hidden" name="ie" value="UTF-8" />
 +
    <input type="submit" name="sa" value="I'm Feeling Lucky" />
 +
      </form>
 +
 +
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
 +
 +
<script type="text/javascript">
 +
  google.load('search', '1', {language : 'en', style : google.loader.themes.GREENSKY});
 +
  google.setOnLoadCallback(function() {
 +
    var customSearchControl = new google.search.CustomSearchControl('012577055908532603606:zpok5ilqnda');
 +
    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
 +
    customSearchControl.draw('cse');
 +
  }, true);
 +
</script>
 +
 +
  </div> 
 +
 +
 +
 +
      <div id="clock_box">     
 +
        <script type=text/javascript>
 +
              document.write('<font  id="clock" color="#000000"> </font>');setInterval('Clock()',1000);</script>
 +
      </div>
 +
 +
 +
    <div class="cleaner"></div>
 +
    </div> <!-- end of header -->
 +
 +
</div>
 +
<!-- end of header_wrapper -->
 +
 +
<div id="content_wrapper">
 +
 +
<!-- Content wrap -->
 +
<div>
 +
 +
<div id="left_content">
 +
<div class="slider_item">
 +
<div align="center">  <img src="https://static.igem.org/mediawiki/2011/3/31/USTC_Software_001.png" alt="big_img_1" width="555"/> </div>
 +
        <h3>What is iGEM?</h3>
 +
<p>The International Genetically Engineered Machine competition (iGEM) is the premiere undergraduate Synthetic Biology competition. Student teams are given a kit of biological parts at the beginning of the summer from the Registry of Standard Biological Parts. Working at their own schools over the summer, they use these parts and new parts of their own design to build biological systems and operate them in living cells. This project design and competition format is an exceptionally motivating and effective teaching method.</p>
 +
               
 +
                  <a href="https://igem.org/About">Read more...</a> 
 +
 +
</div>
 +
<div class="slider_item">
 +
  <div align="center"> <img src="https://static.igem.org/mediawiki/2011/6/61/USTC_Software_002.png" alt="big_img_2" width="555"/> </div>
 +
                <h3>What is Project Lachesis?</h3>
 +
<p>The project Lachesis aims at providing and integrated, easy-using and extensible CAD environment for the general purpose of Synthetic Biology, it adopts an plug-in based structure.We provide three categories of plug-ins:Document parsers that handles various types of files, such as SBML andMoDeL. Models that each represents a specific kind of synthetic biological
 +
model. Views that present graphical user interface for users to work with biological models.</p>
 +
 +
                  <a href="https://2011.igem.org/Team:USTC-Software/project">Read more...</a> 
 +
 +
</div>
 +
<div class="slider_item">
 +
<div align="center"> <img src="https://static.igem.org/mediawiki/2011/f/f4/USTC_Software_003.png" alt="big_img_3" width="555"/></div>
 +
                <h3>Where are we from?</h3>
 +
<p>The University of Science and Technology of China (USTC) is under the jurisdiction of the Chinese Academy of Sciences (CAS).
 +
                As a key university of the nation, it is noted for its advanced science and high technology programs, unique management studies and well-tailored disciplines in the humanities.
 +
                On May 11, the Nature Publishing Group released Nature Publishing Index 2010 China, remarking "a dramatic rise in the quality of research being published by China". University of Science and Technology of China is ranked 3rd of TOP 10 Institutions in Index 2010 China.
 +
              </p>
 +
 +
  <a href="http://en.ustc.edu.cn/about/">Read more...</a>
 +
 +
  </div>
 +
</div>
 +
 +
</div>
 +
    <!-- // Content wrap -->
 +
<br/><br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/>  <br/> <br/> <br/>  <br/> <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">Nothing gets done by itself so we formed a group of tireless and diligent students came from different faculties (all parts of USTC) and joined our forces at School of Life Sciences. <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>MoDeL</h3>
 +
                <img src="https://static.igem.org/mediawiki/2011/c/c8/USTC_Software_image_03.jpg" alt="product" />
 +
                   
 +
              <p class="intro">Sorry... <div class="button_01"> <a href="https://2011.igem.org/Team:USTC-Software/model">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">A survey was conducted during the national science week in the school campus of USTC, where students were asked a few basic questions to discover their opinions 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">USTC 2011 DRY TEAM as a one has worked diligently on designing and implementing a user friendly and interacting-prone software which will get nearer to biology reality and free synthetic biologist from considering unnecessary minutia as well as help both layman and expert draw deep understanding of the mechanism on how the gene circuit run.</span></p>
 +
            <div><span lang="EN-US" xml:lang="EN-US">We offer a visualizing tool which give insight into the dynamics of a biology network. User dominated parameter adjustment process is also provided to assist in getting the required behavior. In order to assess the network&rsquo;s immunology to parameter perturbation, a PCA analysis approach is exploited to depict the structure of a 'good' behaved region.   </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>
 +
     
 +
 
 +
  <table width="921" height="551" border="0">
 +
    <tr>
 +
      <td width="745" height="547"><table width="739" height="545" border="0">
 +
<tr>
 +
  <td width="363" height="81"><h2>Sponsor</h2></td>
 +
  <td width="358"></td>
 +
 +
</tr>
 +
<tr>
 +
  <td width="363" height="87">
 +
  <a href="http://www.ustcif.org"> <img src="https://static.igem.org/mediawiki/2011/b/ba/USTC_Software_IF_LOGO.jpg" width="363" height="90"/></a> </td>
 +
  <td width="358"><p align="center"><a href="http://www.ustcif.org"><strong>Initiative Foundation, USTC</strong></a></p></td>
 +
</tr>
 +
<tr>
 +
  <td height="87"><img src="https://static.igem.org/mediawiki/2011/1/11/USTC_Software_TAO_LOGO.png" width="363" height="85" /></td>
 +
  <td><p align="center"><strong>Teaching Affair Office, USTC</strong></p></td>
 +
</tr>
 +
<tr>
 +
  <td height="87"><img src="https://static.igem.org/mediawiki/2011/d/d3/USTC_Software_sols.png" width="363" height="85" /></td>
 +
  <td><p align="center"><strong>School of Life Sciences, USTC</strong></p></td>
 +
</tr>
 +
<tr>
 +
  <td height="87"><img src="https://static.igem.org/mediawiki/2011/e/ef/USTC_Software_ADGE_LOGO.png" width="363" height="85" /></td>
 +
  <td><p align="center"><strong>Graduate School, USTC</strong></p></td>
 +
</tr>
 +
<tr>
 +
  <td height="102"><img src="https://static.igem.org/mediawiki/2011/2/25/USTC_Software_chemistry.jpg" width="363" height="85" /></td>
 +
  <td><p align="center"><strong>School of Chemistry and Materials Science, USTC</strong></p></td>
 +
</tr>
 +
</table></td>
 +
     
 +
     
 +
     
 +
     
 +
     
 +
     
 +
     
 +
      <td width="166">  <table width="166" height="255" border="0">
 +
    <tr>
 +
      <th width="424" height="56" scope="col"><h2>Vistor</h2></th>
 +
    </tr>
 +
    <tr>
 +
      <td height="190">
 +
     
 +
        <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>
 +
 +
 +
 +
      </td>
 +
    </tr>
 +
  </table></td>
 +
    </tr>
 +
  </table>
 +
 
 +
 +
  </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="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/team" class="current">Team</a></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 &#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>

Revision as of 13:44, 3 October 2011


Team:USTC-Software - 2011.igem.org

big_img_1

What is iGEM?

The International Genetically Engineered Machine competition (iGEM) is the premiere undergraduate Synthetic Biology competition. Student teams are given a kit of biological parts at the beginning of the summer from the Registry of Standard Biological Parts. Working at their own schools over the summer, they use these parts and new parts of their own design to build biological systems and operate them in living cells. This project design and competition format is an exceptionally motivating and effective teaching method.

Read more...
big_img_2

What is Project Lachesis?

The project Lachesis aims at providing and integrated, easy-using and extensible CAD environment for the general purpose of Synthetic Biology, it adopts an plug-in based structure.We provide three categories of plug-ins:Document parsers that handles various types of files, such as SBML andMoDeL. Models that each represents a specific kind of synthetic biological model. Views that present graphical user interface for users to work with biological models.

Read more...
big_img_3

Where are we from?

The University of Science and Technology of China (USTC) is under the jurisdiction of the Chinese Academy of Sciences (CAS). As a key university of the nation, it is noted for its advanced science and high technology programs, unique management studies and well-tailored disciplines in the humanities. On May 11, the Nature Publishing Group released Nature Publishing Index 2010 China, remarking "a dramatic rise in the quality of research being published by China". University of Science and Technology of China is ranked 3rd of TOP 10 Institutions in Index 2010 China.

Read more...





















Lachesis

Team

product

Nothing gets done by itself so we formed a group of tireless and diligent students came from different faculties (all parts of USTC) and joined our forces at School of Life Sciences.

MoDeL

product

Sorry...

Human practice

product

A survey was conducted during the national science week in the school campus of USTC, where students were asked a few basic questions to discover their opinions on synthetic biology.

Project

image

USTC 2011 DRY TEAM as a one has worked diligently on designing and implementing a user friendly and interacting-prone software which will get nearer to biology reality and free synthetic biologist from considering unnecessary minutia as well as help both layman and expert draw deep understanding of the mechanism on how the gene circuit run.

We offer a visualizing tool which give insight into the dynamics of a biology network. User dominated parameter adjustment process is also provided to assist in getting the required behavior. In order to assess the network’s immunology to parameter perturbation, a PCA analysis approach is exploited to depict the structure of a 'good' behaved region.   

Sponsor

Initiative Foundation, USTC

Teaching Affair Office, USTC

School of Life Sciences, USTC

Graduate School, USTC

School of Chemistry and Materials Science, USTC

Vistor