Difference between revisions of "Team:Exeter/revised"

Line 32: Line 32:
 
     }
 
     }
 
   });
 
   });
});
 
</script>
 
 
<script>
 
$(document).ready(function(){
 
 
/** ===========================================
 
    Hide / show the master navigation menu
 
============================================ */
 
 
  // console.log('Window Height is: ' + $(window).height());
 
  // console.log('Document Height is: ' + $(document).height());
 
 
  var previousScroll = 0;
 
 
  $(window).scroll(function(){
 
 
    var currentScroll = $(this).scrollTop();
 
 
    /*
 
      If the current scroll position is greater than 0 (the top) AND the current scroll position is less than the document height minus the window height (the bottom) run the navigation if/else statement.
 
    */
 
    if (currentScroll > 0 && currentScroll < $(document).height() - $(window).height()){
 
      /*
 
        If the current scroll is greater than the previous scroll (i.e we're scrolling down the page), hide the nav.
 
      */
 
      if (currentScroll > previousScroll){
 
        window.setTimeout(hideNav, 300);
 
      /*
 
        Else we are scrolling up (i.e the previous scroll is greater than the current scroll), so show the nav.
 
      */
 
      } else {
 
        window.setTimeout(showNav, 300);
 
      }
 
      /*
 
        Set the previous scroll value equal to the current scroll.
 
      */
 
      previousScroll = currentScroll;
 
    }
 
 
  });
 
 
  function hideNav() {
 
    $(".navba-fixed-top").removeClass("is-visible").addClass("is-hidden");
 
  }
 
  function showNav() {
 
    $(".navbar-fixed-top").removeClass("is-hidden").addClass("is-visible");
 
  }
 
 
 
});
 
});
 
</script>
 
</script>

Revision as of 09:34, 28 August 2015

Welcome to Exeter iGEM 2015!

Project Description

The primary aim of our project is to design a toehold switch (a type of riboregulator) with the potential to detect any given RNA sequence, and to standardise it into a BioBrick for the future use by other iGEM teams.

Tuberculosis in cattle is a problem local to our region, Devon, causing devastating economic and personal losses to farmers in the dairy and beef industries. Therefore, the immediate application of our project is the detection of Mycobacterium bovis, the causative agent of tuberculosis in cattle, in a safe, low-tech and cost-effective manner.

In order to make this a simple test which can be used in the field, we are aiming to express it as a cell-free system. We hope to use a chromoprotein as an indicator, and subsequently characterise it for use in cell-free systems.

Keep updated on our progress on our diary

Contact us at exeterigem@gmail.com

TOP ^
  • Contact us:
    exeterigem@gmail.com