Team:Calgary

From 2013.igem.org

(Difference between revisions)
 
(42 intermediate revisions not shown)
Line 1: Line 1:
 +
{{Team:Calgary/Main}}
<html>
<html>
<head>
<head>
-
<!-- Reset for BodyContent -->
+
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/HomePage?action=raw&ctype=text/css" rel="stylesheet">
-
<style>
+
-
#content{
+
-
width: 100%;
+
-
margin: 0;
+
-
padding: 0;
+
-
background-color:transparent;
+
-
border: none;
+
-
}
+
-
+
-
#bodyContent{
+
-
width: 100%;
+
-
margin: 0;
+
-
padding: 0;
+
-
background-color:transparent;
+
-
border: none;
+
-
}
+
-
</style>
+
-
+
-
<!-- Fonts -->
+
-
<link href='http://fonts.googleapis.com/css?family=Raleway:400,500,600' rel='stylesheet' type='text/css'>
+
-
<link href='http://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'>
+
-
+
-
<!-- CSS -->
+
-
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/Reset?action=raw&ctype=text/css" rel="stylesheet">
+
-
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/Navigation?action=raw&ctype=text/css" rel="stylesheet">
+
-
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/Content?action=raw&ctype=text/css" rel="stylesheet">
+
-
+
-
<!-- JavaScript and JQuery -->
+
<script>
<script>
$(document).ready(function() {
$(document).ready(function() {
-
$('a[href^="http://"]').not('[href*="Team:Calgary"]').attr('target', '_blank');
+
//Display slider for Javascript users
-
$('a[href^="https://"]').not('[href*="Team:Calgary"]').attr('target', '_blank');
+
$('#Slider').css('display', 'block');
-
if ($('body').width() > 868) {
+
//Set height of slider (16/5 ratio)
-
$('#LogoItem').css('display', 'block');
+
$('#Slider').css('height', ($('body').width() / 3.2));
-
}
+
-
else if ($('body').width() <= 868) {
+
-
$('#LogoItem').css('display', 'none');
+
-
}
+
 +
//Position right/left arrows
 +
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
 +
$('#LeftBar, #RightBar').css('height', BarHeight);
 +
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
 +
 +
//Repeats for window resize
$(window).resize(function() {
$(window).resize(function() {
-
if ($('body').width() > 868) {
+
$('#Slider').css('height', ($('body').width() / 3.2));
-
$('#LogoItem').css('display', 'block');
+
-
}
+
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
-
else if ($('body').width() <= 868) {
+
$('#LeftBar, #RightBar').css('height', BarHeight);
-
$('#LogoItem').css('display', 'none');
+
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
-
}
+
});
});
-
$('a[href^="#"]').click(function() {
+
var TotalSlides = $('.Slides').length;
-
var target = $(this.hash);
+
var CurrentSlide = 0;
-
if (target.length == 0) target = $('a[name="' + this.hash.substr(1) + '"]');
+
 
-
if (target.length == 0) target = $('html');
+
$('#RightArrow').click(function() {
-
$('html, body').animate({ scrollTop: target.offset().top-100 }, 1000);
+
CurrentSlide = ++CurrentSlide % TotalSlides;
-
return false;
+
changeSlide(CurrentSlide);
});
});
 +
 +
$('#LeftArrow').click(function() {
 +
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
 +
changeSlide(CurrentSlide);
 +
});
 +
 +
$('.SlideLink').click(function() {
 +
var ClickedSlide = $(this).attr('id');
 +
CurrentSlide = parseInt(ClickedSlide.replace('Link', ''));
 +
changeSlide(CurrentSlide);
 +
});
 +
 +
function changeSlide(num){
 +
var SlideID = '#Slide' + num;
 +
$('.Slides').css('display', 'none');
 +
$(SlideID).css('display', 'block');
 +
}
});
});
</script>
</script>
</head>
</head>
-
 
