Team:Calgary

From 2013.igem.org

(Difference between revisions)
Line 2: Line 2:
<html>
<html>
<head>
<head>
-
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/HomePage?action=raw&ctype=text/css" rel="stylesheet">
+
<link href="https://2013.igem.org/Team:Calgary/StyleSheets/Team?action=raw&ctype=text/css" rel="stylesheet">
 +
 +
<!-- JavaScript & JQuery -->
<script>
<script>
-
$(document).ready(function() {
+
$(document).ready(function() {
-
//Display slider for Javascript users
+
var TotalSlides = $('.Person').length
-
$('#Slider').css('display', 'block');
+
var CurrentSlide = 0;
 +
 +
$('#Carousel').css('display', 'block');
 +
$('.Info').css('display', 'none');
 +
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
 +
 +
if ($('body').width() < 990) {
 +
$('.Slide0, .Slide4').css('display', 'none');
 +
$('.Slide1').css('left', '90px');
 +
$('.Slide2').css('left', '255px');
 +
$('.Slide3').css('left', '420px');
 +
$('#Carousel, #WriteUp').css('width', '675px');
 +
}
 +
if ($('body').width() < 675) {
 +
$('#Carousel').css('display', 'none');
 +
$('.Info').css('display', 'block');
 +
$('#WriteUp').css('width', '100%');
 +
$('#WriteUp .Text, #WriteUp .InfoImg').css('width', '100%')
 +
}
 +
 +
$(window).resize(function() {
 +
if ($('body').width() >= 990) {
 +
$('.Slide0, .Slide4').css('display', 'block');
 +
$('.Person').css('left', '');
 +
$('#Carousel, #WriteUp').css('width', '990px');
 +
$('#Carousel').css('display', 'block');
 +
$('.Info').css('display', 'none');
 +
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
 +
$('#WriteUp .Text, #WriteUp .InfoImg').css('width', '50%')
 +
}
 +
if ($('body').width() < 990) {
 +
$('.Slide0, .Slide4').css('display', 'none');
 +
$('.Slide1').css('left', '90px');
 +
$('.Slide2').css('left', '255px');
 +
$('.Slide3').css('left', '420px');
 +
$('#Carousel, #WriteUp').css('width', '675px');
 +
$('#Carousel').css('display', 'block');
 +
$('.Info').css('display', 'none');
 +
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
 +
$('#WriteUp .Text, #WriteUp .InfoImg').css('width', '50%')
 +
}
 +
if ($('body').width() < 675) {
 +
$('#Carousel').css('display', 'none');
 +
$('.Info').css('display', 'block');
 +
$('#WriteUp').css('width', '100%');
 +
$('#WriteUp .Text, #WriteUp .InfoImg').css('width', '100%')
 +
}
 +
});
 +
 +
$('#bodyContent').css({'min-height' : $(window).height(), background : 'url(https://static.igem.org/mediawiki/2013/8/89/2013UCalgaryTeamBackground.png)'});
 +
 +
$('#RightArrow').click(function() {
 +
CurrentSlide = ++CurrentSlide % TotalSlides;
 +
$('.Person').css('display', 'none');
 +
var i = CurrentSlide;
 +
 +
for (var count = 0; count < 5; count++) {
 +
if (i >= TotalSlides)
 +
i = 0;
-
//Set height of slider (16/5 ratio)
+
$('.Person').removeClass('Slide' + count);
-
$('#Slider').css('height', ($('body').width() / 3.2));
+
 +
SlideID = '#Person' + i;
 +
$(SlideID).css('display', 'block').addClass('Slide' + count);
 +
i++;
 +
}
 +
 +
$('.Info').css('display', 'none');
 +
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
 +
 +
if ($('body').width() < 990) {
 +
$('.Slide0, .Slide4').css('display', 'none');
 +
$('.Slide1').css('left', '90px');
 +
$('.Slide2').css('left', '255px');
 +
$('.Slide3').css('left', '420px');
 +
$('#Carousel, #WriteUp').css('width', '675px');
 +
}
 +
});
 +
 +
$('#LeftArrow').click(function() {
 +
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
 +
$('.Person').css('display', 'none');
 +
var i = CurrentSlide;
 +
 +
for (var count = 0; count < 5; count++) {
 +
if (i >= TotalSlides)
 +
i = 0;
-
//Position right/left arrows
+
$('.Person').removeClass('Slide' + count);
-
var BarHeight = $('#Slider').height() $('#BottomLinks').height();
+
-
$('#LeftBar, #RightBar').css('height', BarHeight);
+
SlideID = '#Person' + i;
-
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
+
$(SlideID).css('display', 'block').addClass('Slide' + count);
-
 
+
i++;
-
//Repeats for window resize
+
}
-
$(window).resize(function() {
+
-
$('#Slider').css('height', ($('body').width() / 3.2));
+
$('.Info').css('display', 'none');
-
+
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
-
var BarHeight = $('#Slider').height() $('#BottomLinks').height();
+
-
$('#LeftBar, #RightBar').css('height', BarHeight);
+
if ($('body').width() < 990) {
-
$('#LeftArrow, #RightArrow').css('top', (BarHeight-60)/2);
+
$('.Slide0, .Slide4').css('display', 'none');
-
});
+
$('.Slide1').css('left', '90px');
 +
$('.Slide2').css('left', '255px');
 +
$('.Slide3').css('left', '420px');
 +
$('#Carousel, #WriteUp').css('width', '675px');
 +
}
 +
});
 +
 +
$('.Person').click(function() {
 +
var ClickedPerson = $(this).attr('id');
 +
CurrentSlide = ((parseInt(ClickedPerson.replace('Person', ''))) + TotalSlides - 2) % TotalSlides;
 +
 +
$('.Person').css('display', 'none');
 +
var i = CurrentSlide;
 +
 +
for (var count = 0; count < 5; count++) {
 +
if (i >= TotalSlides)
 +
i = 0;
-
var TotalSlides = $('.Slides').length
+
$('.Person').removeClass('Slide' + count);
-
var CurrentSlide = 0;
+
-
 
+
SlideID = '#Person' + i;
-
$('#RightArrow').click(function() {
+
$(SlideID).css('display', 'block').addClass('Slide' + count);
-
CurrentSlide = ++CurrentSlide % TotalSlides;
+
i++;
-
$('.Slides').css('display', 'none');
+
}
-
SlideID = '#Slide' + CurrentSlide;
+
-
$(SlideID).css('display', 'block');
+
$('.Info').css('display', 'none');
-
});
+
$('#Bio' + ((CurrentSlide + TotalSlides + 2) % TotalSlides)).css('display', 'block');
-
+
-
$('#LeftArrow').click(function() {
+
if ($('body').width() < 990) {
-
CurrentSlide = (CurrentSlide + TotalSlides - 1) % TotalSlides;
+
$('.Slide0, .Slide4').css('display', 'none');
-
$('.Slides').css('display', 'none');
+
$('.Slide1').css('left', '90px');
-
SlideID = '#Slide' + CurrentSlide;
+
$('.Slide2').css('left', '255px');
-
$(SlideID).css('display', 'block');
+
$('.Slide3').css('left', '420px');
-
});
+
$('#Carousel, #WriteUp').css('width', '675px');
-
+
}
-
$('.SlideLink').click(function() {
+
});
-
var ClickedSlide = $(this).attr('id');
+
});
-
CurrentSlide = parseInt(ClickedSlide.replace('Link', ''));
+
</script>
-
$('.Slides').css('display', 'none');
+
<script>
-
SlideID = '#Slide' + CurrentSlide;
+
document.ondblclick = function(evt) {
-
$(SlideID).css('display', 'block');
+
    if (window.getSelection)
-
});
+
        window.getSelection().removeAllRanges();
-
});
+
    else if (document.selection)
-
</script>
+
        document.selection.empty();
 +
}
 +
