Difference between revisions of "Team:UCL/Attributions"

 
(39 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{CSS_UCL5}}
+
{{CSS_UCL6}}
 +
 
 
<html>
 
<html>
 
<head>
 
<head>
 +
<!--
 +
<script>
 +
                $(document).ready(function(){
 +
 +
          $('div#members').each(function(){
 +
 +
                // get current div
 +
                var $div_parent = $(this);
 +
 +
                // get array of childs in parent div
 +
                var $divsArr = $div_parent.children('div.memberwrapper');
 +
 +
                // sort array of childs in parent div (#members) randomly
 +
                $divsArr.sort(function(a,b){
 +
 +
                      // Get a random number between 0 and 10
 +
                      var temp = parseInt( Math.random()*10 );
 +
 +
                      // Get 1 or 0, whether temp is odd or even
 +
                      var isOddOrEven = temp%2;
 +
 +
                      // Get +1 or -1, whether temp greater or smaller than 5
 +
                      var isPosOrNeg = temp>5 ? 1 : -1;
 +
 +
                      // Return -1, 0, or +1
 +
                      return( isOddOrEven*isPosOrNeg );
 +
                })
 +
 +
                // append child items to parent
 +
                .appendTo($div_parent);           
 +
          });
 +
    });
 +
 +
</script>
 +
-->
  
 
<style>
 
<style>
#main {
+
 
padding-left: 10%;
+
#header2 {
padding-right: 10%;
+
width: 100%;
 +
min-height: 100%;
 +
height: auto;
 +
position: relative;
 +
margin: 0 auto;
 +
padding: 0;
 +
top: 0;
 +
vertical-align: middle;
 +
font-family: Raleway;
 +
letter-spacing: 1.1px; font-size: 13px;
 +
padding-bottom: 100px;
 +
}
 +
 
 +
 
 +
 
 +
#header2:before
 +
{
 +
content: "";
 +
background-image: url('https://static.igem.org/mediawiki/2015/a/a0/UCL_MG_0054.jpg');
 +
background-repeat: no-repeat;
 +
background-position: 0 0 0 0;
 +
  background-attachment: fixed !important;
 +
  -webkit-background-size: cover;
 +
  -moz-background-size: cover;
 +
  -o-background-size: cover;
 +
  background-size: cover;
 +
-webkit-box-sizing: border-box;
 +
-moz-box-sizing: border-box;
 +
box-sizing: border-box;
 +
-webkit-mask-image: -webkit-gradient(linear, 0 0, 0 2000, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0.4)));
 +
    position: absolute;
 +
    top: 0px;
 +
    left: 0px;
 +
margin: 0;
 +
padding: 0;
 +
    width: 100%;
 +
    height: 100%;
 +
border: none;
 
}
 
}
  
#globalWrapper, #content, #bodyContent, #main {
+
 
background-color:#030B1F;
+
#mobilebackground {
 +
  background-image: url('https://static.igem.org/mediawiki/2015/a/a0/UCL_MG_0054.jpg');
 +
    top: 0;
 +
    right: 0;
 +
    left: 0;
 +
    background-position: 0 0 0 0;
 +
position: fixed;
 +
    background-repeat: no-repeat;
 +
  -webkit-background-size: cover;
 +
  -moz-background-size: cover;
 +
  -o-background-size: cover;
 +
  background-size: cover;
 +
-webkit-box-sizing: border-box;
 +
-moz-box-sizing: border-box;
 +
box-sizing: border-box;
 +
display: none;
 +
width: 100%;
 +
height: 100%;
 +
padding: 0;
 +
margin: 0;
 +
 
 +
  }
 +
 
 +
 
 +
 
 +
#wrapper {width: 80%; height: 100%; background: none; margin: 0 auto; position: relative; padding: 0; padding-top: 80px; margin-bottom: 200px; overflow: auto;}
 +
 
 +
 
 +
 
 +
