Team:Calgary

From 2013.igem.org

(Difference between revisions)
(update numbers on project description)
Line 1: Line 1:
 +
{{Team:Calgary/Main}}
<html>
<html>
-
<head>
+
<head>
-
<title>Calgary iGEM Home 2</title>
+
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/HomePage?action=raw&ctype=text/css" rel="stylesheet">
-
</head>
+
<script>
-
<body align="center">
+
$(document).ready(function() {
-
<p>Our website is under construction. Please check back later to see our complete page.</p>
+
var ScreenWidth = $('body').width();
-
<h1>Our Plan</h1>
+
if (ScreenWidth > 1007) {
-
<p>Outbreaks of foodborne illnesses are a growing problem in our lives. In 2011, the Centers for Disease Control and Prevention (CDC) in the United States, identified 767 outbreaks affecting nearly 14,000 people of foodborne illnesses. Of these, pathogenic <i>E. coli</i> was a recurring theme in many of these outbreaks. In Alberta, we recently experienced our own foodborne disease outbreak in late 2012. This outbreak was the result of pathogenic <i>E. coli</i> serotype O157 and led to significant food recall alongside many hospitalizations, deaths, massive economic losses and an overall loss of consumer confidence in food safety. Current detection methods require long incubation times to amplify <i>E. coli</i> in the sample and followed by amplification to verify the presence of known genes that are associated with pathogenic <i>E. coli</i>. One of the contributing factors connected with the outbreak in Alberta was the lack of rapid on-site detection systems available. Thus, the University of Calgary 2013 iGEM Collegiate team is using synthetic biology to develop system to rapidly detect the presence of pathogenic <i>E. coli</i> in the beef industry. 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 or absence of pathogenic <i>E. coli</i> in a given sample. This system allows us to pinpoint contamination during meat processing and also provides the ability to prescreen cattle in a preventative way to limit potential sources of contamination from the processing chain. Our system provides a powerful new tool for food safety, but also shows promise as a platform for the rapid detection of target organisms that are identified as key targets in a myriad of sectors from health to environment to biosecurity.</p>
+
var Margins = Math.floor(ScreenWidth * .086666);
-
</body>
+
var ElementWidth = Math.floor(ScreenWidth * .37);
 +
 +
$('#SectionLinks').css('padding-left', Margins);
 +
$('#SectionLinks').css('padding-top', Margins);
 +
$('#SectionLinks .DescriptionLink').css('margin-right', Margins);
 +
$('#SectionLinks .DescriptionLink').css('margin-bottom', Margins);
 +
$('#SectionLinks .DescriptionLink').css('width', ElementWidth);
 +
}
 +
 +
$(window).resize(function() {
 +
var ScreenWidth = $('body').width();
 +
if (ScreenWidth > 1007) {
 +
var Margins = Math.floor(ScreenWidth * .086666);
 +
var ElementWidth = Math.floor(ScreenWidth * .37);
 +
 +
$('#SectionLinks').css('padding-left', Margins);
 +
$('#SectionLinks').css('padding-top', Margins);
 +
$('#SectionLinks .DescriptionLink').css('margin-right', Margins);
 +
$('#SectionLinks .DescriptionLink').css('margin-bottom', Margins);
 +
$('#SectionLinks .DescriptionLink').css('width', ElementWidth);
 +
}
 +
});
 +
});
 +
</script>
 +
<script>
 +
$(document).ready(function() {
 +
//Display slider for Javascript users
 +
$('#Slider').css('display', 'block');
 +
 +
//Set height of slider (16/5 ratio)
 +
$('#Slider').css('height', ($('body').width() / 3.2));
 +
 +
//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() {
 +
$('#Slider').css('height', ($('body').width() / 3.2));
 +
 +
var BarHeight = $('#Slider').height() -  $('#BottomLinks').height();
 +
$('#LeftBar, #RightBar').css('height', BarHeight);
 +
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
 +
});
 +
 +
var TotalSlides = $('.Slides').length
 +
var CurrentSlide = 0;
 +
 
 +
$('#RightArrow').click(function() {
 +
CurrentSlide = ++CurrentSlide % TotalSlides;
 +
$('.Slides').css('display', 'none');
 +
SlideID = '#Slide' + CurrentSlide;
 +
$(SlideID).css('display', 'block');
 +
});
 +
 +
$('#LeftArrow').click(function() {
 +
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
 +
$('.Slides').css('display', 'none');
 +
SlideID = '#Slide' + CurrentSlide;
 +
$(SlideID).css('display', 'block');
 +
});
 +
 +
$('.SlideLink').click(function() {
 +
var ClickedSlide = $(this).attr('id');
 +
CurrentSlide = parseInt(ClickedSlide.replace('Link', ''));
 +
$('.Slides').css('display', 'none');
 +
SlideID = '#Slide' + CurrentSlide;
 +
$(SlideID).css('display', 'block');
 +
});
 +
});
 +
</script>
 +
</head>
 +
 +
<body>
 +
<section id="HomePageContent">
 +