</script>
</head>
</head>
-
+
 
<body>
<body>
-
<section id="HomePageContent">
+
<h1>Team Members</h1>
-
<div id="Slider">
+
-
<div id="Slide0" class="Slides"></div>
+
<div id="TeamMembers">
-
<div id="Slide1" class="Slides"></div>
+
<div id="Carousel">
-
<div id="Slide2" class="Slides"></div>
+
<div id="LeftArrow" class="Arrow"></div>
-
<div id="Slide3" class="Slides"></div>
+
<div id="Person0" class="Person Slide0"></div>
-
<div id="Slide4" class="Slides"></div>
+
<div id="Person1" class="Person Slide1"></div>
-
<div id="Slide5" class="Slides"></div>
+
<div id="Person2" class="Person Slide2"></div>
-
<div id="LeftBar" class="SideBar"><div id="LeftArrow"></div></div>
+
<div id="Person3" class="Person Slide3"></div>
-
<div id="RightBar" class="SideBar"><div id="RightArrow"></div></div>
+
<div id="Person4" class="Person Slide4"></div>
-
<ul id="BottomLinks">
+
<div id="Person5" class="Person"></div>
-
<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>
+
<div id="Person6" class="Person"></div>
-
</ul>
+
<div id="Person7" class="Person"></div>
 +
<div id="Person8" class="Person"></div>
 +
<div id="Person9" class="Person"></div>
 +
<div id="Person10" class="Person"></div>
 +
<div id="Person11" class="Person"></div>
 +
<div id="Person12" class="Person"></div>
 +
<div id="Person13" class="Person"></div>
 +
<div id="Person14" class="Person"></div>
 +
<div id="Person15" class="Person"></div>
 +
<div id="Person16" class="Person"></div>
 +
<div id="Person17" class="Person"></div>
 +
<div id="Person18" class="Person"></div>
 +
<div id="Person19" class="Person"></div>
 +
<div id="Person20" class="Person"></div>
 +
<div id="Person21" class="Person"></div>
 +
<div id="Person22" class="Person"></div>
 +
<div id="Person23" class="Person"></div>
 +
