Team:Berlin/Project

From 2014.igem.org

(Difference between revisions)
Line 213: Line 213:
<script>
<script>
 +
// NAVBAR STYLE
// NAVBAR STYLE
Line 230: Line 231:
     });
     });
      
      
 +
 +
// my scroll to
 +
$("#main-button").click(function() {
 +
    $('html, body').animate({
 +
        scrollTop: $("#main-featurette-row").offset().top - 57
 +
    }, 720);
 +
});
 +
 +
// my scroll to
 +
$("#ecoli-button").click(function() {
 +
    $('html, body').animate({
 +
        scrollTop: $("#first-featurette-row").offset().top - 57
 +
    }, 800);
 +
});
 +
 +
// my scroll to
 +
$("#project-button").click(function() {
 +
    $('html, body').animate({
 +
        scrollTop: $("#team-featurette-row").offset().top - 57
 +
    }, 800);
 +
});
 +
 +
// my scroll to
 +
$("#team-button").click(function() {
 +
    $('html, body').animate({
 +
        scrollTop: $("#blog-featurette-row").offset().top - 57
 +
    }, 800);
 +
});
 +
 +
 +
$(document).ready(function(){
 +
  // cache the window object
 +
  $window = $(window);
 +
 +
  $('section[data-type="background"]').each(function(){
 +
    // declare the variable to affect the defined data-type
 +
    var $scroll = $(this);
 +
                   
 +
      $(window).scroll(function() {
 +
        // HTML5 proves useful for helping with creating JS functions!
 +
        // also, negative value because we're scrolling upwards                           
 +
        var yPos = -($window.scrollTop() / $scroll.data('speed'));
 +
       
 +
        // background position
 +
        var coords = '80% '+ yPos + 'px';
 +
 +
        // move the background
 +
        $scroll.css({ backgroundPosition: coords });   
 +
      }); // end window scroll
 +
  });  // end section function
 +
 +
  $("#section-B").hide();
 +
  $("#section-C").hide();
 +
  $("#C-up").hide();
 +
  $("#B-up").hide();
 +
 +
  $("#show-B").click(function(){
 +
    $("#section-B").slideToggle();
 +
      $("#B-up").toggle();
 +
      $("#B-down").toggle();
 +
  });
 +
 +
  $("#show-C").click(function(){
 +
    $("#section-C").slideToggle();
 +
    $("#C-up").toggle();
 +
    $("#C-down").toggle();
 +
  });
 +
 +
}); // close out script
 +
//NAVBAR STYLE
//NAVBAR STYLE
Line 245: Line 316:
      
      
});
});
 +
 +
var windowSize = $(window).height();
var windowSize = $(window).height();

Revision as of 14:15, 2 October 2014

WHAT´S HAPPENING?

As previous iGEM teams have shown, synthesizing fully functional magnetosomes in E. coli is highly difficult as more than 60 highly regulated genes are involved. As a more feasible alternative, we simply want to synthesize magnetic nanoparticles in E. coli in order to attract cells with strong magnetic fields.
Therefore we want to use different strategies including manipulation of the iron homeostasis of E. coli, expression of different metal binding proteins such as ferritins and metallothioneins as well as a high-throughput growth medium optimization.

Furthermore, we will work with other metal binding proteins such as metallothioneins and phytochelatin synthases in order to achieve nanoparticle synthesis. Once we have discovered the best way to magnetize E. coli bacteria, we will build and characterize suitable BioBricks that can be used by any research lab or iGEM team in the world in order to remote control the cellular movement.


STEPS OF PRODUCING E.COLI

1

Knocking out the iron efflux transporter gene FieF and the iron uptake suppressor Fur to increase the total iron level of the cytosol.

2

Sequestering iron in a ferritin protein.

3

Iron crystals are formed and the cell is detoxified.

4

Create crystals by using intensive high-throughput growth medium optimization to discover the best conditions for the formation of magnetic nanoparticles in E. coli.