Difference between revisions of "Team:Warwick/Human Practices"

m
m
 
(94 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html lang="en">
+
<html>
 
<head>
 
<head>
 
<meta charset="UTF-8">
 
<meta charset="UTF-8">
 
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS?action=raw&ctype=text/css">
 
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS?action=raw&ctype=text/css">
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS/FishermanGraphicStylesheet?action=raw&ctype=text/css">
+
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS/HPCSS?action=raw&ctype=text/css">
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  
 
<script>
 
<script>
 +
 +
function goToNotebook(){
 +
    window.location = 'https://2018.igem.org/Team:Warwick/Notebook';
 +
}
 +
 +
function goToResults(){
 +
    window.location = 'https://2018.igem.org/Team:Warwick/Results';
 +
}
 +
 +
function goToOverview(){
 +
        window.location = "https://2018.igem.org/Team:Warwick/Parts";
 +
}
 +
 
function changeNavBar(navbarSelection){
 
function changeNavBar(navbarSelection){
  
Line 16: Line 29:
  
 
case 0:
 
case 0:
bottnav.innerHTML = "<li onclick='ProjectBreakdown()'><span>Project Breakdown</span></li><li onclick='Medals()'><span>Medals</span></li><li onclick='BioBricks()'><span>BioBricks</span></li>";
+
bottnav.innerHTML = "<li onclick='goToDescription()'><span>Project Description</span></li><li onclick='goToDesign()'><span>Design</span></li><li onclick='goToModel()'><span>Modelling</span></li><li onclick='goToResults()'><span>Results</span></li><li onclick='goToMedals()'><span>Medals</span></li>";
 
bottnav.style.marginLeft = "25%"
 
bottnav.style.marginLeft = "25%"
 
bottnav.style.background = 'linear-gradient(to right, white, #e6fefe)';
 
bottnav.style.background = 'linear-gradient(to right, white, #e6fefe)';
 
break;
 
break;
 
case 1:
 
case 1:
bottnav.innerHTML = "<li onclick='Interlab()'><span>Interlab</span></li><li onclick='Modelling()'><span>Modelling</span></li><li onclick='LabBooks()'><span>Lab Books</span></li>";
+
bottnav.innerHTML = "<li onclick='goToOverview()'><span>Parts</span></li><li onclick='goToExperiments()'><span>Experiments</span></li><li onclick='goToNotebook()'><span>Lab Books</span></li><li onclick='goToInterLab()'><span>InterLab</span></li>";
 
bottnav.style.marginLeft = "40%"
 
bottnav.style.marginLeft = "40%"
 
bottnav.style.background = 'linear-gradient(to right, #e6fefe, #d8fdfd)';
 
bottnav.style.background = 'linear-gradient(to right, #e6fefe, #d8fdfd)';
 
break;
 
break;
 
case 2:
 
case 2:
bottnav.innerHTML = "<li onclick='HumanPractices()'><span>Integrated Human Practices</span></li><li onclick='Outreach()'><span>Outreach</span></li>";
+
bottnav.innerHTML = "<li onclick='goToHumanPractices()'><span>Integrated Human Practices</span></li><li onclick='goToOutreach()'><span>Public Engagement</span></li>";
 
bottnav.style.marginLeft = "55%"
 
bottnav.style.marginLeft = "55%"
 
bottnav.style.background = 'linear-gradient(to right, #d8fdfd, #bbf0f3)';
 
bottnav.style.background = 'linear-gradient(to right, #d8fdfd, #bbf0f3)';
 
break;
 
break;
 
case 3:
 
case 3:
bottnav.innerHTML = "<li onclick='MeetTheTeam()'><span>Meet the Team</span></li><li onclick='Attributions()'><span>Attributions</span></li>";
+
bottnav.innerHTML = "<li onclick='MeetTheTeam()'><span>Meet the Team</span></li><li onclick='goToAttributions()'><span>Attributions</span></li><li onclick='goToCollaborations()'><span>Collaborations</span></li>";
 
bottnav.style.marginLeft = "70%"
 
bottnav.style.marginLeft = "70%"
 
bottnav.style.background = 'linear-gradient(to right, #bbf0f3, #85e4e9)';
 
bottnav.style.background = 'linear-gradient(to right, #bbf0f3, #85e4e9)';
Line 41: Line 54:
 
break;
 
break;
 
}
 
}
}
 
 
var amountToTurn = 0;
 