<div id="RightArrow" class="Arrow"></div>
</div>
</div>
-
<section id="Overview">
+
<div id="WriteUp">
-
<h2>Our Project</h2>
+
<div id="Bio0" class="Info">
-
<p>
+
<div class="InfoImg"><img src="BigPic2.jpg"></div>
-
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>.
+
<div class="Text">
-
</p>
+
<h2>Dr. Mark Bieda</h2>
-
<p>
+
<h3>Bioinformatics (Assistant Director)</h3>
-
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>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.</p>
-
</p>
+
<h3><a href="http://www.linkedin.com/pub/mark-bieda/2/344/21" target="_blank">View My LinkedIn Profile</a></h3>
-
</section>
+
</div>
-
+
-
<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>
+
-
<p>Check out what we did in the lab this year in response to <i>E. coli</i> contamination in the beef industry. Learn about the design of our detector, linker, reporter as well as the development of a prototype and mathematical model.</p>
+
-
</div>
+
-
</a>
+
-
+
-
<a href="https://2013.igem.org/Team:Calgary/Project/DataPage">
+
-
<div id="DescriptionLink2" class="DescriptionLink">
+
-
<h2>Data Page</h2>
+
-
<p>Want to see a summary of what we accomplished this season? Click here to check out our data page where we outline all of the work that we’ve done to date!</p>
+
-
</div>
+
-
</a>
+
-
+
-
<a href="https://2013.igem.org/Team:Calgary/Project/HumanPractices">
+
-
<div id="DescriptionLink3" class="DescriptionLink">
+
-
<h2>Human Practices</h2>
+
-
<p>Check out how Human Practices helped to guide the development of our sensor. Learn how we spent time talking to various experts in the beef industry in order 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>
+
-
<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 class="Clear"></div>
+
</div>
</div>
-
</section>
+
<div id="Bio1" class="Info">
-
</section>
+
<div class="InfoImg"><img src="BigPic2.jpg"></div>
 +
<div class="Text">
 +
<h2>Dr. Mayi Arcellana-Panlilio</h2>
 +
<h3>Biochemistry &#38; Molecular Biology (Professor)</h3>
 +
<p>I have been involved with teaching/mentoring in the Bachelor of Health Sciences program since 2003, primarily to develop and deliver the Honours Cell & Molecular Biology course, a core requirement in the curriculum. I have taught every offering of that course and received numerous accolades from the Faculty and the students, most recently winning the Teaching Excellence Award for 2010-2011 from the University of Calgary Students Union. This is my third year as an iGEM Instructor and my interest in the program springs from my belief in the value of inquiry as a means to getting students engaged in the pursuit of knowledge and developing habits of becoming lifelong learners.</p>
 +
<h3><a href="http://www.linkedin.com/pub/mayi-arcellana-panlilio/1/649/b25" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio2" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/7/72/2013UCalgaryAliMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Ali Honarmand</h2>
 +
<h3>Biological Sciences (4th Year)</h3>
 +
<p>This is my 2nd year of iGEM and I am leading the <a href= "https://2013.igem.org/Team:Calgary/Project/OurSensor/Detector" target="_blank">TALEs</a> part of the project. That is how I got nicknamed "TALI.". I really like how iGEM is completely student driven and how it is not just about the science. It has really broadened my perspectives about all the different components that need to go into a project to make it successful and useful to the society. When I'm not in the lab serving dinner to <i>E. coli</i> or sitting in front of my computer staring at ATCGs, you can find me appreciating the gravity in the mountains either on my bike or snowboard, reading a book, or trying something completely random. </p>
 +
<h3><a href="http://www.linkedin.com/pub/ali-honarmand/79/239/676" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio3" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/8/8b/2013UCalgaryAmandaMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Amanda Zucoloto</h2>
 +
<h3>Biomedical Sciences (3rd Year)</h3>
 +
<p>This is my first year on iGEM and I have been working with TALEs, which involved alternative cloning strategies and lots of fun time doing protein work over the Summer. When I am not pippeting in the lab to the sound of Backstreet Boys, I spend my time working out, exploring Canada and catching up with family and friends who are all the way back in Brazil. Even though I still have a couple months here in Calgary, I can't wait to come back as a graduate student!</p>
 +
</div>
 +
</div>
 +
<div id="Bio4" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/a/a5/2013UCalgaryChrisMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Chris Wintersinger</h2>
 +
<h3>Biomedical Sciences (4th Year)</h3>
 +
<p>This is my second year on the iGEM Calgary team and I have my hands in every part of the project. Formally though, I am leading the <a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Detector" target="_blank">detector</a> team and have been nicknamed &#34;Christoferritin&#34; by my team mates. When I am not slaving in the early morning hours in our lab, you&#39;ll find me travelling on remote logging roads in the backwoods of Alberta, or covered in grease working on my pickup truck. After I conquer iGEM, I hope to start a career as a hand model, enter a travelling carnival, or failing those, continue my journey in synthetic biology as a graduate student.</p>
 +
<h3><a href="http://ca.linkedin.com/pub/chris-wintersinger/53/8a/361" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio5" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/2/2c/2013UCalgaryDennyMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Denny Hoang</h2>
 +
