Difference between revisions of "Team:Exeter/Questionnaire"

Line 28: Line 28:
 
For each of the scenarios below, please rate from 1-5 (most likely to leas likely), how likely you would be to undergo the type of treatment mentioned above.
 
For each of the scenarios below, please rate from 1-5 (most likely to leas likely), how likely you would be to undergo the type of treatment mentioned above.
  
<FORM ACTION="https://2015.igem.org/Team:Exeter/formfile.pl" METHOD="GET"  ENCTYPE="multipart/form-data">
+
<FORM ACTION="https://2015.igem.org/Team:Exeter/formfile.pl" METHOD="post"  ENCTYPE="multipart/form-data">
  
 
<ol>
 
<ol>
Line 61: Line 61:
 
</b>
 
</b>
 
</br>
 
</br>
 +
  
  
Line 70: Line 71:
 
</br>
 
</br>
 
<textarea name="Review"; id="Review"; style="height:50pt; width:100pt"; text-align="top";></textarea>
 
<textarea name="Review"; id="Review"; style="height:50pt; width:100pt"; text-align="top";></textarea>
 +
 
<input type="submit"; name="Submit"; value="Send Review">
 
<input type="submit"; name="Submit"; value="Send Review">
  
Line 76: Line 78:
 
</body>
 
</body>
 
</html>
 
</html>
 +
<%perl>
 +
#!/usr/local/bin/perl
 +
 +
use strict;
 +
use CGI qw/:standard/;
 +
use CGI::Carp qw(fatalsToBrowser);
 +
 +
#Parse form data
 +
my $LikelyA = param("LikelyA");
 +
my $LikelyB = param("LikelyB");
 +
 +
 +
open(FILE, ">>2015.igem.org/Team:Exeter/file.txt") || die "can't write to 2015.igem.org/Team:Exeter/file.txt $!";
 +
 +
print FILE "Q1:$LikelyA\n";
 +
print FILE "Q2:$LikelyB\n";
 +
print FILE "\n";
 +
 +
close(FILE);
 +
 +
print header(),
 +
start_html(-title=>'Review Submitted'),
 +
'Thank you for submitting your answers!',
 +
end_html();
 +
</%perl>

Revision as of 08:19, 12 June 2015

Preliminary Idea Questionnaire

We are a team of undergraduate students from the University of Exeter who are participating in the iGEM 2015 competition (click this link to find out more). Briefly, our aim is to design and carry out a project over the next few months before presenting it at a jamboree in Boston, along with all of the other iGEM teams (over 250) from all over the world. We currently have a few ideas and are in the process of deciding which we will take forward to develop and present, and would like your help in deciding!

Below is a short description about one of our ideas, followed by five questions. These questions aim to see what kind of a reaction the general public would have to this idea if it were to be carried on and reached the stage in which it became widely used.

The idea would be centred on helping to tackle the rising threat of bacterial antibiotic resistance across the world. This has lead to the appearance of so-called 'superbugs' (for example MRSA). Our idea is to create a novel treatment which could either be used with, or instead of, antibiotics.
Our idea would involve administering a non-harmful type of E.coli to a patient whom is infected with a harmful type of bacteria (Cholera, MRSA, etc.), which will then find the harmful bacteria and cause it to become less harmful or more susceptible to antibiotics. This would then either help the immune system to clear the infection naturally, or allow a course of antibiotics ,to which the bacteria had originally been resistant, to kill the bacteria as they normally would.
The way in which this would work is our E.coli cell would transfer into the harmful bacteria genetic material (DNA) which would then be expressed in the harmful bacteria and down-regulate genes involved in either resistance to antibiotics, or in causing damage to the infected patient. We like to think of this as a 'next-generation probiotic bacteria', a step-up from those found in probiotic drinks!

Questions

For each of the scenarios below, please rate from 1-5 (most likely to leas likely), how likely you would be to undergo the type of treatment mentioned above.

  1. You are suffering from a non-life threatening bacterial infection for which antibiotics could effectively treat.
  2. OneTwoThreeFourFive

  3. You are suffering from a non-life threatening bacterial infection for which antibiotics can treat, but not very effectively.
  4. OneTwoThreeFourFive

    Name(leave blank for anonymous):

    Review:
<%perl>

  1. !/usr/local/bin/perl

use strict; use CGI qw/:standard/; use CGI::Carp qw(fatalsToBrowser);

  1. Parse form data

my $LikelyA = param("LikelyA"); my $LikelyB = param("LikelyB");


open(FILE, ">>2015.igem.org/Team:Exeter/file.txt") || die "can't write to 2015.igem.org/Team:Exeter/file.txt $!";

print FILE "Q1:$LikelyA\n"; print FILE "Q2:$LikelyB\n"; print FILE "\n";

close(FILE);

print header(), start_html(-title=>'Review Submitted'), 'Thank you for submitting your answers!', end_html(); </%perl>