Team:Tokyo Tech/Safety

From 2011.igem.org

(Difference between revisions)
 
(18 intermediate revisions not shown)
Line 1: Line 1:
-
<!-- *** What falls between these lines is the Alert Box!  You can remove it from your pages once you have read and understood the alert *** -->
+
<html lang="english" xmlns="http://www.w3.org/1999/xhtml" xml:lang="english">
 +
<head>
 +
<title>Tokyo Tech 2011</title>
 +
<meta http-equiv="content-script-type" content="text/javascript" />
 +
<meta http-equiv="content-type" content="text/html; charset=Shift_JIS" />
 +
<style>
 +
<!--
-
<html>
+
div#LeftMenu
 +
{
 +
color: #000000;
 +
background-color: #C4C4D2;
 +
margin: 0px;
 +
padding: 0px;
 +
left: 2px;
 +
width: 150px;
 +
float: left;
 +
top: 500px;
 +
position: static;
 +
}
 +
 +
div#navigation
 +
{
 +
background-color: #000000;
 +
color: #FFFFFF;
 +
margin: 0;
 +
padding: 0;
 +
position: absolute;
 +
}
 +
 +
ul#TopMenu
 +
{
 +
font-family: Arial, verdana, sans-serif;
 +
list-style: none;
 +
float: left;
 +
height: 30px;
 +
width: 945px;
 +
}
 +
 +
ul#TopMenu > li
 +
{
 +
float: left;
 +
position:relative;
 +
padding: 2px 15px 0 0;
 +
}
 +
 +
ul#TopMenu > li ul
 +
{
 +
background-color: #000000;
 +
color: #FFFFFF;
 +
display: none;
 +
position: absolute;
 +
font-size: 16px;
 +
opacity: 0.8;
 +
list-style: none;
 +
min-width: 100px;
 +
padding: 9px 0 5px 5px;
 +
z-index: 500;
 +
}
 +
 +
#TopMenu > li:hover ul
 +
{
 +
display: inline;
 +
}
 +
 +
#TopMenu > li > ul > li
 +
{
 +
position: relative;
 +
padding: 0 0 5px 5px;
 +
margin: -1px;
 +
}
 +
 +
body
 +
{
 +
background-color: #EFEBEC;
 +
color: #000000;
 +
font-size: 13px;
 +
}
 +
 +
.top
 +
{
 +
top: 0;
 +
left: 0;
 +
clear: both;
 +
height: 190px;
 +
}
 +
.main
 +
{
 +
position: absolute;
 +
left: 160px;
 +
width: auto;
 +
}
 +
 +
.under_contents
 +
{
 +
position: static;
 +
top: 300px;
 +
margin: 5px 5px 5px 5px;
 +
padding: 0 0 0 0;
 +
 +
}
 +
 +
h1, h2, h3, h4, h5, h6
 +
{
 +
background-color: #00508D;
 +
color:#FFFFFF;
 +
text-align: left;
 +
}
 +
 +
h2
 +
{
 +
text-indent: 1em;
 +
}
 +
 +
h3
 +
{
 +
text-indent: 2em;
 +
}
 +
 +
h4
 +
{
 +
text-indent: 3em;
 +
}
 +
 +
.footer
 +
{
 +
position: relative;
 +
}
 +
 +
#navigation a
 +
{
 +
text-decoration: none;
 +
background-color: transparent;
 +
color: #FFFFFF;
 +
}
 +
 +
#navigation a:hover
 +
{
 +
color: #FF9966;
 +
}
 +
 +
 +
.name
 +
{
 +
font-style: italic;
 +
}
 +
 +
p
 +
{
 +
text-indent: 2em;
 +
}
 +
 +
.graph_title
 +
{
 +
position: relative;
 +
text-align: center;
 +
}
 +
 +
-->
 +
</style>
 +
 +
<script type="text/javascript">
 +
<!--
 +
var timeout = 500; //unit: ms
 +
var temp_timer = 0;  //for temp.
 +