<h3>Cellular, Molecular, &#38; Microbial Biology (4th Year)</h3>
 +
<p>This is my first year in the iGEM team and I've largely played a role in the <a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter" target="_blank">reporter</a> part of the team. I've been previously exposed in a lab involving environmental microbiology, thus this experience has given me the opportunity learn many different techniques and skills used in synthetic biology.  In my spare time I've enjoyed playing soldier, snowboarding and reading novels.</p>
 +
</div>
 +
</div>
 +
<div id="Bio6" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/f/f8/2013UCalgaryJulieMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Julie Osgood</h2>
 +
<h3>Biomedical Sciences (3rd Year)</h3>
 +
<p>This is my first year with iGEM and I have spent my summer focusing on the TALE aspect of our project. I devoted my time to designing the E. coli target sequences and putting together our TALE constructs. When I’m not redoing all my experiments that didn’t work, I enjoy dancing, reading, and watching Battestar Galactica. I have spent my past couple summers working in research labs, but I loved having the opportunity to join a student driven research team. In the future I hope to be a professional Quidditch player or a geneticist.</p>
 +
</div>
 +
</div>
 +
<div id="Bio7" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/0/04/2013UCalgaryJustinMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Justin Dole</h2>
 +
<h3>Biological Sciences (2nd Year)</h3>
 +
<p>Heading into my second undergraduate year, I can undoubtedly say that the past few months have helped put my academic knowledge into context. I held various roles this summer, but was ultimately in charge of qualitative modelling using Autodesk Maya. This has been my first year with iGEM; the exposure to various disciplines has allowed me to see the interconnectivity between synthetic biology, engineering, and business. Besides waiting for the lab computer to process 22GB of RAM, I take pride in eating well, exercising regularly, sleeping in, and picking flowers for my Mom. I two-strap my backpack, have a keen interest in entrepreneurship, technology, and medicine, and love anything with an engine to the point that I consider myself obsessed.</p>
 +
</div>
 +
</div>
 +
<div id="Bio8" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/8/84/2013UCalgaryKeithMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Wm. Keith van der Meulen</h2>
 +
<h3>Electrical &#38; Computer Engineering (2nd Year)</h3>
 +
<p>This summer, I have been responsible for the designing and coding this <a href="https://2013.igem.org/Team:Calgary" target="_blank">website</a> and working on the <a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Modeling" target="_blank">modeling</a> part of the team. I am pursuing a career in aeronautical robotics R&D, so I have found my time working in a research setting with iGEM this year very valuable. Besides staying up until 2 a.m. coding, I also spend my time running <a href="http://www.fosterbikes.com" target="_blank">Foster Bikes</a>, a non-profit, Seattle-based company I co-founded. In my free time, I enjoy hiking, backpacking, skiing, and trying to learn about this weird thing non-engineers call a &#34;social life&#34;.</p>
 +
<h3><a href="http://www.linkedin.com/in/wkeithvan" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio9" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/f/f2/2013UCalgaryRuthMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Ruth Moges</h2>
 +
<h3>Biological Sciences (3rd Year)</h3>
 +
<p>This is my first year with iGEM. I've mostly been helping out the undergrad supervisors with their arbitrary needs, so I've been a part of the TALEs, Ferritin and Linker teams. I've loved the opportunity to work in a lab, this is my first year doing so independently. Later in life I hope to become an optometrist, looking into people's eyes is one of my favourite pastimes. When not in the lab though, I am doing other fun activities like reading, hanging out with my friends and soaking up as much vitamin D as I can before winter comes! </p>
 +
</div>
 +
</div>
 +
<div id="Bio10" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/c/ce/2013UCalgarySharonMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Sharon Feng</h2>
 +
<h3>Biomedical Sciences (3rd Year)</h3>
 +
<p>This summer was my first year being involved in iGEM and a wet lab setting. I was fortunate to be a member of the TALEs team where I have learned so much about synthetic biology, bacterial genetics, and general lab practices. Last year, I was involved with clinical studies of children with inflammatory bowel disease at the Alberta Children's Hospital. In my free time, I enjoy reading novels, watching movies, and spending time with family and friends.</p>
 +
</div>
 +
</div>
 +
<div id="Bio11" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/0/05/2013UCalgaryRaiMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Somshukla (Rai) Chaudhuri</h2>
 +
<h3>Biomedical Sciences (4th Year)</h3>
 +
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.</p>
 +
<h3><a href="http://ca.linkedin.com/pub/somshukla-chaudhuri/79/322/948" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio12" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/2/20/2013UCalgarySuMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Su Wang</h2>
 +
<h3>Chemical Engineering (4th Year)</h3>
 +
<p>I am a chemical engineering student with a specialization in biomedical engineering. Prior to join iGEM I have been doing researches in chemical engineering labs for thermodynamics or in-situ oil upgrading. Those were professor-driven research projects where even though I had good experiences, there was little I could do to test my own hypothesis. That&#39;s why I came for iGEM; for the student driven research aspect. Here I wish to combine with what I have learned from system biology class, with my training in modelling, to work on things that interest me!</p>
 +
