Line 2: | Line 2: | ||
<style> | <style> | ||
+ | |||
+ | /********************************* DEFAULT WIKI SETTINGS ********************************/ | ||
+ | |||
#sideMenu, #top_title {display:none;} | #sideMenu, #top_title {display:none;} | ||
− | #content { padding:0px; width:100%; margin:- | + | #content { padding:0px; width:1000px; margin-top:-7px; margin-left:0px;} |
+ | body {background-color:white; } | ||
+ | #bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; } | ||
+ | |||
+ | /********************************* MENU ********************************/ | ||
+ | /* Wrapper for the menu */ | ||
+ | .menu_wrapper { | ||
+ | width:150px; | ||
+ | height:100vh; | ||
+ | position:fixed; | ||
+ | padding:0px; | ||
+ | float:left; | ||
+ | background-color:#f2f2f2; | ||
+ | text-align:left; | ||
+ | } | ||
+ | |||
+ | /* styling for the menu items */ | ||
+ | .menu_item { | ||
+ | width:100%; | ||
+ | margin:-2px 0px 0px -20px; | ||
+ | padding: 10px 10px; | ||
+ | border-bottom: 1px solid #d3d3d3; | ||
+ | font-weight:bold; | ||
+ | color:#000000; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | /* when hovering on a menu item */ | ||
+ | .menu_item:hover { | ||
+ | color:#000000; | ||
+ | background-color: #72c9b6; | ||
+ | } | ||
+ | |||
+ | /* decoration icon for the menu buttons*/ | ||
+ | .icon { | ||
+ | float:right; | ||
+ | font-size:16px; | ||
+ | font-weight:bold; | ||
+ | } | ||
+ | |||
+ | /* this is the icon for when the content is collapsed */ | ||
+ | .plus::before { | ||
+ | content: "+"; | ||
+ | } | ||
+ | /* this is the icon for when the content is expanded */ | ||
+ | .less::before { | ||
+ | content: "–"; | ||
+ | } | ||
+ | |||
+ | /* styling for the ul that creates the buttons */ | ||
+ | ul.menu_items { | ||
+ | width:100%; | ||
+ | margin-left:0px; | ||
+ | padding:0px; | ||
+ | list-style: none; | ||
+ | } | ||
+ | |||
+ | /* styling for the li that are the menu items */ | ||
+ | .menu_items li { | ||
+ | width:90%; | ||
+ | margin-top:-2px; | ||
+ | padding: 15px 0px 15px 15px ; | ||
+ | display:block; | ||
+ | border-bottom: 1px solid #d3d3d3; | ||
+ | text-align:left; | ||
+ | font-weight:bold; | ||
+ | text-decoration:none; | ||
+ | color:#000000; | ||
+ | list-style-type:none; | ||
+ | cursor:pointer; | ||
+ | -webkit-transition: all 0.4s ease; | ||
+ | -moz-transition: all 0.4s ease; | ||
+ | -ms-transition: all 0.4s ease; | ||
+ | -o-transition: all 0.4s ease; transition: all 0.4s ease; | ||
+ | } | ||
+ | |||
+ | .menu_item a { | ||
+ | width: 100%; | ||
+ | margin-left: -20px; | ||
+ | padding: 11px 90px 12px 20px; | ||
+ | text-decoration: none; | ||
+ | color:black; | ||
+ | } | ||
+ | |||
+ | /* When hovering on a menu item */ | ||
+ | .menu_items li:hover { | ||
+ | background-color:#72c9b6; | ||
+ | color: #000000; | ||
+ | } | ||
+ | |||
+ | /* styling for the submenus */ | ||
+ | .submenu { | ||
+ | width:100%; | ||
+ | display: none; | ||
+ | font-weight:bold; | ||
+ | cursor:pointer; | ||
+ | |||
+ | } | ||
+ | |||
+ | /* moving the margin for the submenu ul list */ | ||
+ | ul.submenu { | ||
+ | width: 100%; | ||
+ | margin: 10px 0px -11px 0px; | ||
+ | list-style: none; | ||
+ | } | ||
+ | |||
+ | /*styling for the submenu buttons */ | ||
+ | .submenu li { | ||
+ | width: 100%; | ||
+ | margin-left: 10px; | ||
+ | margin-bottom: 0px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* hover state for the submenu buttons */ | ||
+ | .submenu li a { | ||
+ | width: 100%; | ||
+ | padding: 5px 10px; | ||
+ | display: inline-block; | ||
+ | border-bottom: 1px solid #d3d3d3; | ||
+ | background-color:white; | ||
+ | text-decoration:none; | ||
+ | color:#000000; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | .submenu li a:hover { | ||
+ | background-color:#000000; | ||
+ | color: #72c9b6; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* When the screen is smaller than 680px, the menu has the option to hide/show - this button controls that */ | ||
+ | .collapsable_menu_control { | ||
+ | width:100%; | ||
+ | padding: 15px 0px; | ||
+ | display:none; | ||
+ | background-color:#000000; | ||
+ | text-align:center; | ||
+ | font-weight:bold; | ||
+ | color:#72c9b6; | ||
+ | cursor:pointer; | ||
+ | -webkit-transition: all 0.4s ease; | ||
+ | -moz-transition: all 0.4s ease; | ||
+ | -ms-transition: all 0.4s ease; | ||
+ | -o-transition: all 0.4s ease; | ||
+ | transition: all 0.4s ease; | ||
+ | } | ||
+ | |||
+ | /* when hovering on that button */ | ||
+ | .collapsable_menu_control:hover { | ||
+ | background-color: #72c9b6; | ||
+ | color:#000000; | ||
+ | } | ||
+ | |||
+ | /********************************* CONTENT OF THE PAGE ********************************/ | ||
+ | |||
+ | /* Wrapper for the content */ | ||
+ | .content_wrapper { | ||
+ | width: 85%; | ||
+ | margin-left:150px; | ||
+ | padding:10px 0px; | ||
+ | float:left; | ||
+ | background-color:white; | ||
+ | } | ||
+ | |||
+ | /*LAYOUT */ | ||
+ | .column { | ||
+ | padding: 10px 0px; | ||
+ | float:left; | ||
+ | background-color:white; | ||
+ | } | ||
+ | |||
+ | .full_size { | ||
+ | width:100%; | ||
+ | } | ||
+ | |||
+ | .full_size img { | ||
+ | padding: 10px 15px; | ||
+ | width:96.5%; | ||
+ | } | ||
+ | |||
+ | .half_size { | ||
+ | width: 50%; | ||
+ | } | ||
+ | .half_size img { | ||
+ | padding: 10px 15px; | ||
+ | width: 93%; | ||
+ | } | ||
+ | |||
+ | |||
+ | .clear { | ||
+ | clear:both; | ||
+ | } | ||
+ | |||
+ | .highlight { | ||
+ | width: 90%; | ||
+ | margin: auto; | ||
+ | padding: 15px 5px; | ||
+ | background-color: #f2f2f2; | ||
+ | } | ||
+ | |||
+ | |||
+ | /*STYLING */ | ||
+ | |||
+ | /* styling for the titles */ | ||
+ | .content_wrapper h1, .content_wrapper h2 { | ||
+ | padding:5px 15px; | ||
+ | border-bottom:0px; | ||
+ | color:#72c9b6; | ||
+ | |||
+ | } | ||
+ | .content_wrapper h3, .content_wrapper h4, .content_wrapper h5, .content_wrapper h6 { | ||
+ | padding:5px 15px; | ||
+ | border-bottom:0px; | ||
+ | color: #000000; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* font and text */ | ||
+ | .content_wrapper p { | ||
+ | padding:0px 15px; | ||
+ | font-size: 13px; | ||
+ | font-family:Tahoma, Geneva, sans-serif; | ||
+ | } | ||
+ | |||
+ | /* Links */ | ||
+ | .content_wrapper a { | ||
+ | font-weight: bold; | ||
+ | text-decoration: underline; | ||
+ | text-decoration-color:#72c9b6; | ||
+ | color: #72c9b6; | ||
+ | -webkit-transition: all 0.4s ease; | ||
+ | -moz-transition: all 0.4s ease; | ||
+ | -ms-transition: all 0.4s ease; | ||
+ | -o-transition: all 0.4s ease; | ||
+ | transition: all 0.4s ease; | ||
+ | } | ||
+ | |||
+ | /* hover for the links */ | ||
+ | .content_wrapper a:hover { | ||
+ | text-decoration:none; | ||
+ | color:#000000; | ||
+ | } | ||
+ | |||
+ | /* non numbered lists */ | ||
+ | .content_wrapper ul { | ||
+ | padding:0px 20px; | ||
+ | font-size: 13px; | ||
+ | font-family:Tahoma, Geneva, sans-serif; | ||
+ | } | ||
+ | |||
+ | /* numbered lists */ | ||
+ | .content_wrapper ol { | ||
+ | padding:0px; | ||
+ | font-size: 13px; | ||
+ | font-family:Tahoma, Geneva, sans-serif; | ||
+ | } | ||
+ | |||
+ | /* Table */ | ||
+ | .content_wrapper table { | ||
+ | width: 97%; | ||
+ | margin:15px 10px; | ||
+ | border: 1px solid #d3d3d3; | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | |||
+ | /* table cells */ | ||
+ | .content_wrapper td { | ||
+ | padding: 10px; | ||
+ | vertical-align: text-top; | ||
+ | border: 1px solid #d3d3d3; | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | |||
+ | /* table headers */ | ||
+ | .content_wrapper th { | ||
+ | padding: 10px; | ||
+ | vertical-align: text-top; | ||
+ | border: 1px solid #d3d3d3; | ||
+ | border-collapse: collapse; | ||
+ | background-color:#f2f2f2; | ||
+ | } | ||
+ | |||
+ | /* Button class */ | ||
+ | .button_click { | ||
+ | margin: 10px auto; | ||
+ | padding: 15px; width:12%; | ||
+ | text-align:center; | ||
+ | font-weight:bold; | ||
+ | background-color: #72c9b6; | ||
+ | cursor:pointer; | ||
+ | -webkit-transition: all 0.4s ease; | ||
+ | -moz-transition: all 0.4s ease; | ||
+ | -ms-transition: all 0.4s ease; | ||
+ | -o-transition: all 0.4s ease; | ||
+ | transition: all 0.4s ease; | ||
+ | } | ||
+ | |||
+ | /* button class on hover */ | ||
+ | .button_click:hover { | ||
+ | background-color:#000000; | ||
+ | color:#72c9b6; | ||
+ | } | ||
+ | |||
+ | /********************************* RESPONSIVE STYLING ********************************/ | ||
+ | |||
+ | /* IF THE SCREEN IS LESS THAN 1000PX */ | ||
+ | |||
+ | @media only screen and (max-width: 1000px) { | ||
+ | |||
+ | #content {width:100%; } | ||
+ | .menu_wrapper {width:15%;} | ||
+ | .content_wrapper {margin-left: 15%;} | ||
+ | .menu_item {display:block;} | ||
+ | .icon {display:none;} | ||
+ | .highlight {padding:10px 0px;} | ||
+ | } | ||
+ | |||
+ | |||
+ | /* IF THE SCREEN IS LESS THAN 680PX */ | ||
+ | |||
+ | @media only screen and (max-width: 680px) { | ||
+ | .collapsable_menu_control { display:block;} | ||
+ | .menu_item {display:none;} | ||
+ | .menu_wrapper { width:100%; height: 15%; position:relative;} | ||
+ | .content_wrapper {width:100%; margin-left:0px;} | ||
+ | .column.half_size {width:100%; } | ||
+ | .column img { width: 100%; padding: 5px 0px;} | ||
+ | .icon {display:block;} | ||
+ | .highlight {padding:15px 5px;} | ||
+ | } | ||
+ | |||
</style> | </style> | ||
− | <head> | + | |
− | + | ||
− | + | ||
+ | <!--- THIS IS WHERE THE HTML BEGINS ---> | ||
+ | |||
+ | |||
+ | <!-- This tells the browser that your page is responsive --> | ||
+ | |||
+ | <head> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
</head> | </head> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | <div class="menu_wrapper" > | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | <div class="collapsable_menu_control"> MENU ▤ </div> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | <ul id="accordion" class="accordion"> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | li | + | <li class="menu_item"> <a href="https://2016.igem.org/Team:Dundee_Schools">HOME </a> </li> |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | <li class="menu_item"> <div class="icon plus"></div> TEAM | |
− | + | <ul class="submenu"> | |
− | + | <li> <a href=" https://2016.igem.org/Team:Dundee_Schools/Team"> Meet the Agents </a> </li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Collaborations"> Collaborations </a> </li> | |
− | + | </ul> | |
− | + | </li> | |
− | + | ||
− | + | ||
− | + | ||
− | . | + | <li class="menu_item"> <div class="icon plus"></div> PROJECT |
− | + | <ul class="submenu"> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Description"> Description </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Design"> Design </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Experiments"> Experiments </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Proof"> Proof of Concept </a></li> | |
+ | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Results"> Results </a></li> | ||
+ | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Notebook"> Notebook </a></li> | ||
+ | </ul> | ||
+ | </li> | ||
− | + | <li class="menu_item"> <div class="icon plus"></div> PARTS | |
− | + | <ul class="submenu"> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Parts">Parts </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Basic_Part"> Basic Parts </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Composite_Part"> Composite Parts </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Part_Collection"> Part Collection </a></li> | |
+ | </ul> | ||
+ | </li> | ||
− | |||
− | + | <li class="menu_item"> <a href="https://2016.igem.org/Team:Dundee_Schools/Safety"> SAFETY </a> </li> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | <li class="menu_item"> <a href="https://2016.igem.org/Team:Dundee_Schools/Attributions"> ATTRIBUTIONS </a></li> | ||
− | |||
− | + | <li class="menu_item"> <div class="icon plus"></div> HUMAN PRACTICES | |
− | + | <ul class="submenu"> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Human_Practices"> Human Practices </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/HP/Silver"> Silver </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/HP/Gold">Gold </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Integrated_Practices"> Integrated Practices </a></li> | |
− | + | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Engagement"> Engagement </a></li> | |
− | + | </ul> | |
− | + | </li> | |
− | + | ||
− | + | ||
− | + | ||
+ | |||
+ | <li class="menu_item"> <div class="icon plus"></div> AWARDS | ||
+ | <ul class="submenu"> | ||
+ | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Model">Modelling </a></li> | ||
+ | <li> <a href="https://2016.igem.org/Team:Dundee_Schools/Measurement">Medals</a></li> | ||
+ | </ul> | ||
+ | </li> | ||
+ | </ul> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <div class="content_wrapper"> | ||
+ | |||
+ | |||
+ | |||
+ | <h1 id="team_name"> Dundee Schools </h1> | ||
+ | <h4 id="page_name"> Notebook </h4> | ||
+ | |||
+ | <h3>Wet Team</h3> | ||
+ | <ul><h4>Week 1- Familiarising ourselves with the labs</h4> | ||
+ | <li>Transformation + Overnight of PSBIC3 | ||
+ | <li>Mini Prep of PSBIC3</li> | ||
+ | <li>Restriction Digest of PSB1C3</li> | ||
+ | <ul><h5>PCR’s:</h5> | ||
+ | <li>Hfq <i>E. coli</i>- Unsuccessful</li> | ||
+ | <li>Hfq <i>Serratia</i>- Unsuccessful</li> | ||
+ | <li>osmY- Unsuccessful</li> | ||
+ | </ul> | ||
+ | <li>Mini Prep of PSBIC3</li> | ||
+ | <li>Restriction Digest of PSB1C3</li> | ||
Week 2- | Week 2- | ||
+ | |||
Carried on with cloning | Carried on with cloning | ||
− | + | ||
− | o Hfq E.coli- Unsuccessful | + | * PCR’s: |
− | o Hfq Serratia – Unsuccessful | + | |
− | o osmY- Unsuccessful | + | o Hfq E.coli- Unsuccessful |
− | + | ||
− | o Hfq E.coli – Successful | + | o Hfq Serratia – Unsuccessful |
− | o Hfq Serratia – Unsuccessful | + | |
− | o osmY - Successful | + | o osmY- Unsuccessful |
− | + | ||
− | o | + | * 3rd PCR set up: |
− | o Hfq Serratia x 1 at 65 degrees - Successful | + | |
− | + | o Hfq E.coli – Successful | |
− | + | ||
+ | o Hfq Serratia – Unsuccessful | ||
+ | |||
+ | o osmY - Successful | ||
+ | |||
+ | * PCR’s: | ||
+ | |||
+ | o Hfq Serratia x 2 at 49 degrees - Successful | ||
+ | |||
+ | o Hfq Serratia x 1 at 65 degrees - Successful | ||
+ | |||
+ | * Ligation into PSBIC3 and transformed | ||
+ | |||
+ | * The 3 successful PCR’s were plated at concentrations of 2.1 and 3.1 with vector; no plates grew colonies | ||
Week 3- | Week 3- | ||
+ | |||
Made our first BioBrick | Made our first BioBrick | ||
− | + | ||
− | + | * Redid all 3 PCR’S – Hfq E.coli and osmY both worked. Hfq Serratia did not. | |
+ | |||
+ | * Colony PCR of the successful PCR’s, overnight, mini prep, sent away for sequencing and then stocked. | ||
+ | |||
First 2 BioBricks made: OsmY + Hfq E.coli | First 2 BioBricks made: OsmY + Hfq E.coli | ||
− | + | * PCR of osmY Hfq E.coli fusion and PCR of osmY Hfq Serratia Fusion - successful | |
+ | |||
Digested and Ligated etc.… sequenced then stocked. | Digested and Ligated etc.… sequenced then stocked. | ||
2 BioBricks made: osmY Hfq E.coli Fusion + osmY Hfq Serratia Fusion | 2 BioBricks made: osmY Hfq E.coli Fusion + osmY Hfq Serratia Fusion | ||
− | Week 4- | + | Week 4- |
− | + | ||
− | + | ||
− | + | ||
− | 1 Bio brick made: Hfq Serratia | + | Started to make gene fragments |
+ | |||
+ | * PCR of Hfq Serratia - successful | ||
+ | |||
+ | * Sequenced and Stocked. | ||
+ | |||
+ | 1 Bio brick made: Hfq Serratia | ||
+ | |||
+ | * Gene fragments – EC-SRNA and sma-SRNA digested and ligated into PSBIC3 | ||
+ | |||
+ | * Digestion of Rhamnose promoter | ||
+ | |||
+ | Week 5 – | ||
− | |||
− | |||
− | |||
Started to add Ha tags | Started to add Ha tags | ||
− | + | ||
− | o | + | * Ligations: |
− | o rbs-osmY-Hfq-Serratia | + | |
− | o rbs-osmY-Hfq-E.coli- Ha Tag | + | o rbs-osmY-Hfq-E.coli |
− | o rbs-osmY-Hfq-Serratia- Ha Tag | + | |
− | + | o rbs-osmY-Hfq-Serratia | |
− | o rbs-osmY- Ha Tag | + | |
− | o rbs-osmY-Hfq E.coli- Ha Tag- Successful | + | o rbs-osmY-Hfq-E.coli- Ha Tag |
− | o rbs-osmY-Hfq Serratia-Ha Tag – Successful | + | |
+ | o rbs-osmY-Hfq-Serratia- Ha Tag | ||
+ | |||
+ | * PCR’s: | ||
+ | |||
+ | o rbs-osmY- Ha Tag - Successful | ||
+ | |||
+ | o rbs-osmY-Hfq E.coli- Ha Tag- Successful | ||
+ | |||
+ | o rbs-osmY-Hfq Serratia-Ha Tag – Successful | ||
+ | |||
All PCR’s transformed and overnighted. | All PCR’s transformed and overnighted. | ||
+ | |||
Week 6- | Week 6- | ||
+ | |||
Phage outbreak | Phage outbreak | ||
− | + | ||
− | o rbs-osmY-Hfq- Ha tag | + | * Overnights of: |
− | o rbs-osmY-Hfq E.coli- Ha tag | + | |
− | o rbs-osmY-Hfq Serratia- Ha tag | + | o rbs-osmY-Hfq- Ha tag |
− | + | ||
− | + | o rbs-osmY-Hfq E.coli- Ha tag | |
− | + | ||
− | + | o rbs-osmY-Hfq Serratia- Ha tag | |
+ | |||
+ | * Mini preps, sequencing and transformations of the above | ||
+ | |||
+ | * Phage outbreak on Thursday; all transformations lost due to this re-done the next day | ||
+ | |||
+ | * All sent away for sequencing | ||
+ | |||
+ | * Ec – SRNA and sma SRNA – both stocked. | ||
+ | |||
Week 7- | Week 7- | ||
+ | |||
Western blot | Western blot | ||
− | + | ||
− | + | * We did our first western blot test with no timed samples. | |
− | + | ||
− | o Fli C for Ec- sRNA | + | * We also completed a timed western blot by adding different concentrations of Rhamanose and taking samples every hour |
− | o Vir F for Ec-sRNA | + | |
+ | * Primers: | ||
+ | |||
+ | o Fli C for Ec- sRNA | ||
+ | |||
+ | o Vir F for Ec-sRNA | ||
Week 8- | Week 8- | ||
+ | |||
Final week | Final week | ||
− | + | ||
− | + | * Performed another Western Blot to get a much cleaner image for the whole cell | |
− | + | ||
− | + | * Overnights with Ec-SRNA Fli C in MG1655 and Ec-SRNA Vir F | |
− | + | ||
+ | * Plates grew colonies – colony PCR with colonies. | ||
+ | |||
+ | * Sent away for sequencing | ||
<br></br> | <br></br> | ||
+ | |||
+ | |||
+ | |||
<h3>Dry Team</h3> | <h3>Dry Team</h3> | ||
− | |||
<ul><b>Week 1-</b> | <ul><b>Week 1-</b> | ||
<li>Started off discussing our topic of bacterial infections and brainstorming how we could target them; settled on RNA interference.</li> | <li>Started off discussing our topic of bacterial infections and brainstorming how we could target them; settled on RNA interference.</li> | ||
Line 336: | Line 649: | ||
<br></br> | <br></br> | ||
− | Whilst we may now be back at school and so not working on our project full-time, we are still putting a large amount of time and effort into it. Wiki development continues both in its design and content, all of us continue to work on the presentation, other teams are still being collaborated with, people and organisations are still being contacted, videos are being planned and outreach to younger students is underway. Overall, things are still moving and the gears in our brains are still very much in motion towards our goal of having our project be the best that we can make it. | + | <p>Whilst we may now be back at school and so not working on our project full-time, we are still putting a large amount of time and effort into it. Wiki development continues both in its design and content, all of us continue to work on the presentation, other teams are still being collaborated with, people and organisations are still being contacted, videos are being planned and outreach to younger students is underway. Overall, things are still moving and the gears in our brains are still very much in motion towards our goal of having our project be the best that we can make it. |
</p> | </p> | ||
− | </ | + | |
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
<script> | <script> | ||
Line 390: | Line 708: | ||
+ | $(".collapsable_menu_control").click(function() { | ||
+ | $(".menu_item").toggle(); | ||
+ | }); | ||
+ | $( window ).resize(function() { | ||
+ | $(".menu_item").show(); | ||
+ | }); | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 407: | Line 723: | ||
</script> | </script> | ||
− | |||
</html> | </html> |
Revision as of 04:30, 19 October 2016
Dundee Schools
Notebook
Wet Team
- Transformation + Overnight of PSBIC3
- Mini Prep of PSBIC3
- Restriction Digest of PSB1C3
- Hfq E. coli- Unsuccessful
- Hfq Serratia- Unsuccessful
- osmY- Unsuccessful
- Mini Prep of PSBIC3
- Restriction Digest of PSB1C3 Week 2- Carried on with cloning * PCR’s: o Hfq E.coli- Unsuccessful o Hfq Serratia – Unsuccessful o osmY- Unsuccessful * 3rd PCR set up: o Hfq E.coli – Successful o Hfq Serratia – Unsuccessful o osmY - Successful * PCR’s: o Hfq Serratia x 2 at 49 degrees - Successful o Hfq Serratia x 1 at 65 degrees - Successful * Ligation into PSBIC3 and transformed * The 3 successful PCR’s were plated at concentrations of 2.1 and 3.1 with vector; no plates grew colonies Week 3- Made our first BioBrick * Redid all 3 PCR’S – Hfq E.coli and osmY both worked. Hfq Serratia did not. * Colony PCR of the successful PCR’s, overnight, mini prep, sent away for sequencing and then stocked. First 2 BioBricks made: OsmY + Hfq E.coli * PCR of osmY Hfq E.coli fusion and PCR of osmY Hfq Serratia Fusion - successful Digested and Ligated etc.… sequenced then stocked. 2 BioBricks made: osmY Hfq E.coli Fusion + osmY Hfq Serratia Fusion Week 4- Started to make gene fragments * PCR of Hfq Serratia - successful * Sequenced and Stocked. 1 Bio brick made: Hfq Serratia * Gene fragments – EC-SRNA and sma-SRNA digested and ligated into PSBIC3 * Digestion of Rhamnose promoter Week 5 – Started to add Ha tags * Ligations: o rbs-osmY-Hfq-E.coli o rbs-osmY-Hfq-Serratia o rbs-osmY-Hfq-E.coli- Ha Tag o rbs-osmY-Hfq-Serratia- Ha Tag * PCR’s: o rbs-osmY- Ha Tag - Successful o rbs-osmY-Hfq E.coli- Ha Tag- Successful o rbs-osmY-Hfq Serratia-Ha Tag – Successful All PCR’s transformed and overnighted. Week 6- Phage outbreak * Overnights of: o rbs-osmY-Hfq- Ha tag o rbs-osmY-Hfq E.coli- Ha tag o rbs-osmY-Hfq Serratia- Ha tag * Mini preps, sequencing and transformations of the above * Phage outbreak on Thursday; all transformations lost due to this re-done the next day * All sent away for sequencing * Ec – SRNA and sma SRNA – both stocked. Week 7- Western blot * We did our first western blot test with no timed samples. * We also completed a timed western blot by adding different concentrations of Rhamanose and taking samples every hour * Primers: o Fli C for Ec- sRNA o Vir F for Ec-sRNA Week 8- Final week * Performed another Western Blot to get a much cleaner image for the whole cell * Overnights with Ec-SRNA Fli C in MG1655 and Ec-SRNA Vir F * Plates grew colonies – colony PCR with colonies. * Sent away for sequencing
- Started off discussing our topic of bacterial infections and brainstorming how we could target them; settled on RNA interference.
- Split the team into 2 groups, wet team (Matthew, Bartosz, Albert) and dry team (Mia, Beth, Darryl).
- Decided what each team had to do for that week
- Started with general research on our chosen infections (Cholera and Shigellosis)
- Darryl started and completed learning basic HTML and CSS via tutorials on the site Codecadamy, then began the initial stages of the wiki so as to get to grips with it.
- The dry team began to contact various people/organisations:
- Colalife
- Mercy Ships
- Water Aid
- Lifeline Express
- Had our first meeting about maths modelling and discussed how we could incorporate it into our project.
- Further developed wiki.
- Had a phone call with Brian Walshe of Mercy Ships
- Started organisation for Northern meet up:
- Began developing presentation content and layout
- Work began on poster
- Spoke to Rob Porter (prof. of Microbiology) via email.
- Planned a skype call with Simon Berry of Colalife.
- Contacted British red cross.
- Attended the Edinburgh Northern meet up & presented our project there, to which we were met with excellent feedback.
- Carried on working in the lab and progressing with our presentation.
- Further development of poster.
- Contacted British Pharmaceutical Society
- Contacted Mark Mcculloch (Army Doctor)
- Carried on with making our poster for the UK meet up.
- Set up meeting with Mark
- Finished poster
- Carried on with our wiki content
- Received our FBI sunglasses and pens for the Jamboree.
- Attended the UK meet up in London – presented our talk and our poster to multiple UK iGEM teams.
- Got our hoodies and t-shirts for Boston.
- Had our agent photoshoot.
Week 1- Familiarising ourselves with the labs
PCR’s:
Dry Team
- Week 1-
- Week 2-
- Week 3-
- Week 4-
- Week 5-
- Week 6-
- Week 7-
- Week 8-
Whilst we may now be back at school and so not working on our project full-time, we are still putting a large amount of time and effort into it. Wiki development continues both in its design and content, all of us continue to work on the presentation, other teams are still being collaborated with, people and organisations are still being contacted, videos are being planned and outreach to younger students is underway. Overall, things are still moving and the gears in our brains are still very much in motion towards our goal of having our project be the best that we can make it.