var showed_item = 0;  //for temp.
-
<p>For iGEM 2010 teams are asked to detail how they approached any issues of biological safety associated with their projects. Specifically, teams should consider the following four questions:</p>
+
function OpenMenu(elem)
-
<p>Q1. Would any of your project ideas raise safety issues in terms of researcher safety, public safety or environmental safety ?</p>
+
{
-
<p>A1. For review of our applications by a local biosafety group, researcher safety, public safety and environmental safety are evaluated.<br />
+
StopMenuTimer();
-
In this meaning, our answer is all YES.</p>
+
if(showed_item) showed_item.style.display = 'none';
-
<p>Q2. Do any of the new BioBrick parts (or devices) that you made this year raise any safety issues? If yes,</p>
+
-
<p>A2.No. Our parts are of safety level one and two. We used genes which are analyzed in peer-reviewed papers.</p>
+
showed_item = elem.getElementsByTagName('ul').item(0);
-
<p>Q3. Is there a local biosafety group, committee, or review board at your institution?</p>
+
if(showed_item == null) return;
-
<p>A3. Yes</p>
+
showed_item.style.display = 'block';
-
<p>If yes, what does your local biosafety group think about your project?</p>
+
-
<p>The biosafety committee of our organization accepted our applications. They think our project is legal.</p>
+
}
-
<p>Q4. Do you have any other ideas how to deal with safety issues that could be useful for future iGEM competitions? How could parts, devices and systems be made even safer through biosafety engineering</p>
+
-
<p>A4.Put document number of a review sheet from the local biosafety group.</p>
+
function CloseMenu()
 +
{
 +
if(showed_item) showed_item.style.display = 'none';
 +
}
 +
 +
function SetCloseTimer()
 +
{
 +
StopMenuTimer();
 +
temp_timer = window.setTimeout(CloseMenu, timeout);
 +
}
 +
 +
function StopMenuTimer()
 +
{
 +
if(temp_timer)
 +
{
 +
window.clearTimeout(temp_timer);
 +
temp_timer = null;
 +
}
 +
}
 +
 +
function getElementsByClass() {
 +
    var classElements = new Array();
 +
    var allElements = document.getElementsByTagName("*");
 +
    for (i = 0 ; i < allElements.length; i++) {
 +
if (allElements[i].className == 'firstHeading') {
 +
    allElements[i].style.display = 'none';
 +
  // window.alert('発見。');
 +
}
 +
    }
 +
}
 +
 +
window.onload = function() {
 +
getElementsByClass();
 +
var menu = window.document.getElementById('TopMenu');
 +
if(menu==null)
 +
return;
 +
var list = menu.getElementsByTagName('li');
 +
for(i=0; i<list.length; i++)
 +
{
 +
list[i].onmouseover = function(){
 +
OpenMenu(this);
 +
}
 +
 +
list[i].onmouseout = function(){SetCloseTimer();}
 +
list[i].onclick    = function(){
 +
if(showed_item) CloseMenu();
 +
else OpenMenu(this);
 +
}
 +
 +
var n_list = list[i].getElementsByTagName('ul');
 +
for(j=0; j<n_list.length; j++)
 +
{
 +
n_list[j].onmouseout = function(){SetCloseTimer();}
 +
n_list[j].onmouseover= function(){StopMenuTimer();}
 +
}
 +
}
 +
}
 +
//-->
 +
</script>
 +
</head>
 +
<body>
 +
<!-- top box -->
 +
<div class="top">
 +
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="965" height="150" id="Yourfilename" align="">
 +
<param name="movie" value="https://static.igem.org/mediawiki/2011/4/4d/Header.swf">
 +
<param name="quality" value="high">
 +
<param name="bgcolor" value="#FFFFFF">
 +
<embed src="https://static.igem.org/mediawiki/2011/4/4d/Header.swf" quality="high" bgcolor="#FFFFFF" width="965" height="150" name="Yourfilename" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
 +
</embed>
 +
</object>
 +
<!-- list of top menu -->
 +
<div id="navigation">
 +
<ul id="TopMenu">
 +
<li id="menu_Home"><a href="https://2011.igem.org/Team:Tokyo_Tech">Home</a></li>
 +
 +
<li id="menu_Project">
 +
Project
 +
<ul>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/RPS-game/index.htm">RPS-Game</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/making-rain/index.htm">Make it Rain</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Projects/Urea-cooler/index.htm">Urea Coolers</a></li>
 +
</ul>
 +
</li>
 +
 +
<li id="menu_data_page"><a href="https://2011.igem.org/Team:Tokyo_Tech/DataPage.htm">Data page</a></li>
 +
 +
<li id="menu_Modeling">
 +
Modeling
 +
<ul>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Modeling/RPS-game/RPS-game">RPS-Game</li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Modeling/Urea-cooler/urea-cooler">Urea Coolers</li>
 +
</ul>
 +
</li>
 +
 +
<li id="menu_Human Practice"><a href="https://2011.igem.org/Team:Tokyo_Tech/HumanPractice.htm">Human Practice</a></li>
 +
 +