</div>
 +
</div>
 +
<div id="Bio13" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/d/d0/2013UCalgaryTaylorMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Taylor Remondini</h2>
 +
<h3>Cellular, Molecular, &#38; Microbial Biology (4th Year)</h3>
 +
<p>This is my first year with the iGEM Calgary team and I have been involved primarily with the <a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Reporter" target="_target">reporter</a>, <a href="https://2013.igem.org/Team:Calgary/Project/OurSensor/Linker" target="_target">linker</a>, and wiki design elements of the project. My main interest has been in testing the potential of chemically modified ferritin nano-particles as a reporter system for our project. Between working in the lab and harassing Keith about the design of the wiki you can find me on the golf course or ensuring that my car is spotless. Going into the future I am pursuing entrance into medical school to further my career. iGEM has been an invaluable experience for many of the trials I will face going forward with life.</p>
 +
</div>
 +
</div>
 +
<div id="Bio14" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/2/2c/2013UCalgaryIainMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Iain George</h2>
 +
<h3>Biological Sciences (2nd Year Masters)</h3>
 +
<p>This is my second year on our iGEM team at the University of Calgary.  I am a master student in biological sciences at the U of C. My research is in investigating how RNA-binding proteins act to regulate various genes at the post-transcriptional level. Previously, I worked as a member of the Biofilm Research Group at the U of C, studying how bacterial biofilms could be applied to bioremediate environmentally contaminated sites. When I am not living/sleeping/supervising in the lab, you may find me in the mountains surrounding Calgary hiking and trying my hand at photography.</p>
 +
<h3><a href="http://ca.linkedin.com/in/iaingeorge" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio15" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/0/01/2013UCalgaryHimikaMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Himika Dastidar</h2>
 +
<h3>Microbiology, Immunology, and Infectious Diseases (1st Year Masters)</h3>
 +
<p>I am an iGEM veteran and this is my 3rd year doing iGEM. This year I came back as a graduate supervisor. I get to supervise the kids this year. In my spare time or the lack thereof I study cancer biology, skate around in quad skates or you can find me drinking a beer at the bar.</p>
 +
<h3><a href="http://ca.linkedin.com/pub/himika-dastidar/37/748/236" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio16" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/d/d9/2013UCalgaryJamieMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Jamie Fegan</h2>
 +
<h3>Microbiology &#38; Infectious Diseases (3rd Year PhD)</h3>
 +
<p>I am studying vaccine design and antigen engineering against the pathogen Neisseria meningitidis, the causative agent of meningococcal disease. As an iGEM newcomer, I’m amazed at how everyone functions on so little sleep, but I’m doing my best as I help with the protein expression and purification side of the project. When I’m not running in circles around the lab, I can be found playing volleyball or squash with friends, sliding down a mountain in an attempt at snowboarding, or hanging out at home with a glass of wine binge watching entire TV series with my cats. </p>
 +
</div>
 +
</div>
 +
<div id="Bio17" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/2/2e/2013UCalgaryKateMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Kate Chatfield-Reed</h2>
 +
<h3>Biological Sciences (4th Year PhD)</h3>
 +
<p>This is my first year as an advisor for iGEM and my first year involved with iGEM in any capacity. I’ve been offering small pieces of advice over all areas of the project. When I finally finish my PhD I hope to stay in the wonderful world of academia forever. In my spare time I play soccer and hockey or read too much.</p>
 +
</div>
 +
</div>
 +
<div id="Bio18" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/b/be/2013UCalgaryLisaMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Lisa Oberding</h2>
 +
<h3>Biological Sciences (1st Year Masters)</h3>
 +
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.</p>
 +
<h3><a href="http://www.linkedin.com/pub/lisa-oberding/52/608/b93" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio19" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/3/31/2013UCalgaryPatrickMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Patrick Wu</h2>
 +
<h3>Biomedical Technology (1st Year Masters)</h3>
 +
<p>After four years of undergrad (and three years of iGEM) I am now working on my Masters of Biomedical Technology here at the University of Calgary. This is now my fourth year as a part of iGEM, though I now act as a part-time advisor/consultant/distraction to the team. I am very excited to see how user-centered design can be applied to non-traditional fields like biology, and iGEM never disappoints me with all the cool ideas that come out. In my spare time, you can probably find me fiddling around with Photoshop and Illustrator, or asleep. Sleep is always nice.</p>
 +
<h3><a href="http://www.linkedin.com/in/wujpatrick" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio20" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/6/65/2013UCalgaryRobertMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Robert Mayall</h2>
 +
<h3>Biochemistry & Molecular Biology (Recent Alumni)</h3>
 +
<p>This is my third year in iGEM, and I am one of the advisors to the team this year. That means I get to yell slightly more than I did in previous years. When I'm not sitting around in a lab, I can be found swimming laps in a nearby pool or catching up on some of the sleep I lost during wiki freeze from the last few years. One day I want to grow up and face the real world, but I will put that off as long as possible by going to grad school.</p>
 +