<div id="Slider">
 +
<div id="Slide0" class="Slides"></div>
 +
<div id="Slide1" class="Slides"></div>
 +
<div id="Slide2" class="Slides"></div>
 +
<div id="Slide3" class="Slides"></div>
 +
<div id="Slide4" class="Slides"></div>
 +
<div id="LeftBar" class="SideBar"><div id="LeftArrow"></div></div>
 +
<div id="RightBar" class="SideBar"><div id="RightArrow"></div></div>
 +
<ul id="BottomLinks">
 +
<li id="Link0" class="SlideLink">Red</li><li id="Link1" class="SlideLink">Orange</li><li id="Link2" class="SlideLink">Green</li><li id="Link3" class="SlideLink">Blue</li><li id="Link4" class="SlideLink">Purple</li>
 +
</ul>
 +
</div>
 +
 +
<section id="Overview">
 +
<h2>Our Project</h2>
 +
<p>
 +
Outbreaks of foodborne illnesses are a growing problem in our lives. In 2011, the Centers for Disease Control and Prevention (CDC) in the United States, identified 767 outbreaks affecting nearly 14,000 people of foodborne illnesses. Of these, pathogenic <i>E. coli</i> was a recurring theme in many of these outbreaks. In Alberta, we recently experienced our own foodborne disease outbreak in late 2012. This outbreak was the result of pathogenic <i>E. coli</i> serotype O157 and led to significant food recall alongside many hospitalizations, deaths, massive economic losses and an overall loss of consumer confidence in food safety. Current detection methods require long incubation times to amplify <i>E. coli</i> in the sample and followed by amplification to verify the presence of known genes that are associated with pathogenic <i>E. coli</i>.
 +
</p>
 +
<p>
 +
One of the contributing factors connected with the outbreak in Alberta was the lack of rapid on-site detection systems available. Thus, the University of Calgary 2013 iGEM Collegiate team is using synthetic biology to develop system to rapidly detect the presence of pathogenic <i>E. coli</i> in the beef industry. 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 or absence of pathogenic <i>E. coli</i> in a given sample. This system allows us to pinpoint contamination during meat processing and also provides the ability to prescreen cattle in a preventative way to limit potential sources of contamination from the processing chain. Our system provides a powerful new tool for food safety, but also shows promise as a platform for the rapid detection of target organisms that are identified as key targets in a myriad of sectors from health to environment to biosecurity.
 +
</p>
 +
</section>
 +
 +
<section id="SectionLinks">
 +
<a href="https://2013.igem.org/Team:Calgary/Project/OurSensor">
 +
<div id="DescriptionLink1" class="DescriptionLink">
 +
<h2>Our Sensor</h2>
 +
<p>
 +
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
 +
</p>
 +
</div>
 +
</a>
 +
 +
<a href="https://2013.igem.org/Team:Calgary/Project/DataPage">
 +
<div id="DescriptionLink2" class="DescriptionLink">
 +
<h2>Data Page</h2>
 +
<p>
 +
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
 +
</p>
 +
</div>
 +
</a>
 +
 +
<a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices">
 +
<div id="DescriptionLink3" class="DescriptionLink">
 +
<h2>Human Practices</h2>
 +
<p>
 +
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
 +
</p>
 +
</div>
 +
</a>
 +
 +
<a href="https://2013.igem.org/Team:Calgary/Project/Collaboration">
 +
<div id="DescriptionLink4" class="DescriptionLink">
 +
<h2>Collaboration</h2>
 +
<p>
 +
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
 +
</p>
 +
</div>
 +
</a>
 +
</section>
 +
</section>
 +
</body>
</html>
</html>

Revision as of 05:53, 24 September 2013

Our Project

Outbreaks of foodborne illnesses are a growing problem in our lives. In 2011, the Centers for Disease Control and Prevention (CDC) in the United States, identified 767 outbreaks affecting nearly 14,000 people of foodborne illnesses. Of these, pathogenic E. coli was a recurring theme in many of these outbreaks. In Alberta, we recently experienced our own foodborne disease outbreak in late 2012. This outbreak was the result of pathogenic E. coli serotype O157 and led to significant food recall alongside many hospitalizations, deaths, massive economic losses and an overall loss of consumer confidence in food safety. Current detection methods require long incubation times to amplify E. coli in the sample and followed by amplification to verify the presence of known genes that are associated with pathogenic E. coli.

One of the contributing factors connected with the outbreak in Alberta was the lack of rapid on-site detection systems available. Thus, the University of Calgary 2013 iGEM Collegiate team is using synthetic biology to develop system to rapidly detect the presence of pathogenic E. coli in the beef industry. 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 or absence of pathogenic E. coli in a given sample. This system allows us to pinpoint contamination during meat processing and also provides the ability to prescreen cattle in a preventative way to limit potential sources of contamination from the processing chain. Our system provides a powerful new tool for food safety, but also shows promise as a platform for the rapid detection of target organisms that are identified as key targets in a myriad of sectors from health to environment to biosecurity.