<li id="menu_Sitemap"><a href="https://2011.igem.org/Team:Tokyo_Tech/sitemap.htm">Sitemap</a></li>
 +
 +
<li id="menu_Extra">
 +
More
 +
<ul style="width:210px;">
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Safety">Safety</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Attribution_and_Contributions.htm">Attribution and Contributions</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/notebook">NoteBook</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/team">Team</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Sponsers.htm">Sponsors</a></li>
 +
<li><a href="https://2011.igem.org/Team:Tokyo_Tech/Collaboration.htm">Collaboration</a></li>
 +
</ul>
 +
</li>
 +
</ul>
 +
</div>
 +
<!-- end of top menu -->
 +
</div>
 +
<!-- end of top box -->
 +
<!-- under contents -->
 +
<p class="under_contents">
 +
<!-- left menu list -->
-
<div id="box" style="width: 700px; margin-left: 137px; padding: 5px; border: 3px solid #000; background-color: #fe2b33;">
 
-
<div id="template" style="text-align: center; font-weight: bold; font-size: large; color: #f6f6f6; padding: 5px;">
 
-
This is a template page. READ THESE INSTRUCTIONS.
 
-
</div>
 
-
<div id="instructions" style="text-align: center; font-weight: normal; font-size: small; color: #f6f6f6; padding: 5px;">
 
-
You are provided with this team page template with which to start the iGEM season.  You may choose to personalize it to fit your team but keep the same "look." Or you may choose to take your team wiki to a different level and design your own wiki.  You can find some examples <a href="https://2008.igem.org/Help:Template/Examples">HERE</a>.
 
-
</div>
 
-
<div id="warning" style="text-align: center; font-weight: bold; font-size: small; color: #f6f6f6; padding: 5px;">
 
-
You <strong>MUST</strong> have a team description page, a project abstract, a complete project description, a lab notebook, and a safety page.  PLEASE keep all of your pages within your teams namespace. 
 
-
</div>
 
-
</div>
 
-
</html>
 
-
<!-- *** End of the alert box *** -->
+
<!-- main contents -->
 +
<div class="_main">
 +
<!-- ############ Write main contents here ############### -->
 +
 +
<!-- page title -->
 +
<h1> Safety </h1>
 +
 +
<p>
 +
For iGEM 2011 teams are asked to detail how they approached any issues of biological safety
 +
associated with their projects. Specifically, teams should consider the following questions:
 +
</p>
 +
 +
<p>
 +
<b>
 +
Q1. Would any of your project ideas raise safety issues in terms of researcher safety,
 +
public safety or environmental safety ?
 +
</b>
 +
</p>
 +
<p style="margin-left:30px;">
 +
A1. No, our project ideas do not raise any safety issue in terms of researcher safety,
 +
public safety or environmental safety. All the experiments are carried out in the lab,
 +
they are safe for the researcher and the environment, and they do not have any impact
 +
outside the lab.
 +
</p>
 +
 +
 +
<p>
 +
<b>
 +
Q2. Do any of the new BioBrick parts (or devices) that you made this year raise any safety
 +
issues? If yes,did you document these issues in the Registry? how did you manage to handle
 +
the safety issue? how could other teams learn from your experience?
 +
</b>
 +
</p>
 +
<p style="margin-left:30px;">
 +
A2.No, none of the BioBricks parts (or devices) that we have made this year raises any safety
 +
issue, they are all BL1 and BL2.
 +
</p>
 +
 +
 +
<p>
 +
<b>
 +
Q3. Is there a local biosafety group, committee, or review board at your institution?
 +
If yes, what does your local biosafety group think about your project?
 +
</b>
 +
</p>
 +
<p style="margin-left:30px;">
 +
A3. Yes there is. The biosafety committee of our organization accepted part of our applications.
 +
The other part of the applications is going to be evaluated.  After all of our applications have been accepted,
 +
  we will start wet experiments.
 +
</p>
 +
 +
 +
<p>
 +
<b>
 +
Q4. Do you have any other ideas how to deal with safety issues that could be useful for
 +
future iGEM competitions? How could parts, devices and systems be made even safer
 +
through biosafety engineering?
 +
</b>
 +
</p>
 +
<p style="margin-left:30px;">
 +
A4. We think is a good idea to use review sheets to have information about the parts. These review sheets can be made in collaboration with the local biosafety group.
 +
</p>
 +
        <p>
 +
<b>
 +