+
<body>
<body>
-
<section id="Page">
+
<section id="HomePageContent">
-
<header id="TopBar">
+
<div id="Slider">
-
<ul id="TopLvlNav">
+
<div id="Slide0" class="Slides current"></div>
-
<li><a href="https://2013.igem.org/Team:Calgary">Home</a></li>
+
<div id="Slide1" class="Slides"></div>
-
<li>
+
<div id="Slide2" class="Slides"></div>
-
<a href="https://2013.igem.org/Team:Calgary/Project">Project</a>
+
<div id="Slide3" class="Slides"></div>
-
<ul>
+
<div id="Slide4" class="Slides"></div>
-
+
<div id="Slide5" class="Slides"></div>
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor">Our Sensor</a>
+
<div id="LeftBar" class="SideBar"><div id="LeftArrow"></div></div>
-
<ul>
+
<div id="RightBar" class="SideBar"><div id="RightArrow"></div></div>
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Detector">Detector</a></li>
+
<ul id="BottomLinks">
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter">Reporter</a>
+
<li id="Link0" class="SlideLink">Intro</li><li id="Link1" class="SlideLink">Problem</li><li id="Link2" class="SlideLink">Situation</li><li id="Link3" class="SlideLink">Idea</li><li id="Link4" class="SlideLink">Solution</li><li id="Link5" class="SlideLink">Platform</li>
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter/PrussianBlueFerritin">Prussian<br>Blue Ferritin</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter/BetaLactamase">Beta-<br>Lactamase</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Linker">Linker</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Modelling">Modelling</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter/SpacialModelling">Spacial<br>Modelling</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter/QuantitativeModelling">Quantitative<br>Modelling</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Prototype">Prototype</a></li>
+
-
</ul>
+
-
</li>
+
-
 
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices">Human Practices</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices/InformedDesign">Informed<br>Design</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices/Safety">Safety</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/Collaboration">Collaboration</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/Collaboration/BiosensorDatabase">SensiGEM<br>Database</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/DataPage">Data Page</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Project/Achievements">Achievements</a></li>
+
-
</ul>
+
-
</li>
+
-
<li>
+
-
<a href="https://2013.igem.org/Team:Calgary/OurTeam">Our Team</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/OurTeam/TeamMembers">Team Members</a></li>
+
-
<li><a href="https://igem.org/Team.cgi?id=1189">Our Profile</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/OurTeam/TheUniversity">The<br>University</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/OurTeam/Attributions">Attributions</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/OurTeam/Sponsors">Sponsors</a></li>
+
-
</ul>
+
-
</li>
+
-
<li id="LogoItem"><img id="NavLogo" src="https://static.igem.org/mediawiki/2013/8/8a/2013UCalgaryLogo.png"></li>
+
-
<li>
+
-
<a href="https://2013.igem.org/Team:Calgary/Notebook">Notebook</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Journal">Journal</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Journal/Detector">Detector</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Journal/Reporter">Reporter</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Journal/Linker">Linker</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Journal/Modelling">Modelling</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Protocols">Protocols</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/Parts">Parts</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Notebook/References">References</a></li>
+
-
</ul>
+
-
</li>
+
-
<li>
+
-
<a href="https://2013.igem.org/Team:Calgary/Outreach">Outreach</a>
+
-
<ul>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Outreach/TelusSpark">Telus<br>Spark</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Outreach/ConsortAlberta">Consort<br>Alberta</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Outreach/Beakerhead">Beakerhead</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Outreach/GenomeAlberta">Genome<br>Alberta</a></li>
+
-
<li><a href="https://2013.igem.org/Team:Calgary/Outreach/ScienceCafe">Science<br>Café</a></li>
+
-
</ul>
+
-
</li>
+
-
<li>
+
-
<a href="https://2013.igem.org">iGEM</a>
+
-
</li>
+
</ul>
</ul>
-
</header>
+
</div>
 +
 +
<section id="Overview">
 +
<h2>Our Project</h2>
 +
<p>
 +
Pathogenic Enterohaemorrhagic <i>E. coli</i> serotype O157:H7 is a major source of foodborne illness worldwide. In Alberta, we experienced a pathogenic <i>E. coli</i> outbreak in late 2012, this outbreak was the result contaminated beef and led to the largest meat recall in Canadian history (Cross, 2012). Outbreaks like these cause death, hospitalizations, massive economic losses and an overall loss of consumer confidence in food safety. Ruminating animals such as cattle and sheep can harbor pathogenic <i>E. coli</i> asymptomatically and are a major source of contamination in many cases (Centers for Disease Control and Prevention, 2011). However consumption of pathogenic <i>E. coli</i> by humans can induce abdominal pain and bloody diarrhea requiring hospitalization, and in severe cases cause death (Centers for Disease Control and Prevention, 2011). Pathogenic <i>E. coli</i> is a major issue in the developing world where the consequences are exacerbated by the poor sanitation and rudimentary health network, the greatest risks are associated with children, the elderly and HIV positive patients (Okeke, 2009). Quick detection of the pathogen is critical to reduce waste, stop the spread of illness, and ultimately save lives. Current testing methods take a long time to complete due to the time it takes to culture <i>E. coli</i> and require lab equipment to amplify the target gene sequences.
 +
</p>
 +
 
 +
<p>One of the factors that amplifies the risk of <i>E. coli</i> outbreaks is the lack of a rapid, on-site detection method. In response, our team is using synthetic biology to develop a system to rapidly detect the presence of EHEC in the beef industry. Although we designed our sensor for testing in the beef industry provides, we designed it so that it can also detect EHEC in things like vegetables, water, and other livestock.  By using engineered biological nanoparticles and DNA binding proteins, we can specifically detect pathogenic DNA sequences. Our biosensor functions at the genomic level to detect the presence of EHEC in a sample. This system allows us to quickly identify contamination during meat processing and also provides the ability to pre-screen cattle to limit potential sources of contamination before cattle enter the processing plant. Our system not only provides a powerful new tool for food safety, but also has the potential to act as a platform for the rapid detection of target organisms. These tests could hugely impact a myriad of industry applications ranging from the everyday, large-scale use in food safety testing and medical screening, to the specialized use in the detection and monitoring of biological weapons and hazards.</p>
 +
 
 +