<h3><a href="http://www.linkedin.com/pub/robert-mayall/80/633/359" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio21" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/4/4b/2013UCalgaryAndersMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Dr. Anders Nygren</h2>
 +
<h3>Electrical &#38; Biomedical Engineering (Professor)</h3>
 +
<p>I have a PhD from Rice University, Houston, Texas, and MSc degrees from the University of Houston, Texas and the Royal Institute of Technology in Stockholm, Sweden. I am an Associate Professor of Electrical & Computer Engineering and Co-Director of the Centre for Bioengineering Research & Education at the University of Calgary. I have a research background in computer modeling of biological and physiological systems and got involved in iGEM to learn about how computer modeling can be applied to Synthetic Biology. This is the fifth time I am involved as one of the facilitators for a U of C iGEM team.</p>
 +
<h3><a href="http://www.linkedin.com/pub/anders-nygren/44/141/44" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
<div id="Bio22" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/d/de/2013UCalgaryAnthonyMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Dr. Anthony Schryvers</h2>
 +
<h3>Microbiology, Immunology, &#38; Infectious Diseases (Professor)</h3>
 +
<p>I obtained a PhD in Biochemistry at the University of Alberta and an MD at the University of Calgary. During my Postdoctoral training at U of C I also served a 2 1/2 year term as VP Research for Chembiomed.  During my first 17 years as a faculty member at the University of Calgary I was focused primarily on research. I have been involved in the Bachelor of Health Sciences program since its inception, and currently serve as Director of the Program and as Associate Dean, Undergraduate Science Education. I currently hold appointments in the Departments of Microbiology, Immunology & Infectious Diseases and Biochemistry & Molecular Biology in the Faculty of Medicine, and in the Department of Food Production Animal Health in the Faculty of Veterinary Medicine.</p>
 +
</div>
 +
</div>
 +
<div id="Bio23" class="Info">
 +
<div class="InfoImg"><img src="https://static.igem.org/mediawiki/2013/d/dd/2013UCalgaryCesarMain.jpg"></div>
 +
<div class="Text">
 +
<h2>Cesar Rodriguez</h2>
 +
<h3>Senior Research Scientist (AutoDesk, Inc.)</h3>
 +
<p>I am a Senior Research Scientist in the Bio/Nano/Programmable Matter group at Autodesk where I focus on computer-aided design of biological systems. Prior to joining Autodesk, I was the Synthetic Biology Research Lead at Genome Compiler and Software Lead at BIOFAB: International Open Facility Advancing Biotechnology (BIOFAB). I am a co-founder and former co-editor of the Synthetic Biology Open Language (SBOL), an emerging data exchange standard and have been an iGEM judge the last four years. Beyond pursuing exciting ideas and projects in Synthetic Biology, I enjoy raising two rambunctious daughters, snowboarding, football, computer animation (especially Pixar), electric cars, and travelling.</p>
 +
<h3><a href="http://www.linkedin.com/pub/cesar-rodriguez/b/430/a64" target="_blank">View My LinkedIn Profile</a></h3>
 +
</div>
 +
</div>
 +
</div>
 +
</div>
</body>
</body>
</html>
</html>

Revision as of 03:17, 27 September 2013

Team Members

Dr. Mark Bieda

Bioinformatics (Assistant Director)

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.

View My LinkedIn Profile

Dr. Mayi Arcellana-Panlilio

Biochemistry & Molecular Biology (Professor)

I have been involved with teaching/mentoring in the Bachelor of Health Sciences program since 2003, primarily to develop and deliver the Honours Cell & Molecular Biology course, a core requirement in the curriculum. I have taught every offering of that course and received numerous accolades from the Faculty and the students, most recently winning the Teaching Excellence Award for 2010-2011 from the University of Calgary Students Union. This is my third year as an iGEM Instructor and my interest in the program springs from my belief in the value of inquiry as a means to getting students engaged in the pursuit of knowledge and developing habits of becoming lifelong learners.

View My LinkedIn Profile

Ali Honarmand

Biological Sciences (4th Year)

This is my 2nd year of iGEM and I am leading the TALEs part of the project. That is how I got nicknamed "TALI.". I really like how iGEM is completely student driven and how it is not just about the science. It has really broadened my perspectives about all the different components that need to go into a project to make it successful and useful to the society. When I'm not in the lab serving dinner to E. coli or sitting in front of my computer staring at ATCGs, you can find me appreciating the gravity in the mountains either on my bike or snowboard, reading a book, or trying something completely random.

View My LinkedIn Profile

Amanda Zucoloto

Biomedical Sciences (3rd Year)

This is my first year on iGEM and I have been working with TALEs, which involved alternative cloning strategies and lots of fun time doing protein work over the Summer. When I am not pippeting in the lab to the sound of Backstreet Boys, I spend my time working out, exploring Canada and catching up with family and friends who are all the way back in Brazil. Even though I still have a couple months here in Calgary, I can't wait to come back as a graduate student!

Chris Wintersinger

Biomedical Sciences (4th Year)

