Difference between revisions of "Team:DTU-Denmark/Description"

Line 227: Line 227:
  
 
<div class="sm-no-float col-md-12">
 
<div class="sm-no-float col-md-12">
 
<div class="wrapper12">
 
  <div class="card2">
 
   
 
    <!--Size dropdown menu-->
 
    <h2 style="text-align: center;">Pick your Promoter</h2>
 
     
 
    <div class="promotergenerator">
 
<select id="size_select">
 
  <option value="option1">An12g07450</option>
 
  <option value="option2">An07g00070</option>
 
 
</select>
 
 
    </div>
 
<!--Size dropdown content-->
 
 
   
 
   
 
   
 
  </div>
 
<div class="card1 trigger">
 
 
  <div class="cardimg">
 
    <img class="size_chart option1" id="imoption1" src="https://static.igem.org/mediawiki/2019/f/f4/T--DTU-Denmark--promotersugar.svg" title="Comming soon" style="margin: 50px 20px;">
 
    <img id="imoption2" class="size_chart option2" src="https://static.igem.org/mediawiki/2019/b/b0/T--DTU-Denmark--devilpromoterdesc.svg" title="Comming soon" style="margin: 40px 30px;">
 
</div>
 
 
<div class="collecter">
 
   
 
   
 
   
 
<div  class=" header">
 
<div id="option1" class="size_chart profile option1">
 
<h2>An12g07450</h2>
 
    <p><b>Alias:</b> PmstA<br><br></p>
 
<p>mstA encodes a high-affinity sugar transporter, and has been shown to be expressed when <i>A. niger</i> starts to run out of sugar. It doesn't care about the age/phase of the culture, only about sugar
 
</p>
 
    <div class="data-box">
 
    <span class="data" data-name="log(exp) " data-value="84">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
      <div class="data-box">
 
    <span class="data" data-name="log(post) " data-value="81">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
      <div class="data-box">
 
    <span id="versionstat" class="data" data-name="Versions: " data-value="40">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
    <p><b>Special Ability:</b> sensitive sugar sensor, turns on when sugar is limited</p>
 
    <p><b>Versions:</b> 1 naturalistic & 1 synthetically enhanced</p>
 
</div>
 
 
   
 
   
 
<div id="option2" class="profile size_chart option2">
 
<h2>An07g00070</h2>
 
   
 
<p>A homolog of the <i>A. fumigatus</i> tpcK gene, part of the synthesis pathway for a mycotoxin, this gene represents a classical secondary metabolite, and its promoter acts accordingly: with relatively low leakiness, it turns on hard when the fungi reach stationary phase, a boon for growth-decoupled industrial production. <br>Despite the scary story of the gene it regulates, the promoter is perfectly tame, harmless, and ready to help.
 
</p>
 
    <div class="data-box">
 
    <span class="data" data-name="log(exp) " data-value="34">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
      <div class="data-box">
 
    <span class="data" data-name="log(post) " data-value="87.79">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
      <div class="data-box">
 
    <span id="versionstat1" class="data" data-name="Versions: " data-value="120">
 
      <p class="info"></p>
 
    </span>
 
  </div>
 
   
 
    <p><b>Versions:</b> 6 versions, with 4 levels: synthetically enhanced 1x, naturalistic-ish 2x, sorta weakened 2x, even more weakened 1x</p>
 
</div>
 
 
   
 
   
 
   
 
   
 
   
 
   
 
<div class="logo1">
 
    <img src="https://static.igem.org/mediawiki/2019/6/6e/T--DTU-Denmark--dtubiobuilders.svg" title="Comming soon" style="margin: 20px 10px;">
 
 
</div>
 
</div>
 
 
 
 
 
 
</div>
 