</section>
 +
 +
<section id="SectionLinks">
 +
<div class="Wrap">
 +
<a href="https://2013.igem.org/Team:Calgary/Project/OurSensor">
 +
<div id="DescriptionLink1" class="DescriptionLink">
 +
<h2>Our Sensor</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/4/44/Calgary2013_Our_Sensor.png">
 +
<p>Check out what we did in the lab this summer to detect <i>E. coli</i> contamination! Learn about the design of our detector, linker, and reporter as well as our prototype and modelling.</p>
 +
</div>
 +
</a>
 +
 +
<a href="https://2013.igem.org/Team:Calgary/Project/PostRegionals">
 +
<div id="DescriptionLink2" class="DescriptionLink">
 +
<h2>Final System</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/b/bf/Calgary2013_Data_Page.png">
 +
<p>We have shown our final system in action! Click here to see our modeling, talks with industry, and characterization data combine to make a biosensor that can detect DNA in under 5 minutes!</p>
 +
</div>
 +
</a>
 +
<div style="clear:both;"></div>
 +
<a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices">
 +
<div id="DescriptionLink3" class="DescriptionLink">
 +
<h2>Human Practices</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/2/25/2013calgarynewbuttonHuman_Practices.png">
 +
<p>Check out how Human Practices helped guide the development of our project. Learn how we spent time talking to various experts in the industry to design our project with our end-user in mind.</p>
 +
</div>
 +
</a>
 +
 +
<a href="https://2013.igem.org/Team:Calgary/Project/Collaboration">
 +
<div id="DescriptionLink4" class="DescriptionLink">
 +
<h2>Collaboration</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/3/36/Calgary2013_CollaborationButton.png">
 +
<p>We worked hard with the Paris-Bettencourt team this season to develop useful tools for the rest of the iGEM community. Click here to find out what our collaboration can add to iGEM. </p>
 +
</div>
 +
</a>
 +
</div>
 +
</section>
 +
 +
<section id="Logos">
 +
<h2 style="text-align: center;">Thank You to Our Sponsors</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/f/f6/2013UCalgaryLogos.png" style="margin: 50px;"> </section>
 +
</section>
</body>
</body>
</html>
</html>

Latest revision as of 01:12, 11 August 2014

Our Project

Pathogenic Enterohaemorrhagic E. coli serotype O157:H7 is a major source of foodborne illness worldwide. In Alberta, we experienced a pathogenic E. coli outbreak in late 2012, this outbreak was the result contaminated beef and led to the largest meat recall in Canadian history (Cross, 2012). Outbreaks like these cause death, hospitalizations, massive economic losses and an overall loss of consumer confidence in food safety. Ruminating animals such as cattle and sheep can harbor pathogenic E. coli asymptomatically and are a major source of contamination in many cases (Centers for Disease Control and Prevention, 2011). However consumption of pathogenic E. coli by humans can induce abdominal pain and bloody diarrhea requiring hospitalization, and in severe cases cause death (Centers for Disease Control and Prevention, 2011). Pathogenic E. coli is a major issue in the developing world where the consequences are exacerbated by the poor sanitation and rudimentary health network, the greatest risks are associated with children, the elderly and HIV positive patients (Okeke, 2009). Quick detection of the pathogen is critical to reduce waste, stop the spread of illness, and ultimately save lives. Current testing methods take a long time to complete due to the time it takes to culture E. coli and require lab equipment to amplify the target gene sequences.

One of the factors that amplifies the risk of E. coli outbreaks is the lack of a rapid, on-site detection method. In response, our team is using synthetic biology to develop a system to rapidly detect the presence of EHEC in the beef industry. Although we designed our sensor for testing in the beef industry provides, we designed it so that it can also detect EHEC in things like vegetables, water, and other livestock. By using engineered biological nanoparticles and DNA binding proteins, we can specifically detect pathogenic DNA sequences. Our biosensor functions at the genomic level to detect the presence of EHEC in a sample. This system allows us to quickly identify contamination during meat processing and also provides the ability to pre-screen cattle to limit potential sources of contamination before cattle enter the processing plant. Our system not only provides a powerful new tool for food safety, but also has the potential to act as a platform for the rapid detection of target organisms. These tests could hugely impact a myriad of industry applications ranging from the everyday, large-scale use in food safety testing and medical screening, to the specialized use in the detection and monitoring of biological weapons and hazards.

Thank You to Our Sponsors