.bigtitle a {color: #493C54; text-decoration: none;}
 +
 
 +
 
 +
#members { width: 100%; height: auto; position: relative;}
 +
 
 +
.memberwrapper {
 +
margin: 0 auto;
 +
margin-bottom: 50px;
 +
width: 90%;
 +
position: relative;
 +
background: #fff;
 +
border-radius: 8px;
 +
padding: 14px;
 +
height: auto;
 +
overflow: auto;
 +
opacity: 0.9;
 
}
 
}
  
h2, li {
+
 
color:#EDE2AF;
+
.memberwrapper h2 {font-size: 13px; text-decoration: none; border-bottom: 0px; display: block; background-color: #493C54; color: #fff; font-weight: bold; padding: 14px; letter-spacing: 4px; text-transform: uppercase; margin: 5px;}
 +
 
 +
 
 +
.portraitL {
 +
float: left;
 +
display: inline-block;
 +
width: 30%;
 +
opacity:1;
 +
 
 
}
 
}
  
.mainmenu {
+
.portraitL img{
background-color:#EDE2AF;
+
padding: 5px;
 +
float: left;
 +
width: 100%;
 +
}
 +
 
 +
.memberdescriptionL {
 +
float: right;
 +
width: 65%;
 +
display: inline-block;
 +
padding: 0px;
 +
}
 +
 
 +
 
 +
.portraitR {
 +
float: right;
 +
display: inline-block;
 +
width: 30%;
 
opacity:1;
 
opacity:1;
 
}
 
}
  
</style>
+
.portraitR img{
 +
padding: 5px;
 +
float: right;
 +
width: 100%;
 +
}
  
</head>
+
.memberdescriptionR {
 +
float: left;
 +
width: 65%;
 +
display: inline-block;
 +
padding: 0px;
 +
}
  
 +
.bigtitle p {font-size: 15px;
 +
line-height: 1.6; letter-spacing: 1.2px;}
 +
 +
.memberwrapper p {
 +
text-align:justify;
 +
padding: 0 8px !important;
 +
font-size: 15px;
 +
line-height: 1.6;
 +
letter-spacing: 1.2px;
 +
color: #0a0111;
 +
margin: 0 !important;
 +
 +
}
 +
 +
.titlecircle {width: 85%; margin: 0 auto; padding-top: 8%;}
 +
.title2 {font-size: 380%;}
 +
 +
 +
 +
.arrow {font-size: 50px;}
 +
 +
@media(max-width:1280px){
 +
.bigtitle {font-size: 15px;}
 +
.bigtitle {width: 50%;}
 +
 +
}
 +
 +
 +
@media(max-width:1152px){
 +
 +
.bigtitle {font-size: 14px;}
 +
.bigtitle {width: 52%;}
 +
.titlecircle {width: 80%;}
 +
.portraitR, .portraitL {width: 43%;}
 +
.memberdescriptionL, .memberdescriptionR {width: 55%;}
 +
.memberdescriptionL p, .memberdescriptionR p {line-height: 1.5;}
 +
 +
}
 +
 +
 +
@media(max-width:1024px){
 +
.bigtitle {width: 58%;}
 +
.titlecircle {padding-top: 10%; width: 75%;}
 +
.memberwrapper {padding: 18px;}
 +
#header2:before {background-image: none; }
 +
#header2 {background: none;}
 +
#mobilebackground {display: block;}
 +
 +
}
 +
 +
@media(max-width:960px){
 +
.bigtitle {font-size: 13px; width: 65%;}
 +
.arrow {font-size: 40px;}
 +
.memberdescriptionL, .memberdescriptionR  {width: 90%; display: inline; float: none;}
 +
.portraitR {margin-left: 20px; margin-bottom: -6px; width: 42%;}
 +
.portraitL {margin-right: 20px;  margin-bottom: -6px; width: 42%;}
 +
.memberdescriptionL p, .memberdescriptionR p {line-height: 1.6;}
 +
 +
}
 +
 +
 +
 +
 +
@media(max-width:850px){
 +
 +
.bigtitle p {line-height: 1.7 !important; margin-top: -25px !important;}
 +
}
 +
 +
@media(max-width:820px){
 +
.titlecircle {padding-top: 4%;}
 +
}
 +
 +
 +
@media(max-width: 768px){
 +
 +
.bigtitle {width: 80%; font-size: 13px; padding: 14%; margin-left: -4%;}
 +
.bigtitle p { font-size: 14px; margin-top: -20px !important;}
 +
.titlecircle {width: 70%; padding-top: 8%;}
 +
.memberwrapper {width: 100%; margin-left: -3%;}
 +
 +
 +
}
 +
 +
 +
 +
 +
@media(max-width:670px){
 +
.bigtitle {margin-left: -4%;}
 +
#wrapper {width: 100%;}
 +
 +
.memberwrapper {width: 80%; margin: 0 auto; margin-bottom: 30px;}
 +
.memberwrapper p {font-size: 14px;}
 +
.bigtitle p { font-size: 14px; }
 +
.titlecircle {width: 65%;}
 +
 +
 +
 +
}
 +
 +
@media(max-width:640px){
 +
.arrow {font-size: 30px;}
 +
.titlecircle {width: 65%;}
 +
.portraitR, .portraitL {width: 50%;}
 +
}
 +
 +
 +
 +
@media(max-width:530px){
 +
.titlecircle {width: 75%;}
 +
.bigtitle {padding: 14%;}
 +
.memberdescriptionL p, .memberdescriptionR p {font-size: 13px; line-height: 1.5;}
 +
 +
}
 +
 +
@media(max-width: 480px) {
 +
 +
 +
 +
.bigtitle {padding: 13%;}
 +
.bigtitle p { font-size: 13px; text-align: center;}
 +
.titlecircle {width: 70%; padding-top: 0; }
 +
.portraitR, .portraitL {width: 97%; float: none; margin: 0 auto; padding-bottom: 10px; display: block;}
 +
.portraitR img, .portraitL img {float: none; padding: 0;}
 +
.memberdescriptionL, .memberdescriptionR {width: 98%; display: block; margin: 0 auto !important; padding: 0 !important;}
 +
.memberdescriptionL p, .memberdescriptionR p {font-size: 14px; line-height: 1.5;}
 +
 +
}
 +
 +
@media(max-width: 460px) {
 +
 +
.titlecircle {width: 75%;  padding-top: 0; margin-top: -4%;}
 +
.memberdescriptionL p, .memberdescriptionR p {font-size: 13px; line-height: 1.5; letter-spacing: 1;}
 +
}
 +
 +
@media(max-width: 420px) {
 +
 +
.titlecircle {width: 80%;  padding-top: 0; margin-top: -6%;}
 +
.title2 {font-size: 320%;}
 +
.bigtitle p {line-height: 1.5 !important;}
 +
 +
}
 +
 +
@media(max-width: 380px) {
 +
 +
.titlecircle {width: 80%;}
 +
.bigtitle p {font-size: 12px; }
 +
 +
 +
}
 +
 +
 +
@media(max-width: 360px) {
 +
 +
.titlecircle {width: 80%;}
 +
.bigtitle p {line-height: 1.3 !important;}
 +
.title2 {font-size: 280%;}
 +
}
 +
 +
 +
 +
</style>
 +
</head>
 
<body>
 
<body>
<div id=main>
 
<h5 style="color:white;">Attributions</h5>
 
<div style="height:50px"></div>
 
  
<h2>Wiki</h2>
+
<div id="mobilebackground"></div>
<ul>
+
<li>Jack Ho</li>
+
<li>Marta Napiorkowska</li>
+
<li>Lucas Von Chamier</li>
+
<li>Lewis Moffat</li>
+
</ul>
+
<div style="height:50px"></div>
+
  
<h2>Human Practices</h2>
+
<div id="header2">
<ul>
+
<li>Paloma Portela</li>
+
<li>Lucas Von Chamier</li>
+
<li>Marta De Lebrusant</li>
+
<li>Yash Mishra</li>
+
<li>Francisco Guimaraes</li>
+
<li>Safwân Anjum-James</li>
+
</ul>
+
<div style="height:50px"></div>
+
  
<h2>Lab</h2>
+
<div id="wrapper">
<ul>
+
<li>Marta Napiorkowska</li>
+
<li>Jack Ho</li>
+
<li>Tika Malla</li>
+
<li>Marta De Lebrusant</li>
+
<li>Paloma Portela</li>
+
<li>Mariola Sebastian</li>
+
<li>Yash Mishra</li>
+
<li>Lucas Von Chamier</li>
+
<li>Stephanie Braun Galleani</li>
+
<li>Roberto Chiocchio</li>
+
<li>Edoardo Gianni</li>
+
<li>María José Henríquez</li>
+
<li>Yan-Kay Ho</li>
+
</ul>
+
<div style="height:50px"></div>
+
  
<h2>InterLab Study</h2>
+
<div class="bigtitle">
<ul>
+
<div class="titlecircle">
<li>Lucas Von Chamier</li>
+
<li>Jack Ho</li>
+
<li>Yash Misha</li>
+
<li>Stephanie Braun Galleani</li>
+
</ul>
+
<div style="height:50px"></div>
+
  
<h2>Modelling</h2>
 
<ul>
 
<li>Lucas Von Chamier</li>
 
<li>Jack Ho</li>
 
<li>Safwân Anjum-James</li>
 
</ul>
 
<div style="height:50px;"></div>
 
  
<h2>Entrepreneurship</h2>
+
<br>
 +
<span class="title2">Attributions</span> <p style="margin-top: 10px; line-height: 2; text-align: center;"> <b>Thank you</b> for all the support we received throughout the summer! <b>Scroll down</b> to see who contributed to our project
 +
 
 +
<br> <span class="arrow"> <a data-scroll data-options='{ "easing": "linear" }' href="#members" >&#x25BC; </a> </span> 
 +
  </p>
 +
  </div> </div>
 +
 
 +
 
 +
<div id="members">
 +
 
 +
 
 +
<div style="height: 100px;"></div>
 +
 
 +
<div id="text">
 +
<div class="memberwrapper">
 +
 
 +
 
 +
<div class="memberwrapper">
 +
<h2>General support</h2>
 
<ul>
 
<ul>
<li>Mariola Sebastian</li>
+
  <li>Anna Dumitriu: We are very grateful to Anna for making a bio-art of our first ever probiotic in Nissle strain.</li>
<li>Francisco Guimaraes</li>
+
 +
<li>Graham Miller: thanks for shipping your inspiring ‘Photohonesty’ artwork all the way down form Scotland and joining us in a very special afternoon at the Dragon Café.</li>
 +
 +
<li>Prof. Glyn Lewis: for providing us with a very insightful advice about the science of our project from a psychiatric perspective.</li>
 +
 +
<li>Prof. Dame Sue Bailey: for providing us with some great advice regarding mental health and participating in our video assays.</li>
 +
 +
<li>Prof John Cryan: we are specially grateful to our main inspiration and benchmark in our this whole ‘Mind the gut’ adventure. It was a wonderful experience meeting you at Cork as well as very helpful for the further development of our project.</li>
 +
 +
<li>The Germ Guy: for sending us some fantastic papers that really helped to shape our project and develop our sensors.</li>
 +
 
 +
<li>Eben Kirksey: from Princeton University, who will feature us in his new book for Duke University Press after falling in love with our hypersymbionts.</li>
 +
 
 +
<li>Dr. Jack Stilgoe: who kindly answers all our questions about bioethics and public engagement.</li>
 +
 
 +
<li>Liz and Weston from Sonnenburg Lab, Stanford: thanks for Skyping with us and give us some advice on synthetic biology and the gut microbiota.</li>
 +
 
 +
<li>Joe and Celie Owl n’ wolf:  who were on holidays and still managed to develop a beautiful short animation to explain our ’Mind the gut’ project to the general public.</li>
 +
 
 +
<li>Grace Geremy and: we really appreciate that you agreed taking part in our video assays and answering tonnes of questions about mental health, sharing with us some of your personal experiences and helping us to fight stigma around mental disorders.</li>
 +
 
 +
<li>David Turner from ‘Silence found a tongue’: thank you for your inspiring performance in the Open Mind Night and for taking part in our video assays. </li>
 +
 +
<li>Danielle Leaga: our comic designer, for making Bactoman come true.</li>
 +
 
 
</ul>
 
</ul>
<div style="height:50px;"></div>
+
</div>
  
<h2>Software</h2>
+
 
 +
 +
<div class="memberwrapper">
 +
<h2>Advisors</h2>
 
<ul>
 
<ul>
<li>Safwân Anjum-James</li>
+
<li>Dr. Darren Nesbeth : We are very thankful to Darren, our project supervisor for all the meetings from discussing the project plan to biobricks. His advice and guidance has helped us scrutinize and improve every aspect of the project.</li>
 +
 +
<li>Edoardo Gianni: We are most grateful to Edo for organizing the meetings to discuss our project ideas, bootcamp, meetups, collaborations and so much more.</li>
 +
 +
<li>Georgia Bondy: We are very thankful to Georgia, (ex UCL iGEM member) for her support and guidance on policies and practices. Our human practice and public engagement sector would have never been the same without her help.</li>
 +
 +
<li>Lewis Iain: We are thankful to Lewis for his advice on modelling and software. We are also grateful for the jokes and jelly-shots you made so lovingly for our team.</li>
 +
 +
<li>Maria Jose Henrique: We would like to thank Jose for helping us with logistics and lab.</li>
 +
 +
<li>Dr. Stephanie Braun: For every new protocol, lab experiment, logistics and every small query, we would like to express our humble gratitude to Steffi for being there at every step of our project.</li>
 +
 +
<li>Dr. Vitor Pinheiro : We want to extend our kind gratitude to Dr. Pinheiro for his continuous advice, support and guidance on or project. We are most grateful for his suggestions on biosafety as well as his conference on different gene assembly methods.</li>
 +
 +
<li>Yan-Kay Ho: We are eternally grateful for Yan Kay’s tireless efforts to remind us of the iGEM and internal deadlines, for arranging our dates for flying to Boston and more.</li>
 +
 +
<li>Dr. Ya-Yu Chiang: for helping us make the awesome microfluidics chip.</li>
 +
 +
<li>Prof. John Ward: for all his help and advice concerning our pregnenolone BioBrick.</li>
 +
 +
<li>Fiona Truscott: for advising us on constructing and characterising the pregnenolone BioBrick.</li>
 +
 +
<li>Ludmila Ruban: for giving us advice on mammalian cell culture and for helping us obtain the resources and space needed for mammalian cell work.</li>
 +
 +
<li>Gerardo Santiago: for supervising all our mammalian cell work and taking care we didn’t contaminate everything!</li>
 +
 +
<li>Dr. Marco Marquez: for his bulging bioreactor design which inspired us.</li>
 +
 +
<li>Dr Paul Sharp: for lending us his expertise in intestinal cells and giving us the Caco-2 cells we desperately needed</li>
 +
 
 +
<li>Dr. Chris Barnes: for helping us with the tricky modelling</li>
 
</ul>
 
</ul>
<div style="height:50px;"></div>
 
  
<h2>Sponsorship</h2>
+
 
 +
</div>
 +
 
 +
 
 +
 +
<div class="memberwrapper">
 +
 
 +
 
 +
<h2>The dragon Cafe</h2>
 +
<p>Special thanks to all the people that come daily to this inspiring space that warmly welcomed us, listened to our crazy project ideas and provided us with great feedback and plenty of questions about our probiotics. We would also like to that the organizers Declan, Seth and Li that helped us organize and coordinate our presentations and art exhibition with Graham Miller.</p>
 +
  </div>
 +
 
 +
<div class="memberwrapper">
 +
<h2>UCL Academy students</h2>
 +
<p> Thanks to all the UCL Academy students that have been working with us throughout the summer, helping us with the hard work and contributing to our project with exciting new ideas.</p>
 
<ul>
 
<ul>
<li>Marta De Lebrusant</li>
+
<li>Laura Price</li>
<li>Paloma Portela</li>
+
<li>Pedrena Roofe</li>
<li>Mariola Sebastian</li>
+
<li>Ehssan Baghban</li>
 +
<li>Mohammed Dardouk</li>
 +
<li>Richmond Tabajonda</li>
 +
<li>Fardowsa Alice</li>
 +
<li>Chinwe Alino</li>
 +
<li>Adama Saccoh</li>
 +
<li>Justas Stanislovas</li>
 +
<li>Raknee Baharj</li>
 +
<li>Amina Mohamed</li>
 
</ul>
 
</ul>
<div style="height:50px;"></div>
 
</div>
 
</body>
 
  
<!--
 
<h2> Attributions</h2>
 
  
<p> Each team must clearly attribute work done by the student team members on this page. The team must distinguish work done by the students from work done by others, including the host labs, advisors, instructors, and individuals not on the team roster. </p>
+
</div>
  
 +
 +
<div class="memberwrapper">
  
<div class="highlightBox">
 
  
<h4> Can we base our project on a previous one? </h4>
+
<h2>Biochemical Engineering lab- UCL</h2>
<p>Yes! You can have a project based on a previous team, or based on someone else's idea, <b>as long as you state this fact very clearly and give credit for the original project.</b> </p>
+
<p> We were hosted and carried out all our work in the lab facilities of the Biochemical Engineering department of UCL. There, we were kindly provided with all the materials and machinery needed to carry out all our molecular biology, microfluidics, fermentations and mammalian cell culture experiments. </p>
</div>
+
 +
<p>We would like to thanks the Microfluidics department for letting as use their space to build our gut-on-a-chip device and providing us with really helpful advice.</p>
  
  
  
<h4> Why is this page needed? </h4>
 
<p>The Attribution requirement helps the judges know what you did yourselves and what you had help with. We don't mind if you get help with difficult or complex techniques, but you must report what work your team did and what work was done by others.</p>
 
<p>
 
For example, you might choose to work with an animal model during your project. Working with animals requires getting a license and applying far in advance to conduct certain experiments in many countries. This is difficult to achieve during the course of a summer, but much easier if you can work with a postdoc or PI who has the right licenses.</p>
 
  
 +
</div>
  
<h5> What should this page have?</h5>
 
  
<ul>
+
<li>General Support</li>
+
<div class="memberwrapper">
<li>Project support and advice</li>
+
<li>Fundraising help and advice</li>
+
<li>Lab support</li>
+
<li>Difficult technique support</li>
+
<li>Project advisor support</li>
+
<li>Wiki support</li>
+
<li>Presentation coaching</li>
+
<li>Human Practices support</li>
+
<li> Thanks and acknowledgements for all other people involved in helping make a successful iGEM team</li>
+
</ul>
+
  
  
<h4>Inspiration</h4>
+
 
<p>Take a look at what other teams have done:</p>
+
<h2>Entrepreneurship</h2>
 
<ul>
 
<ul>
<li><a href="https://2011.igem.org/Team:Imperial_College_London/Team">2011 Imperial College London</a> (scroll to the bottom)</li>
+
<li>Albert Flynn, a professor in UCC who is an expert in food regulations; and helped us adapt our product to the european legislation.</li>
<li><a href="https://2014.igem.org/Team:Exeter/Attributions">2014 Exeter </a></li>
+
 
<li><a href="https://2014.igem.org/Team:Melbourne/Attributions">2014 Melbourne </a></li>
+
<li>Christof Koelsch, Managing director of diaceutics, and expert in personalized medicine, who helped us give shape to the personalization algorithm.</li>
<li><a href="https://2014.igem.org/Team:Valencia_Biocampus/Attributions">2014 Valencia Biocampus</a></li>
+
 
 +
<li>Christian Rayner, Business advisor in UCL advances, who assisted us with the marketing strategy. </li>
 +
 
 +
<li>Professor Nigel Tichener-Hooker, who advised us on the manufacturing optimization. </li>
 +
 
 +
<li>And Rhiannon Turner, expert in European and UK biotechnology patents, who is currently helping us draft our provisional patent application.</li>
 +
 
 +
<li>In addition to this, we attended the Indiebio Cork Demo day, and talked with the entrepreneurs from the accelerator, especially with Ageria, who are developing a novel probiotic yogurt, and are assisting us with product development and funding applications. </li>
 +
 
 +
<li>Anthony Finklestein - Dean of the UCL Faculty of Engineering Sciences,  funded our trip to Cork</li>
 +
 +
<li>Laura Capponi, who helped us with financial projections and production process design.</li>
 
</ul>
 
</ul>
 +
 +
 +
</div>
 +
 +
 +
<div class="memberwrapper">
 +
 +
<h2>Universities</h2>
 +
<p>We would like to thank the iGEM teams of University of Michigan, University of Manchester-Graz and Birbeck for synthesising the parts we desperately needed to assemble our pregnenolone Biobrick.</p>
 +
</div>
 +
 +
  
 
</div>
 
</div>
-->
+
 
 +
 
 +
 
 +
 
 +
  </div>
 +
</div></div>
 +
 
 +
</body>
 
</html>
 
</html>

Latest revision as of 03:59, 19 September 2015

'


Attributions

Thank you for all the support we received throughout the summer! Scroll down to see who contributed to our project

General support

  • Anna Dumitriu: We are very grateful to Anna for making a bio-art of our first ever probiotic in Nissle strain.
  • Graham Miller: thanks for shipping your inspiring ‘Photohonesty’ artwork all the way down form Scotland and joining us in a very special afternoon at the Dragon Café.
  • Prof. Glyn Lewis: for providing us with a very insightful advice about the science of our project from a psychiatric perspective.
  • Prof. Dame Sue Bailey: for providing us with some great advice regarding mental health and participating in our video assays.
  • Prof John Cryan: we are specially grateful to our main inspiration and benchmark in our this whole ‘Mind the gut’ adventure. It was a wonderful experience meeting you at Cork as well as very helpful for the further development of our project.
  • The Germ Guy: for sending us some fantastic papers that really helped to shape our project and develop our sensors.
  • Eben Kirksey: from Princeton University, who will feature us in his new book for Duke University Press after falling in love with our hypersymbionts.
  • Dr. Jack Stilgoe: who kindly answers all our questions about bioethics and public engagement.
  • Liz and Weston from Sonnenburg Lab, Stanford: thanks for Skyping with us and give us some advice on synthetic biology and the gut microbiota.
  • Joe and Celie Owl n’ wolf: who were on holidays and still managed to develop a beautiful short animation to explain our ’Mind the gut’ project to the general public.
  • Grace Geremy and: we really appreciate that you agreed taking part in our video assays and answering tonnes of questions about mental health, sharing with us some of your personal experiences and helping us to fight stigma around mental disorders.
  • David Turner from ‘Silence found a tongue’: thank you for your inspiring performance in the Open Mind Night and for taking part in our video assays.
  • Danielle Leaga: our comic designer, for making Bactoman come true.

Advisors

  • Dr. Darren Nesbeth : We are very thankful to Darren, our project supervisor for all the meetings from discussing the project plan to biobricks. His advice and guidance has helped us scrutinize and improve every aspect of the project.
  • Edoardo Gianni: We are most grateful to Edo for organizing the meetings to discuss our project ideas, bootcamp, meetups, collaborations and so much more.
  • Georgia Bondy: We are very thankful to Georgia, (ex UCL iGEM member) for her support and guidance on policies and practices. Our human practice and public engagement sector would have never been the same without her help.
  • Lewis Iain: We are thankful to Lewis for his advice on modelling and software. We are also grateful for the jokes and jelly-shots you made so lovingly for our team.
  • Maria Jose Henrique: We would like to thank Jose for helping us with logistics and lab.
  • Dr. Stephanie Braun: For every new protocol, lab experiment, logistics and every small query, we would like to express our humble gratitude to Steffi for being there at every step of our project.
  • Dr. Vitor Pinheiro : We want to extend our kind gratitude to Dr. Pinheiro for his continuous advice, support and guidance on or project. We are most grateful for his suggestions on biosafety as well as his conference on different gene assembly methods.
  • Yan-Kay Ho: We are eternally grateful for Yan Kay’s tireless efforts to remind us of the iGEM and internal deadlines, for arranging our dates for flying to Boston and more.
  • Dr. Ya-Yu Chiang: for helping us make the awesome microfluidics chip.
  • Prof. John Ward: for all his help and advice concerning our pregnenolone BioBrick.
  • Fiona Truscott: for advising us on constructing and characterising the pregnenolone BioBrick.
  • Ludmila Ruban: for giving us advice on mammalian cell culture and for helping us obtain the resources and space needed for mammalian cell work.
  • Gerardo Santiago: for supervising all our mammalian cell work and taking care we didn’t contaminate everything!
  • Dr. Marco Marquez: for his bulging bioreactor design which inspired us.
  • Dr Paul Sharp: for lending us his expertise in intestinal cells and giving us the Caco-2 cells we desperately needed
  • Dr. Chris Barnes: for helping us with the tricky modelling

The dragon Cafe

Special thanks to all the people that come daily to this inspiring space that warmly welcomed us, listened to our crazy project ideas and provided us with great feedback and plenty of questions about our probiotics. We would also like to that the organizers Declan, Seth and Li that helped us organize and coordinate our presentations and art exhibition with Graham Miller.

UCL Academy students

Thanks to all the UCL Academy students that have been working with us throughout the summer, helping us with the hard work and contributing to our project with exciting new ideas.

  • Laura Price
  • Pedrena Roofe
  • Ehssan Baghban
  • Mohammed Dardouk
  • Richmond Tabajonda
  • Fardowsa Alice
  • Chinwe Alino
  • Adama Saccoh
  • Justas Stanislovas
  • Raknee Baharj
  • Amina Mohamed

Biochemical Engineering lab- UCL

We were hosted and carried out all our work in the lab facilities of the Biochemical Engineering department of UCL. There, we were kindly provided with all the materials and machinery needed to carry out all our molecular biology, microfluidics, fermentations and mammalian cell culture experiments.

We would like to thanks the Microfluidics department for letting as use their space to build our gut-on-a-chip device and providing us with really helpful advice.

Entrepreneurship

  • Albert Flynn, a professor in UCC who is an expert in food regulations; and helped us adapt our product to the european legislation.
  • Christof Koelsch, Managing director of diaceutics, and expert in personalized medicine, who helped us give shape to the personalization algorithm.
  • Christian Rayner, Business advisor in UCL advances, who assisted us with the marketing strategy.
  • Professor Nigel Tichener-Hooker, who advised us on the manufacturing optimization.
  • And Rhiannon Turner, expert in European and UK biotechnology patents, who is currently helping us draft our provisional patent application.
  • In addition to this, we attended the Indiebio Cork Demo day, and talked with the entrepreneurs from the accelerator, especially with Ageria, who are developing a novel probiotic yogurt, and are assisting us with product development and funding applications.
  • Anthony Finklestein - Dean of the UCL Faculty of Engineering Sciences, funded our trip to Cork
  • Laura Capponi, who helped us with financial projections and production process design.

Universities

We would like to thank the iGEM teams of University of Michigan, University of Manchester-Graz and Birbeck for synthesising the parts we desperately needed to assemble our pregnenolone Biobrick.