var previousTeam = 0;
 
 
function rotate(newTeam){
 
dif  = newTeam - previousTeam;
 
if(dif == 1 || dif == -2){
 
amountToTurn += 120;
 
}
 
else if(dif == -1 || dif == 2){
 
amountToTurn -= 120;
 
}
 
 
    $("#BOIStriangle").css('transform', 'rotate(' + amountToTurn + 'deg)');
 
    $("#BOISContent").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 
    $("#bioIMG").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 
$("#orgIMG").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 
    $("#inorgIMG").css('transform', 'rotate('+ (-1*amountToTurn) + 'deg)');
 
 
    h3content = $("#BCTitle");
 
    pcontent = $("#BCText");
 
 
    switch(newTeam){
 
    case 0:
 
    h3content.html("Biological");
 
    pcontent.html("Riboswitches used to find RNA from legionella allowing quick confirmation of the presence of the live bacteria.");
 
    break;
 
    case 1:
 
h3content.html("Organic");
 
    pcontent.html("Utilising bacteria, specifically E.Coli, to degrade Oestregen from water to help out wildlife.");
 
    break;
 
    case 2:
 
h3content.html("Inorganic");
 
    pcontent.html("Utilisting the lead absorbing properties of B.Subtilis bacteria to collect lead from water and with a newly injected gas vesicle gene to make the bacteria float ot the surface for easy collection.");
 
    break;
 
    }
 
 
    previousTeam = newTeam;
 
 
}
 
}
  
Line 85: Line 59:
 
$("#BottNav").hide();
 
$("#BottNav").hide();
 
}
 
}
                </script>
 
  
                <script>
+
function goHome(){
 +
    window.location = 'https://2018.igem.org/Team:Warwick';
 +
}
 +
 
 +
 
 
function scrollToFooter(){
 
function scrollToFooter(){
 
     $('html, body').animate({scrollTop: '10000px'}, 5000);
 
     $('html, body').animate({scrollTop: '10000px'}, 5000);
Line 96: Line 73:
 
}
 
}
  
function Attributions(){
+
function goToAttributions(){
window.location = 'https://2018.igem.org/Team:Warwick/Attributions'
+
window.location = 'https://2018.igem.org/Team:Warwick/Attributions';
 
}
 
}
  
function HumanPractices(){
+
function goToOutreach(){
window.location = 'https://2018.igem.org/Team:Warwick/Human_Practices'
+
        window.location = 'https://2018.igem.org/Team:Warwick/Public_Engagement';
 
}
 
}
  
function Collaborations(){
+
function goToHumanPractices(){
window.location = 'https://2018.igem.org/Team:Warwick/Collaborations'
+
window.location = 'https://2018.igem.org/Team:Warwick/Human_Practices';
 
}
 
}
  
function ProjectBreakdown(){
+
function goToCollaborations(){
        window.location = 'https://2018.igem.org/Team:Warwick/ProjectBreakdown'
+
window.location = 'https://2018.igem.org/Team:Warwick/Collaborations';
 
}
 
}
  
function BioBricks(){
+
function goToDescription(){
         window.location = 'https://2018.igem.org/Team:Warwick/BioBricks'
+
         window.location = 'https://2018.igem.org/Team:Warwick/Description';
 
}
 
}
  
function Medals(){
+
function goToDesign(){
         window.location = 'https://2018.igem.org/Team:Warwick/Medals'
+
         window.location = 'https://2018.igem.org/Team:Warwick/Design';
 
}
 
}
  
function Interlab(){
+
function goToExperiments(){
         window.location = 'https://2018.igem.org/Team:Warwick/InterLab'
+
         window.location = 'https://2018.igem.org/Team:Warwick/Experiments';
 
}
 
}
  
function Modelling(){
+
function goToInterLab(){
         window.location = 'https://2018.igem.org/Team:Warwick/Model'
+
         window.location = 'https://2018.igem.org/Team:Warwick/InterLab';
 
}
 
}
  
function Outreach(){
+
function goToModel(){
         window.location = 'https://2018.igem.org/Team:Warwick/Outreach'
+
         window.location = 'https://2018.igem.org/Team:Warwick/Model';
 
}
 
}
 +
 +
