Difference between revisions of "Team:CGU Taiwan/Collaborations"

(Prototype team page)
 
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{CGU_Taiwan}}
+
{{CGU_Taiwan/clearwikiset}}
 +
{{CGU_Taiwan/cgustyle}}
 
<html>
 
<html>
 +
<head>
 +
<meta charset="UTF-8">
 +
<title>iGem CGU_Taiwan 2017 - Collaborations</title>
 +
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
 +
</head>
  
 +
<body bgcolor="white">
  
<div class="column full_size judges-will-not-evaluate">
+
<!-- nav start -->
<h3>★  ALERT! </h3>
+
<div class="head"></div>
<p>This page is used by the judges to evaluate your team for the <a href="https://2017.igem.org/Judging/Medals">medal criterion</a> or <a href="https://2017.igem.org/Judging/Awards"> award listed above</a>. </p>
+
<nav>
<p> Delete this box in order to be evaluated for this medal criterion and/or award. See more information at <a href="https://2017.igem.org/Judging/Pages_for_Awards"> Instructions for Pages for awards</a>.</p>
+
<ul>
</div>
+
  <a href="https://2017.igem.org/Team:CGU_Taiwan"><li class="logo" style="text-align:left;"><img src="https://static.igem.org/mediawiki/2017/7/7e/CGULOGO0930.png" height="100px" width="307px"/></li></a>
 +
  <!--<li><a href="index.html">HOME</a></li>
 +
  | -->
 +
  <li class="dropdown"><a href="https://2017.igem.org/Team:CGU_Taiwan/Description">PROJECT</a>
 +
      <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Description">DESCRIPTION</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Results">RESULTS</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/InterLab">INTERLAB</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Demonstrate">PROOF AND DEMONSTRATION</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Model">MODEL</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Parts">PARTS</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Future">FUTURE WORK</a>      
 +
      </div>
 +
  </li>
 +
  |
 +
  <li class="dropdown"><a href="https://2017.igem.org/Team:CGU_Taiwan/Notebook">NOTEBOOK</a>
 +
      <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Notebook">LAB NOTE</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Protocols">PROTOCOLS</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Safety">SATEFY</a>
 +
      </div>
 +
  </li>
 +
  |
 +
  <li class="dropdown"><a href="https://2017.igem.org/Team:CGU_Taiwan/Team">TEAM</a>
 +
      <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Attributions">ATTRIBUTION</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Team">MEMBER</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Acknowledgement">ACKNOWLEDGEMENT</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Collaborations">COLLABORATION</a>
 +
      </div>
 +
  </li>
 +
  |
 +
  <li class="dropdown"><a href="">HUMAN PRACTICE</a>
 +
      <div class="dropdown-content">
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/HP/Silver">SILVER HP</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/HP/Gold_Integrated">INTERGRATED AND GOLD</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Engagement">PUBLIC ENGAGEMENT</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/TWConference">2017 iGEM TAIWAN CONFERENCE</a>
 +
      </div>
 +
  </li>
 +
  |
 +
<li class="dropdown2"><a href="">AWARD</a>
 +
      <div class="dropdown2-content">
 +
     
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Entrepreneurship">ENTREPRENEURSHIP</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Hardware">HARDWARE</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Measurement">MEASUREMENT</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Model">MODEL</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/InterLab">INTERLAB</a>
 +
      <a href="https://2017.igem.org/Team:CGU_Taiwan/Collaborations">COLLABORATION</a>
 +
      </div>
 +
  </li>
 +
  <li> &nbsp;&nbsp;&nbsp; </li>
 +
</ul>
 +
</nav>
  
 +
<script type="text/javascript">
 +
$(window).scroll(function() {
  
 +
    //After scrolling 100px from the top...
 +
    if ( $(window).scrollTop() >= 75 ) {
 +
$('.head').css('transform-origin', 'right');
 +
        $('.head').css('transform', 'translateX(500px) rotate(20deg)');
 +
    //Otherwise remove inline styles and thereby revert to original stying
 +
    } else {
 +
        $('.head').css('transform', 'translateX(500px) ');
 +
    }
 +
 +
if ( $(window).scrollTop() >= 0 ) {
 +
        var d = "deg)";
 +
        var rot = "rotate(";
 +
        var rD = ($(window).scrollTop()) * 0.5;
 +
        var rDC = rD.toString();
 +
        rot = rot.concat(rDC.concat(d));
 +
        $('.square').css('transform', rot);
 +
    } else {
 +
        $('.square').css('transform', 'none');
 +
    }
 +
})
 +
;
 +
</script>
 +
<!-- nav end -->
  
 +
<!--background animation start -->
 +
<div class="leftMenuBack"></div>
 +
<div class="square"></div>
 +
<!--background animation end -->
  
 +
<!-- Collaborations start -->
 +
<div class="description" style="text-align:center">
 +
<h1 id="pBio"><br>Collaborations</h1>
 +
  <p style="font-size:120%; ">
 +
      This summer, we met TAS_Taipei when we were participating the Asia Pacific iGEM conference raised by NCTU_Formosa. we are currently working on an improvement of the reprocessed paper manufacturing process. we had found the process “flotation” could cause severe paper fiber lost, which is a big problem for preserving paper fibers. After we saw TAS_Taipei presentation of how biofilm could attract nano gold particles, they were excited about whether the biofilm could absorb ink particles. Their idea might give the potential of replacing current flotation process which would cause paper fiber lost and chemical pollution. We had discuss for collaboration of improving the process. They had test the biofilm absorption of ink particles provided by our project built up protocols. </p>
  