This is my second year on the iGEM Calgary team and I have my hands in every part of the project. Formally though, I am leading the detector team and have been nicknamed "Christoferritin" by my team mates. When I am not slaving in the early morning hours in our lab, you'll find me travelling on remote logging roads in the backwoods of Alberta, or covered in grease working on my pickup truck. After I conquer iGEM, I hope to start a career as a hand model, enter a travelling carnival, or failing those, continue my journey in synthetic biology as a graduate student.

View My LinkedIn Profile

Denny Hoang

Cellular, Molecular, & Microbial Biology (4th Year)

This is my first year in the iGEM team and I've largely played a role in the reporter part of the team. I've been previously exposed in a lab involving environmental microbiology, thus this experience has given me the opportunity learn many different techniques and skills used in synthetic biology. In my spare time I've enjoyed playing soldier, snowboarding and reading novels.

Julie Osgood

Biomedical Sciences (3rd Year)

This is my first year with iGEM and I have spent my summer focusing on the TALE aspect of our project. I devoted my time to designing the E. coli target sequences and putting together our TALE constructs. When I’m not redoing all my experiments that didn’t work, I enjoy dancing, reading, and watching Battestar Galactica. I have spent my past couple summers working in research labs, but I loved having the opportunity to join a student driven research team. In the future I hope to be a professional Quidditch player or a geneticist.

Justin Dole

Biological Sciences (2nd Year)

Heading into my second undergraduate year, I can undoubtedly say that the past few months have helped put my academic knowledge into context. I held various roles this summer, but was ultimately in charge of qualitative modelling using Autodesk Maya. This has been my first year with iGEM; the exposure to various disciplines has allowed me to see the interconnectivity between synthetic biology, engineering, and business. Besides waiting for the lab computer to process 22GB of RAM, I take pride in eating well, exercising regularly, sleeping in, and picking flowers for my Mom. I two-strap my backpack, have a keen interest in entrepreneurship, technology, and medicine, and love anything with an engine to the point that I consider myself obsessed.

Wm. Keith van der Meulen

Electrical & Computer Engineering (2nd Year)

This summer, I have been responsible for the designing and coding this website and working on the modeling part of the team. I am pursuing a career in aeronautical robotics R&D, so I have found my time working in a research setting with iGEM this year very valuable. Besides staying up until 2 a.m. coding, I also spend my time running Foster Bikes, a non-profit, Seattle-based company I co-founded. In my free time, I enjoy hiking, backpacking, skiing, and trying to learn about this weird thing non-engineers call a "social life".

View My LinkedIn Profile

Ruth Moges

Biological Sciences (3rd Year)

This is my first year with iGEM. I've mostly been helping out the undergrad supervisors with their arbitrary needs, so I've been a part of the TALEs, Ferritin and Linker teams. I've loved the opportunity to work in a lab, this is my first year doing so independently. Later in life I hope to become an optometrist, looking into people's eyes is one of my favourite pastimes. When not in the lab though, I am doing other fun activities like reading, hanging out with my friends and soaking up as much vitamin D as I can before winter comes!

Sharon Feng

Biomedical Sciences (3rd Year)

This summer was my first year being involved in iGEM and a wet lab setting. I was fortunate to be a member of the TALEs team where I have learned so much about synthetic biology, bacterial genetics, and general lab practices. Last year, I was involved with clinical studies of children with inflammatory bowel disease at the Alberta Children's Hospital. In my free time, I enjoy reading novels, watching movies, and spending time with family and friends.

Somshukla (Rai) Chaudhuri

Biomedical Sciences (4th Year)

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.

View My LinkedIn Profile

Su Wang

Chemical Engineering (4th Year)

I am a chemical engineering student with a specialization in biomedical engineering. Prior to join iGEM I have been doing researches in chemical engineering labs for thermodynamics or in-situ oil upgrading. Those were professor-driven research projects where even though I had good experiences, there was little I could do to test my own hypothesis. That's why I came for iGEM; for the student driven research aspect. Here I wish to combine with what I have learned from system biology class, with my training in modelling, to work on things that interest me!

Taylor Remondini

Cellular, Molecular, & Microbial Biology (4th Year)

This is my first year with the iGEM Calgary team and I have been involved primarily with the reporter, linker, and wiki design elements of the project. My main interest has been in testing the potential of chemically modified ferritin nano-particles as a reporter system for our project. Between working in the lab and harassing Keith about the design of the wiki you can find me on the golf course or ensuring that my car is spotless. Going into the future I am pursuing entrance into medical school to further my career. iGEM has been an invaluable experience for many of the trials I will face going forward with life.

Iain George

Biological Sciences (2nd Year Masters)

This is my second year on our iGEM team at the University of Calgary. I am a master student in biological sciences at the U of C. My research is in investigating how RNA-binding proteins act to regulate various genes at the post-transcriptional level. Previously, I worked as a member of the Biofilm Research Group at the U of C, studying how bacterial biofilms could be applied to bioremediate environmentally contaminated sites. When I am not living/sleeping/supervising in the lab, you may find me in the mountains surrounding Calgary hiking and trying my hand at photography.