function goHome(){
 +
        window.location = "https://2018.igem.org/Team:Warwick";
 +
}
 +
 +
function goToMedals(){
 +
        window.location = "https://2018.igem.org/Team:Warwick/Medals";
 +
}
 +
 
</script>
 
</script>
  
 +
 
<script>
 
<script>
 
$(function () {
 
$(function () {
Line 156: Line 143:
  
  
<div id='Navbar' onmouseleave='reset()'>
+
<div id='Navbar'>
 
<div id='TopNav'>
 
<div id='TopNav'>
 
<ul><!--
 
<ul><!--
 +
  --><li><span class='topnavs' id='topnavHome' onclick="goHome()">Home</span></li><!--
 
  --><li><span class='topnavs' id='topnav0' onmouseenter="changeNavBar(0)">Project</span></li><!--
 
  --><li><span class='topnavs' id='topnav0' onmouseenter="changeNavBar(0)">Project</span></li><!--
 
  --><li><span class='topnavs' id='topnav1' onmouseenter="changeNavBar(1)">Lab Work</span></li><!--
 
  --><li><span class='topnavs' id='topnav1' onmouseenter="changeNavBar(1)">Lab Work</span></li><!--
Line 167: Line 155:
 
</div>
 
</div>
 
<div>
 
<div>
<ul id='BottNav' style='display: none;'>
+
<ul id='BottNav' style='display: none;' onmouseleave='reset()'>
 
<li><span></span></li><!--
 
<li><span></span></li><!--
 
--><li><span></span></li><!--
 
--><li><span></span></li><!--
Line 176: Line 164:
 
</div>
 
</div>
  
<div id='FishermanBody'>
 
<div id='FishermanTitle'>
 
<br>
 
<h1>Human Practices</h1>
 
</div>
 
<div id='FishermanGraphic'>
 
<div id='frontwave' class='waves'>
 
</div>
 
<div id='backwave2' class='waves'>
 
</div>
 
<div id='backwave' class='waves'>
 
</div>
 
<img src='https://static.igem.org/mediawiki/2018/6/66/T--Warwick--fishermanandboat.svg' id='fisherman'>
 
<div id='hookdiv'>
 
<img src='https://static.igem.org/mediawiki/2018/e/eb/T--Warwick--hook.svg' id='hook'>
 
</div>
 
  
<div id='seaSolid'>
+
<div id='GenericBody'>
</div>
+
<div><br>
<div id='seaOpac'>
+
<h1 id='GenericTitle'>Human Practices</h1>
<img src='https://static.igem.org/mediawiki/2018/8/83/T--Warwick--sandL.svg' id='sandL'>
+
        </div>
<img src='https://static.igem.org/mediawiki/2018/2/28/T--Warwick--sandR.svg' id='sandR'>
+
+
<img src='https://static.igem.org/mediawiki/2018/b/b5/T--Warwick--rockL.svg' id='rockL'>
+
<img src='https://static.igem.org/mediawiki/2018/9/97/T--Warwick--rockR.svg' id='rockR'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke1'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke2'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke3'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke4'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke5'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke6'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke7'>
+
<img src='https://static.igem.org/mediawiki/2018/2/24/T--Warwick--smokebubble.svg' class='smoke' id='smoke8'>
+
  
<img src='https://static.igem.org/mediawiki/2018/4/45/T--Warwick--coral.svg' id='coralL'>
+
<div style='width: 70%; height: 2px; margin: 0 15%; background-color: #02c9d0'></div>
</div>
+
  
<img src='https://static.igem.org/mediawiki/2018/d/dd/T--Warwick--dolphin.svg' id='jumpingFish'>
+
<img src='https://static.igem.org/mediawiki/2018/3/37/T--Warwick--projectdev.png' style='width: 90%; margin: 5% 5% 0% 5%;'>
</div>
+
 
</div>
+
 
 +
                        <div id='descriptionFolder' style='margin-top: 7vw;'>
 +
                              <div class='Contents' id='Content1'>
 +
                                  <h2>Pakistan</h2>
 +
                                  <p>We spoke to an official, who worked for WAPDA in Lahore, Pakistan, and was directly involved in water treatment. This discussion highlighted the importance of a centralised water treatment system, and the need for governance over the 'standard' level of water cleanliness. Pakistan is currently moving towards this goal, and aims to have standardised water treatment soon, however as of right now, it is often up to each local district to lay out the rules on water treatment and the budget that is allocated to this.</p>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/9/9a/T--Warwick--pakistan.png' style="width: 20%;margin-top: -12%;margin-left: 3%;">
 +
                              </div>
 +
                              <div class='Contents' id='Content2'>
 +
                                  <h2>Survey</h2><br>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/a/a7/T--Warwick--HPGraph1.png' style='margin-top: -10%;'>
 +
                                  <p>Before we launched our project, we conducted an online survey to gauge the public’s reaction towards the problem of water safety and to see if our project would create an impact on society. We received a total of 118 responses with survey respondents coming from all around the world such as United Kingdom, Malaysia, Singapore and India.
 +
<br><br>
 +
The survey results showed that our project has the ability to make an impact as many people (68.6%)  were aware of the dangers of oestrogen in water to animals. 
 +
</p>
 +
                              </div>
 +
                              <div class='Contents' id='Content3'>
 +
                                  <p>
 +
                                      Although our project would involved placing anti-bacterial resistance into water, our initial fears were alleviated when the survey results show that close to half of the respondents (40.7%) approved to the addition of bacteria in water while only 14.4% of them disapproved.
 +
                                  </p>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/6/65/T--Warwick--HPGraph2.png' style='box-shadow: 0px 0px 5px 5px white;'>
 +
                              </div>
 +
                              <div class='Contents' id='Content4'>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/f/f4/T--Warwick--HPTable3.png'>
 +
                                  <p>
 +
                                      Overall, many felt that our team’s project have the ability to create a positive impact on the environment as there is a clear awareness of the present dangers of water.
 +
                                  </p>
 +
                              </div>
 +
                              <div class='Contents' id='Content5'>
 +
                                  <h2>Lee Hishamuddin Allen & Gledhill (IP Lawyer)</h2>
 +
                                  <p>
 +
After some discussion with Eunice Chan, an Intellectual Property (IP) lawyer , we were told that in order to patent a product, it needs to be new or be combined in a new way. Patents cannot be applied if they have been introduced into the public domain. This prompted us to compile an intellectual property guidebook which would serve as a guide for other teams when considering which type of trademark applications they should go for.<br>Furthermore, in line with the recent blockchain developments, we posed the question of whether is blockchain technology the future of synthetic biology intellectual property protection. The full version of the guidebook can be found <a href="https://2018.igem.org/Team:Warwick/Public_Engagement">here.</a>
 +
                                  </p>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/2/23/T--Warwick--Law.png' style='width: 25%; margin-top: -16%; margin-left: 2%;'>
 +
                              </div>
 +
                              <div class='Contents' id='Content6'>
 +
                                  <h2>David Coleman, Professor of Oral & Applied Microbiology, Dental Science at Trinity College Dublin</h2>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/d/d1/T--Warwick--TCD.jpg' style='width: 20%; margin-right: 5%; margin-top: -95%;'>
 +
                                  <p>
 +
                                      We were fortunate to conduct a phone call interview with Mr Coleman about his perspective on our Legionella project. He stated that decontamination against Legionella bacteria was far easier than effectively testing for the bacteria itself - most Legionella are highly susceptible to antibiotics. A rapid test would be valuable to dental practitioners to prove that their equipment would be sterile at low concentrations of Legionella bacteria. Equipment is usually sterile, however Legionella bacteria tend to find their way into dental chair units - waterlines can become dense with bacterial biofilm without regular disinfection.<br><br>
 +
 
 +
Culture tests for Legionella can frequently result in false negatives, putting patients at risk when no threat can be identified. Legionella are a parasitic bacteria, both to humans and to microorganisms; they can revive themselves after being engulfed by amoeba, meaning that the amoeba cells must be lysed in order to correctly define the true prevalence of legionella in a given sample. An acid lysis step is required in order to free the Legionella, but due to the parasitic nature of the bacteria, cultures can still prove difficult to give consistent results. Disinfectant can also cause Legionella to enter a pathogenically-viable non-culturable state.<br><br>
 +
 
 +
After the interview with David Coleman, we discovered a significant demand for an effective Legionella detection kit. We changed the sequence of our gRNA based upon his recommendation from an <a style='color:#85e4e9 !important; font-weight: 400;' href='http://parts.igem.org/Part:BBa_K2841515'>endA (highlighted in red)</a> sensing device to a <a style='color:#85e4e9 !important; font-weight: 400;' href='http://parts.igem.org/Part:BBa_K2841541'>Legiolysin sensing device (highlighted in blue)</a>. The interview with David Coleman has had a foundational impact on our project, changing it at a genetic, and therefore functional level.<br><br><br>
 +
<img style='width: 80%' src='https://static.igem.org/mediawiki/2018/7/7e/T--Warwick--riboHP1.png'><br>Before<br><br><br><img style='width: 80%' src='https://static.igem.org/mediawiki/2018/0/01/T--Warwick--riboHP2.png'><br>After<br><br>Find our Designs page <a style='color:#85e4e9 !important; font-weight: 400;' href='2018.igem.org/Team:Warwick/Design'>here</a>
 +
                                  </p>
 +
                              </div>
 +
                              <div class='Contents' id='Content7'>
 +
                                  <h2>Dr Ng Khuen Yen, Professor of Pharmacy at Monash University Malaysia</h2>
 +
                                  <p>
 +
In our interview with Dr Ng from Monash University, he offered us great perspective on his thoughts regarding to our Bacillus Subtilis project. He stressed that in order for us to market our product effectively, we have to ensure that the lead floatation system is low in cost and has good sensitivity towards the detection of toxic metals.
 +
<br><br>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/b/b6/T--Warwick--HPimg1.png' style='width: 40%; box-shadow: 0px 0px 5px 5px white; margin-right:8%;'>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/c/c3/T--Warwick--HPimg2.png' style='width: 40%; box-shadow: 0px 0px 5px 5px white;'>
 +
                                  </p>
 +
                              </div>
 +
                              <div class='Contents' id='Content8'>
 +
                                  <h2>David Lloyd, FREDsense</h2>
 +
                                  <p>
 +
                                      Mr Lloyd, co-founder and CEO of FREDsense gave us amazing insights into how we could improve and advance our project, specifically in the North America market, He spoke of how lead is a pretty common problem in ageing infrastructure, especially in areas such as Michigan whereby a high concentration of lead is currently leaking out of the pipes of various infrastructures. Hence, our project has a great potential marketability value. With regards to scaling-up, he advised us that we need to consider whether do we want our project to be a field-based technology or something that can be implemented in common household. With the former option, he also warned us that we need to ensure that the operators using it would be able to know how to use them in a simple but effective manner. This is because they are used to using simpler and quicker operation lead detection systems such as taking water samples. Therefore, in order for our project to work effectively when launched, simplicity and performance are two things we have to bear in mind.
 +
                                  </p>
 +
                                  <img src='https://static.igem.org/mediawiki/2018/b/bd/T--Warwick--Fredsense.png' style=" width: 21%; margin-left: 5%; margin-top: -23%; box-shadow: 0px 0px 5px 5px white;">
 +
                              </div>
  
<div id='footer' style='margin-top: 8.9%'>
+
<div class='Contents' id='Content8'>
 +
<embed id='pdfPage' style='margin: 0% 15% 0% 15%;' src="https://static.igem.org/mediawiki/2018/1/12/T--Warwick--2018-integratedhppppppp.pdf" type="application/pdf" width="70%" height="800px" />   
 +
</div>
 +
                        </div>
 +
                </div>
 +
     
 +
<div id='footer'>
 
 
 
<div id='leftFoot'>
 
<div id='leftFoot'>
Line 227: Line 253:
 
            <img src="https://static.igem.org/mediawiki/2018/6/61/T--Warwick--YTRed.png" alt="YouTube">
 
            <img src="https://static.igem.org/mediawiki/2018/6/61/T--Warwick--YTRed.png" alt="YouTube">
 
            </a>
 
            </a>
            <a class='socialMedia' href="https://twitter.com/WISB_SynBioCtre">
+
            <a class='socialMedia' href="https://twitter.com/warwickigem">
 
            <img src="https://static.igem.org/mediawiki/2018/f/f0/T--Warwick--Twitterlogo.png" alt="Twitter">
 
            <img src="https://static.igem.org/mediawiki/2018/f/f0/T--Warwick--Twitterlogo.png" alt="Twitter">
 
            </a>
 
            </a>

Latest revision as of 03:59, 18 October 2018

Ripple


Human Practices

Pakistan

We spoke to an official, who worked for WAPDA in Lahore, Pakistan, and was directly involved in water treatment. This discussion highlighted the importance of a centralised water treatment system, and the need for governance over the 'standard' level of water cleanliness. Pakistan is currently moving towards this goal, and aims to have standardised water treatment soon, however as of right now, it is often up to each local district to lay out the rules on water treatment and the budget that is allocated to this.

Survey


Before we launched our project, we conducted an online survey to gauge the public’s reaction towards the problem of water safety and to see if our project would create an impact on society. We received a total of 118 responses with survey respondents coming from all around the world such as United Kingdom, Malaysia, Singapore and India.

The survey results showed that our project has the ability to make an impact as many people (68.6%) were aware of the dangers of oestrogen in water to animals.

Although our project would involved placing anti-bacterial resistance into water, our initial fears were alleviated when the survey results show that close to half of the respondents (40.7%) approved to the addition of bacteria in water while only 14.4% of them disapproved.

Overall, many felt that our team’s project have the ability to create a positive impact on the environment as there is a clear awareness of the present dangers of water.

Lee Hishamuddin Allen & Gledhill (IP Lawyer)

After some discussion with Eunice Chan, an Intellectual Property (IP) lawyer , we were told that in order to patent a product, it needs to be new or be combined in a new way. Patents cannot be applied if they have been introduced into the public domain. This prompted us to compile an intellectual property guidebook which would serve as a guide for other teams when considering which type of trademark applications they should go for.
Furthermore, in line with the recent blockchain developments, we posed the question of whether is blockchain technology the future of synthetic biology intellectual property protection. The full version of the guidebook can be found here.

David Coleman, Professor of Oral & Applied Microbiology, Dental Science at Trinity College Dublin

We were fortunate to conduct a phone call interview with Mr Coleman about his perspective on our Legionella project. He stated that decontamination against Legionella bacteria was far easier than effectively testing for the bacteria itself - most Legionella are highly susceptible to antibiotics. A rapid test would be valuable to dental practitioners to prove that their equipment would be sterile at low concentrations of Legionella bacteria. Equipment is usually sterile, however Legionella bacteria tend to find their way into dental chair units - waterlines can become dense with bacterial biofilm without regular disinfection.

Culture tests for Legionella can frequently result in false negatives, putting patients at risk when no threat can be identified. Legionella are a parasitic bacteria, both to humans and to microorganisms; they can revive themselves after being engulfed by amoeba, meaning that the amoeba cells must be lysed in order to correctly define the true prevalence of legionella in a given sample. An acid lysis step is required in order to free the Legionella, but due to the parasitic nature of the bacteria, cultures can still prove difficult to give consistent results. Disinfectant can also cause Legionella to enter a pathogenically-viable non-culturable state.

After the interview with David Coleman, we discovered a significant demand for an effective Legionella detection kit. We changed the sequence of our gRNA based upon his recommendation from an endA (highlighted in red) sensing device to a Legiolysin sensing device (highlighted in blue). The interview with David Coleman has had a foundational impact on our project, changing it at a genetic, and therefore functional level.



Before



After

Find our Designs page here

Dr Ng Khuen Yen, Professor of Pharmacy at Monash University Malaysia

In our interview with Dr Ng from Monash University, he offered us great perspective on his thoughts regarding to our Bacillus Subtilis project. He stressed that in order for us to market our product effectively, we have to ensure that the lead floatation system is low in cost and has good sensitivity towards the detection of toxic metals.

David Lloyd, FREDsense

Mr Lloyd, co-founder and CEO of FREDsense gave us amazing insights into how we could improve and advance our project, specifically in the North America market, He spoke of how lead is a pretty common problem in ageing infrastructure, especially in areas such as Michigan whereby a high concentration of lead is currently leaking out of the pipes of various infrastructures. Hence, our project has a great potential marketability value. With regards to scaling-up, he advised us that we need to consider whether do we want our project to be a field-based technology or something that can be implemented in common household. With the former option, he also warned us that we need to ensure that the operators using it would be able to know how to use them in a simple but effective manner. This is because they are used to using simpler and quicker operation lead detection systems such as taking water samples. Therefore, in order for our project to work effectively when launched, simplicity and performance are two things we have to bear in mind.