<div class="clear"></div>
+
  <p style="font-size:120%; ">
 
+
    To sum up, our experiment shows the potential of attracting ink particles. That is, in future imagination, biofilm could be the candidate material for replacing the current method.
<div class="column full_size">
+
</p>
<h1>Collaborations</h1>
+
  <p>
 
+
  <img src="https://static.igem.org/mediawiki/2017/f/fa/Cgucollaborationsdata1.png" width="207px" height="269px">
 +
  <img src="https://static.igem.org/mediawiki/2017/c/c8/Cgucollaborationsdata2.png" width="437px" height="269px">
 +
  </p>
 +
      <p>
 +
  <img src="https://static.igem.org/mediawiki/2017/e/e4/Cgucollaborationsdata3.jpg" width="541px" height="271px">
 +
  </p>
 +
<p style="font-size:120%; ">
 +
    We helped TAS_Taipei independently verify that overexpression of OmpR234 (BBa_K2229200) produces more biofilms than control (BBa_K342003)
 +
</p> 
 
<p>
 
<p>
Sharing and collaboration are core values of iGEM. We encourage you to reach out and work with other teams on difficult problems that you can more easily solve together.
+
<img src="https://static.igem.org/mediawiki/2017/7/70/T--TAS_Taipei--figure_3-18.jpg" width="447px" height="151px">
</p>
+
</p>
 
+
<p style="font-size:100%; ">
<h3>Silver Medal Criterion #2</h3>
+
    (caption) Figure 3-19: A) Our experiment results showed that E. coli overexpressing OmpR234(BBa_K2229200) is producing more biofilm than a control which does not overexpress OmpR234(BBa_K342003). B) CGU_Taiwan independently tested our constructs using crystal violet, a dye commonly used to quantify biofilm formation. BBa_K2229200 showed higher absorbance compared to the control BBa_K342003, reflecting a the formation of more biofilm, which matches our results.
<p>
+
</p>      
Complete this page if you intend to compete for the silver medal criterion #2 on collaboration. Please see the <a href="https://2017.igem.org/Judging/Medals">2017 Medals Page</a> for more information.  
+
    <br><br>
</p>
+
 
+
<div class="column half_size">
+
 
+
<h4> Which other teams can we work with? </h4>
+
<p>  
+
You can work with any other team in the competition, including software, hardware, high school and other tracks. You can also work with non-iGEM research groups, but they do not count towards the iGEM team collaboration silver medal criterion.
+
</p>
+
 
+
<p>
+
In order to meet the silver medal criteria on helping another team, you must complete this page and detail the nature of your collaboration with another iGEM team.
+
</p>
+
  
 
</div>
 
</div>
 +
<!-- Collaborations end -->
  
 +
<!-- javascript code start -->
  
 +
<!-- javascript code end -->
  
<div class="column half_size">
+
<!-- footer start -->
<p>
+
<footer align="center">
Here are some suggestions for projects you could work on with other teams:
+
</p>
+
 
+
 
<ul>
 
<ul>
<li> Improve the function of another team's BioBrick Part or Device</li>
+
<li><a href="http://www.cgu.edu.tw"><img src="https://static.igem.org/mediawiki/2017/d/d6/Cguwikifooter.png" width="100%"></a></li>
<li> Characterize another team's part </li>
+
</ul>  
<li> Debug a construct </li>
+
</footer>
<li> Model or simulating another team's system </li>
+
<!-- footer end -->
<li> Test another team's software</li>
+
</body>
<li> Help build and test another team's hardware project</li>
+
<li> Mentor a high-school team</li>
+
</ul>
+
</div>
+
 
+
 
+
 
</html>
 
</html>

Latest revision as of 03:19, 16 December 2017

iGem CGU_Taiwan 2017 - Collaborations


Collaborations

This summer, we met TAS_Taipei when we were participating the Asia Pacific iGEM conference raised by NCTU_Formosa. we are currently working on an improvement of the reprocessed paper manufacturing process. we had found the process “flotation” could cause severe paper fiber lost, which is a big problem for preserving paper fibers. After we saw TAS_Taipei presentation of how biofilm could attract nano gold particles, they were excited about whether the biofilm could absorb ink particles. Their idea might give the potential of replacing current flotation process which would cause paper fiber lost and chemical pollution. We had discuss for collaboration of improving the process. They had test the biofilm absorption of ink particles provided by our project built up protocols.

To sum up, our experiment shows the potential of attracting ink particles. That is, in future imagination, biofilm could be the candidate material for replacing the current method.

We helped TAS_Taipei independently verify that overexpression of OmpR234 (BBa_K2229200) produces more biofilms than control (BBa_K342003)

(caption) Figure 3-19: A) Our experiment results showed that E. coli overexpressing OmpR234(BBa_K2229200) is producing more biofilm than a control which does not overexpress OmpR234(BBa_K342003). B) CGU_Taiwan independently tested our constructs using crystal violet, a dye commonly used to quantify biofilm formation. BBa_K2229200 showed higher absorbance compared to the control BBa_K342003, reflecting a the formation of more biofilm, which matches our results.