View My LinkedIn Profile

Himika Dastidar

Microbiology, Immunology, and Infectious Diseases (1st Year Masters)

I am an iGEM veteran and this is my 3rd year doing iGEM. This year I came back as a graduate supervisor. I get to supervise the kids this year. In my spare time or the lack thereof I study cancer biology, skate around in quad skates or you can find me drinking a beer at the bar.

View My LinkedIn Profile

Jamie Fegan

Microbiology & Infectious Diseases (3rd Year PhD)

I am studying vaccine design and antigen engineering against the pathogen Neisseria meningitidis, the causative agent of meningococcal disease. As an iGEM newcomer, I’m amazed at how everyone functions on so little sleep, but I’m doing my best as I help with the protein expression and purification side of the project. When I’m not running in circles around the lab, I can be found playing volleyball or squash with friends, sliding down a mountain in an attempt at snowboarding, or hanging out at home with a glass of wine binge watching entire TV series with my cats.

Kate Chatfield-Reed

Biological Sciences (4th Year PhD)

This is my first year as an advisor for iGEM and my first year involved with iGEM in any capacity. I’ve been offering small pieces of advice over all areas of the project. When I finally finish my PhD I hope to stay in the wonderful world of academia forever. In my spare time I play soccer and hockey or read too much.

Lisa Oberding

Biological Sciences (1st Year Masters)

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam non dui rutrum, ultrices turpis ut, dignissim lectus. Aenean ac viverra urna. Praesent tempor rhoncus scelerisque. Pellentesque volutpat elementum tristique. Maecenas iaculis quam nunc, vel venenatis sapien pretium id. Nulla facilisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas adipiscing congue augue, at sagittis lorem pretium eu. Nullam sit amet lacinia neque, et luctus diam. Vestibulum porta adipiscing venenatis.

View My LinkedIn Profile

Patrick Wu

Biomedical Technology (1st Year Masters)

After four years of undergrad (and three years of iGEM) I am now working on my Masters of Biomedical Technology here at the University of Calgary. This is now my fourth year as a part of iGEM, though I now act as a part-time advisor/consultant/distraction to the team. I am very excited to see how user-centered design can be applied to non-traditional fields like biology, and iGEM never disappoints me with all the cool ideas that come out. In my spare time, you can probably find me fiddling around with Photoshop and Illustrator, or asleep. Sleep is always nice.

View My LinkedIn Profile

Robert Mayall

Biochemistry & Molecular Biology (Recent Alumni)

This is my third year in iGEM, and I am one of the advisors to the team this year. That means I get to yell slightly more than I did in previous years. When I'm not sitting around in a lab, I can be found swimming laps in a nearby pool or catching up on some of the sleep I lost during wiki freeze from the last few years. One day I want to grow up and face the real world, but I will put that off as long as possible by going to grad school.

View My LinkedIn Profile

Dr. Anders Nygren

Electrical & Biomedical Engineering (Professor)

I have a PhD from Rice University, Houston, Texas, and MSc degrees from the University of Houston, Texas and the Royal Institute of Technology in Stockholm, Sweden. I am an Associate Professor of Electrical & Computer Engineering and Co-Director of the Centre for Bioengineering Research & Education at the University of Calgary. I have a research background in computer modeling of biological and physiological systems and got involved in iGEM to learn about how computer modeling can be applied to Synthetic Biology. This is the fifth time I am involved as one of the facilitators for a U of C iGEM team.

View My LinkedIn Profile

Dr. Anthony Schryvers

Microbiology, Immunology, & Infectious Diseases (Professor)

I obtained a PhD in Biochemistry at the University of Alberta and an MD at the University of Calgary. During my Postdoctoral training at U of C I also served a 2 1/2 year term as VP Research for Chembiomed. During my first 17 years as a faculty member at the University of Calgary I was focused primarily on research. I have been involved in the Bachelor of Health Sciences program since its inception, and currently serve as Director of the Program and as Associate Dean, Undergraduate Science Education. I currently hold appointments in the Departments of Microbiology, Immunology & Infectious Diseases and Biochemistry & Molecular Biology in the Faculty of Medicine, and in the Department of Food Production Animal Health in the Faculty of Veterinary Medicine.

Cesar Rodriguez

Senior Research Scientist (AutoDesk, Inc.)

I am a Senior Research Scientist in the Bio/Nano/Programmable Matter group at Autodesk where I focus on computer-aided design of biological systems. Prior to joining Autodesk, I was the Synthetic Biology Research Lead at Genome Compiler and Software Lead at BIOFAB: International Open Facility Advancing Biotechnology (BIOFAB). I am a co-founder and former co-editor of the Synthetic Biology Open Language (SBOL), an emerging data exchange standard and have been an iGEM judge the last four years. Beyond pursuing exciting ideas and projects in Synthetic Biology, I enjoy raising two rambunctious daughters, snowboarding, football, computer animation (especially Pixar), electric cars, and travelling.

View My LinkedIn Profile