</div>
 
 
 
 
  
  
Line 412: Line 310:
  
  
$(document).ready(function(){
 
 
 
 
 
  //Print skills titles:
 
  $(".data").each(function(){
 
    var statName = $(this).attr("data-name") + " " + $(this).attr("data-value") + "%";
 
    $(this).find(".info").text(statName);
 
   
 
  var infoname = $("#versionstat").attr("data-name") + " " + $("#versionstat").attr("data-value")/20 ;
 
  $("#versionstat").find(".info").text(infoname);
 
  });
 
 
  //Trigger skills animation:
 
 
 
    $(".data").each(function(){
 
      var statValue = $(this).attr("data-value");
 
      $(this).animate({"width": statValue + "%"}, 800);
 
      console.log("hello");
 
      console.log($(this).find(".info"));
 
    });
 
 
 
 
 
  //hides dropdown content
 
  $(".size_chart").hide();
 
 
 
  //unhides first option content
 
  $(".option1").show();
 
 
 
 
 
 
 
  //listen to dropdown for change
 
  $("#size_select").change(function(){
 
     
 
    //rehide content on change
 
    $('.size_chart').hide();
 
    //unhides current item
 
    $('.'+$(this).val()).show();
 
 
 
  $(".data").each(function(){
 
    var statName = $(this).attr("data-name") + " " + $(this).attr("data-value") + "%";
 
    $(this).find(".info").text(statName);
 
   
 
  var infoname = $("#versionstat").attr("data-name") + " " + $("#versionstat").attr("data-value")/20 ;
 
  $("#versionstat").find(".info").text(infoname);
 
   
 
    var infoname = $("#versionstat1").attr("data-name") + " " + $("#versionstat1").attr("data-value")/20 ;
 
  $("#versionstat1").find(".info").text(infoname);
 
   
 
  
   
 
    $(".data").each(function(){
 
      var statValue = $(this).attr("data-value");
 
      //$(this).animate({"width": 0 + "%"}, 800);
 
      $(this).animate({"width": statValue + "%"}, 800);
 
      //console.log("hello");
 
      //console.log($(this).find(".info"));
 
    });
 
   
 
   
 
    });
 
  });
 
 
 
 
 
 
 
});
 
  
  

Revision as of 08:27, 20 October 2019

Project Inspiration and Description

Several promoter libraries exist for bacteria and eukaryotic organisms such as yeast and mammalian cells. Nevertheless, there are currently no such libraries for filamentous fungi in the scientific literature. That's where we enter the scene.

Results Safety Collaborations Model Design Human Practices Experiments Attributions Model Attributions Collaborations Human Practices Results Safety Experiments Design Attributions Collaborations Human Practices Results Safety Experiments Design Model

The total annual revenue from enzymes produced by Aspergillus spp. is 480 mio USD per year [3].

Description

Filamentous fungi are used as cell factories for approximately 28% of all known bioreactive microbial metabolites [1]. With their ability to increase or decrease the expression of a metabolite, promoters are essential in the production of bioproducts. Several promoter libraries exist for bacteria and eukaryotic organisms such as yeast and mammalian cells. Nevertheless, there are currently no such libraries for filamentous fungi in the scientific literature.

Our project aims to create a constitutive promoter library for filamentous fungi and other eukaryotic organisms that provide promoters of different strengths that give reproducible results between batches and scales.

The total annual revenue from enzymes produced by Aspergillus spp. is 480 mio USD per year [3].

Inspiration

The inspiration for the project came from several places that together created the goal we have now. First, the iGEM team from DTU in 2018 worked with filamentous fungi and it became clear that only very few parts in the registry have been used in filamentous fungi. This resulted in many difficulties, getting the system to work and getting anything expressed. This year we will fill the hole in the registry with parts that work in filamentous fungi and we will provide information on how to successfully work with filamentous fungi, including protoplastation, transformation, and product assays.
The second inspiration came from our supervisors’ colleagues in academia and contacts in the industry. Here promoter libraries are very useful, but the promoters in literature is limited and spread out. We saw a hole that we could fill and provide a valuable product to researchers across the world.

Lastly, at the Technical University of Denmark, we have unique facilities and personnel who have expertise in working with synthetic biology in filamentous fungi. The research being done in filamentous fungi, most specifically Aspergillus allows us to attempt this project as these organisms are harder to work with than bacteria. Furthermore, the department has a fermentation core that we can use to examine the strength of the promotes in multiple scales and in differing conditions.
Taking all of this together, we see that our project is a combination between introducing a new organism to iGEM with the tools required to do synthetic biology, filling a hole in the literature, and the unique opportunity we have.



(1) J. Berdy, “Bioreactive Microbial Metabolites” J. antibiot, vol. 58. no. 1, pp. 1-26, 2005.

The logos of our three biggest supporters, DTU Blue Dot, Novo Nordisk fonden and Otto Mønsted fonden The logos of all of our sponsors, DTU, BioNordica, Eurofins Genomics, Qiagen, NEB New England biolabs, IDT Integrated DNA technologies and Twist bioscience