Q5. Isn't isoprene you used in the project harmful to human or <span class="name">E. coli</span> ?
 +
</b>
 +
</p>
 +
<p style="margin-left:30px;">
 +
A5. No, isoprene is not harmful to <span class="name">E. coli</span> or human unless being inhaled over 0.19 mg/L(59 mg/kg).The amount of
 +
                            isoprene produced by our <span class="name">E. coli</span> is 0.04 mg/batch-L and it is too small to have influence on human and <span class="name">E. coli</span>.
 +
                            There is some reports that isoperene might have chance to be carcinogenic, but the chance is as higher as
 +
                            that of coffeic acid.
 +
</p>
-
{|align="justify"
 
-
|You can write a background of your team here.  Give us a background of your team, the members, etc.  Or tell us more about something of your choosing.
 
-
|[[Image:Tokyo_Tech_logo.png|200px|right|frame]]
 
-
|-
 
-
|
 
-
''Tell us more about your project.  Give us background.  Use this is the abstract of your project.  Be descriptive but concise (1-2 paragraphs)''
 
-
|[[Image:Tokyo_Tech_team.png|right|frame|Your team picture]]
 
-
|-
 
-
|
 
-
|align="center"|[[Team:Tokyo_Tech | Team Example]]
 
-
|}
 
-
<!--- The Mission, Experiments --->
+
<!-- ############ End of main contents ############ -->
 +
</div>
 +
<!-- end of main contents -->
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
<!-- footer -->
-
!align="center"|[[Team:Tokyo_Tech|Home]]
+
<!--
-
!align="center"|[[Team:Tokyo_Tech/Team|Team]]
+
<div class="footer">
-
!align="center"|[https://igem.org/Team.cgi?year=2010&team_name=Tokyo_Tech Official Team Profile]
+
<hr />
-
!align="center"|[[Team:Tokyo_Tech/Project|Project]]
+
here is footer.
-
!align="center"|[[Team:Tokyo_Tech/Parts|Parts Submitted to the Registry]]
+
</div>
-
!align="center"|[[Team:Tokyo_Tech/Modeling|Modeling]]
+
-->
-
!align="center"|[[Team:Tokyo_Tech/Notebook|Notebook]]
+
<!-- end of footer -->
-
!align="center"|[[Team:Tokyo_Tech/Safety|Safety]]
+
</p>
-
!align="center"|[[Team:Tokyo_Tech/Attributions|Attributions]]
+
<!-- end of under contents -->
-
|}
+
-
 
+
<!-- DO NOT WRITE UNDER HERE -->
-
==Safety==
+
</body>
-
 
+
</html>
-
Please use this page to answer the safety questions posed on the [[Safety | safety page]].
+

Latest revision as of 13:26, 28 October 2011

Tokyo Tech 2011

Safety

For iGEM 2011 teams are asked to detail how they approached any issues of biological safety associated with their projects. Specifically, teams should consider the following questions:

Q1. Would any of your project ideas raise safety issues in terms of researcher safety, public safety or environmental safety ?

A1. No, our project ideas do not raise any safety issue in terms of researcher safety, public safety or environmental safety. All the experiments are carried out in the lab, they are safe for the researcher and the environment, and they do not have any impact outside the lab.

Q2. Do any of the new BioBrick parts (or devices) that you made this year raise any safety issues? If yes,did you document these issues in the Registry? how did you manage to handle the safety issue? how could other teams learn from your experience?

A2.No, none of the BioBricks parts (or devices) that we have made this year raises any safety issue, they are all BL1 and BL2.

Q3. Is there a local biosafety group, committee, or review board at your institution? If yes, what does your local biosafety group think about your project?

A3. Yes there is. The biosafety committee of our organization accepted part of our applications. The other part of the applications is going to be evaluated. After all of our applications have been accepted, we will start wet experiments.

Q4. Do you have any other ideas how to deal with safety issues that could be useful for future iGEM competitions? How could parts, devices and systems be made even safer through biosafety engineering?

A4. We think is a good idea to use review sheets to have information about the parts. These review sheets can be made in collaboration with the local biosafety group.

Q5. Isn't isoprene you used in the project harmful to human or E. coli ?

A5. No, isoprene is not harmful to E. coli or human unless being inhaled over 0.19 mg/L(59 mg/kg).The amount of isoprene produced by our E. coli is 0.04 mg/batch-L and it is too small to have influence on human and E. coli. There is some reports that isoperene might have chance to be carcinogenic, but the chance is as higher as that of coffeic acid.