Team:Heidelberg/Notebook/Killing II/4thweek
From 2008.igem.org
(Difference between revisions)
(New page: <html> <link rel='stylesheet' href='http://igem-heidelberg.de/fileadmin/Wiki/Heidelberg2.css' type='text/css' /> <link rel="stylesheet" href="http://igem-heidelberg.de/fileadmin/Wiki/Menu....) |
|||
Line 1: | Line 1: | ||
<html> | <html> | ||
- | <link | + | |
- | + | ||
- | + | <style> | |
+ | h1.firstHeading { display: none; } | ||
+ | |||
+ | p {text-align: justify;} | ||
+ | |||
+ | a:link { color: #00b0e6; text-decoration: none} | ||
+ | a:visited { color:#00b0e6; text-decoration: none} | ||
+ | a:hover { color:#f29400; text-decoration: none} | ||
+ | a:active { color:#f29400; text-decoration: none} | ||
+ | |||
+ | #bodyContent { padding: 10px auto; width: 910px; margin: auto; clear: none; } | ||
+ | |||
+ | table#team_members { text-align: justify; border: 0; } | ||
+ | table#team_members h2, table#team_members h3 { clear: both; } | ||
+ | |||
+ | |||
+ | /*-----------------------------------------------------------------------------------------------*/ | ||
+ | div.MenuBar ul li ul.DropDownMenu { | ||
+ | display: none; /* Hides all drop-down menus. */ | ||
+ | |||
+ | } | ||
+ | /* | ||
+ | li:hover works in IE7 and FF2. | ||
+ | a:hover works in IE6 and FF2. | ||
+ | a:hover breaks li:hover in FF2. | ||
+ | */ | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li ul.SideMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a ul.SideMenu { | ||
+ | display: none; /* Hides all side menus. */ | ||
+ | } | ||
+ | /*------------------------------------------------------------------------------------- Menu Bar */ | ||
+ | div.MenuBar { | ||
+ | font: arial, helvetica, sans-serif; | ||
+ | height: 30px; | ||
+ | width: 910px; | ||
+ | /*width: 100%*/ | ||
+ | margin: 0; | ||
+ | border-top: 0; | ||
+ | border-right: 0; | ||
+ | border-left: 0; | ||
+ | padding: 0; | ||
+ | background: black; | ||
+ | |||
+ | } | ||
+ | div.MenuBar ul { | ||
+ | font: arial, helvetica, sans-serif; | ||
+ | text-align: center; | ||
+ | list-style-type: none; | ||
+ | margin: 0.5em auto; | ||
+ | border: 0; | ||
+ | padding: 0; | ||
+ | background: black; | ||
+ | } | ||
+ | div.MenuBar ul li { | ||
+ | font: arial, helvetica, sans-serif; | ||
+ | display: block; | ||
+ | padding: 0; | ||
+ | margin: 0; | ||
+ | font-size: 1.3em; | ||
+ | float: left; | ||
+ | background: black; | ||
+ | text-align: center; | ||
+ | width: 107px; | ||
+ | position: relative; /* Sets the positioning context for each drop-down menu. */ | ||
+ | } | ||
+ | |||
+ | div.MenuBar ul li a { | ||
+ | font: arial, helvetica, sans-serif; | ||
+ | display: block; | ||
+ | background: black; | ||
+ | height: 22px; /* Keep height + padding-top + padding-bottom sync with the menu bar height. */ | ||
+ | color: #ffffff; | ||
+ | padding-top: 4px; | ||
+ | padding-bottom: 4px; | ||
+ | padding-left: 1em; /* Sets the left space between top-level items. */ | ||
+ | padding-right: 1em; /* Sets the right space between top-level items. */ | ||
+ | text-decoration: none; | ||
+ | } | ||
+ | |||
+ | /*------------------------------------------------------------------------------ Drop-Down Menus */ | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu { | ||
+ | display: block; | ||
+ | width: 10em; /* Drop-down menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | height: 1em; | ||
+ | padding: 1px; /* Sets the drop-down menu "effective border" width. */ | ||
+ | position: absolute; | ||
+ | top: 23px; /* Places the drop-down menu under the menu bar. | ||
+ | Keep it sync with the menu bar height. */ | ||
+ | left: 0; /* Aligns the drop-down menu to its top-level item. */ | ||
+ | background-color: black; /* Selected item. */ | ||
+ | color: #FFFFFF; | ||
+ | |||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a { | ||
+ | width: 10em; /* Keep it sync with the drop-down menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | height: 1em; | ||
+ | padding-left: 0; | ||
+ | padding-right: 0; | ||
+ | background-color: black; /* Selected item. */ | ||
+ | color: #FFFFFF; | ||
+ | } | ||
+ | ul.DropDownMenu li a span { | ||
+ | display: block; | ||
+ | padding-left: 0.75em; /* Sets the left space of each drop-down menu item. */ | ||
+ | padding-right: 0.25em; /* Sets the right space of each drop-down menu item. */ | ||
+ | text-align: right; /* Aligns the >> symbol to the right. */ | ||
+ | } | ||
+ | ul.DropDownMenu li a span span { | ||
+ | float: left; /* Aligns the text (back) to the left. */ | ||
+ | font: 12px arial, helvetica, sans-serif; /* Required for IE55. */ | ||
+ | height: 20px; | ||
+ | color: #FFFFFF; | ||
+ | } | ||
+ | /*----------------------------------------------------------------------------------- Side Menus */ | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu { | ||
+ | display: block; | ||
+ | width: 11em; /* Side menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | padding: 1px; /* Sets the side menu "effective border" width. */ | ||
+ | position: absolute; | ||
+ | top: -1px; /* Aligns the side menu to its drop-down menu item. | ||
+ | Keep it sync with the side menu "effective border" width. */ | ||
+ | left: 13em; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu li a { | ||
+ | width: 11em; /* Keep it sync with the side menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | font: 12px arial, helvetica, sans-serif; /* Required for IE55. */ | ||
+ | left: 13em; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | } | ||
+ | div.MenuBar ul li ul.DropDownMenu li ul.SideMenu li a span { | ||
+ | padding-left: 1.5em; /* Sets the left space of each side menu item. */ | ||
+ | padding-right: 0.5em; /* Sets the right space of each side menu item. */ | ||
+ | text-align: left; | ||
+ | font: 12px arial, helvetica, sans-serif; /* Required for IE55. */ | ||
+ | left: 13em; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. | ||
+ | Use MenuTailor.css to customize. */ | ||
+ | } | ||
+ | /*----------------------------------------------------------------------------- Browser Specific */ | ||
+ | * html div.MenuBar ul li a { | ||
+ | float: left; /* Required for IE55 and IE6. | ||
+ | Breaks O9. | ||
+ | Hidden (* html) from non-IE browsers. */ | ||
+ | } | ||
+ | * html ul.DropDownMenu li a:hover { | ||
+ | cursor: hand; /* Required for IE55. | ||
+ | Hidden (* html) from non-IE browsers. */ | ||
+ | } | ||
+ | ul.DropDownMenu li a:hover { | ||
+ | cursor: pointer; /* Required for IE6 and IE7. | ||
+ | Hidding it (* html) from non-IE browsers breaks IE7! | ||
+ | } | ||
+ | * html div.MenuBar a:hover { | ||
+ | text-decoration: none; /* Required for IE55 and IE6. | ||
+ | Hidden (* html) from non-IE browsers. */ | ||
+ | } | ||
+ | * html div.MenuBar ul li table, | ||
+ | * html div.MenuBar ul li table td { | ||
+ | border: 0; /* Required for IE55 and IE6. | ||
+ | Hidden (* html) from non-IE browsers. */ | ||
+ | } | ||
+ | /*------------------------------------------------------------------------------- Default Colors */ | ||
+ | div.MenuBar { | ||
+ | background-color: Menu; | ||
+ | border-bottom: 1px solid ButtonShadow; | ||
+ | } | ||
+ | div.MenuBar a { | ||
+ | background-color: Menu; /* Top-level unselected items. */ | ||
+ | color: MenuText; | ||
+ | } | ||
+ | div.MenuBar ul li:hover a, | ||
+ | div.MenuBar ul li a:hover { | ||
+ | color: #ea7f16; | ||
+ | background-color: Highlight; /* Top-level selected item. */ | ||
+ | color: HighlightText; | ||
+ | } | ||
+ | /*...............................................................................................*/ | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu { | ||
+ | background-color: ButtonShadow; /* Sets the drop-down menu "effective border" color. */ | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a { | ||
+ | background-color: Menu; Drop-down menu unselected items. | ||
+ | Sets the drop-down menu "effective background" color. */ | ||
+ | color: MenuText; | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover { | ||
+ | background-color: Highlight; /* Drop-down menu selected item. */ | ||
+ | color: HighlightText; | ||
+ | } | ||
+ | /*...............................................................................................*/ | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu { | ||
+ | background-color: ButtonShadow; /* Sets the side menu "effective border" color. */ | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu li a { | ||
+ | background-color: Menu; /* Side menu unselected items. | ||
+ | Sets the side menu "effective background" color. */ | ||
+ | color: MenuText; | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu li a:hover, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu li a:hover { | ||
+ | background-color: Highlight; /* Side menu selected item. */ | ||
+ | color: HighlightText; | ||
+ | } | ||
+ | /*-----------------------------------------------------------------------------------------------*/ | ||
+ | /*Script-Free 3-Level Menu 1.2 Tailor | ||
+ | www.CesarDaniel.info | ||
+ | /*-------------------------------------------------------------------------------------- General */ | ||
+ | body { | ||
+ | background: white; | ||
+ | color: black; | ||
+ | margin: 0; | ||
+ | border: 0; | ||
+ | padding: 0; | ||
+ | } | ||
+ | |||
+ | |||
+ | div.MenuBar { | ||
+ | font: 13px arial, helvetica, sans-serif; | ||
+ | } | ||
+ | div.MenuBar ul { | ||
+ | font: 13px arial, helvetica, sans-serif; /* Required for IE55. */ | ||
+ | } | ||
+ | /*--------------------------------------------------------------------------------------- Colors */ | ||
+ | div.MenuBar { | ||
+ | background-color: black; /* Selected item. */ | ||
+ | color: #FFFFFF; | ||
+ | border-bottom: 1px solid ButtonShadow; | ||
+ | } | ||
+ | div.MenuBar a, | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a, | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu li a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu li a { | ||
+ | background-color: black; /* Selected item. */ | ||
+ | color: #FFFFFF; | ||
+ | } | ||
+ | div.MenuBar ul li:hover a, | ||
+ | div.MenuBar ul li a:hover, | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover a, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover, | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu li a:hover, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu li a:hover { | ||
+ | background-color: #00b0e6; /* Selected item. */ | ||
+ | color: #FFFFFF; | ||
+ | } | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu, | ||
+ | div.MenuBar ul li:hover ul.DropDownMenu li:hover ul.SideMenu, | ||
+ | div.MenuBar ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu { | ||
+ | background-color: ButtonShadow; /* Sets the drop-down and side menus "effective border" color. */ | ||
+ | } | ||
+ | /*--------------------------------------------------------------------------------------- Widths */ | ||
+ | /* | ||
+ | |||
+ | /* | ||
+ | Menu Bar 1 | ||
+ | Drop-Down Menu #2 | ||
+ | */ | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu#MB1-DDM4, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu#MB1-DDM4, | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu#MB1-DDM4 li a, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu#MB1-DDM4 li a { | ||
+ | width: 11em; /* Drop-down menu width. */ | ||
+ | } | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu#MB1-DDM5, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu#MB1-DDM5, | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu#MB1-DDM5 li a, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu#MB1-DDM5 li a { | ||
+ | width: 12em; /* Drop-down menu width. */ | ||
+ | } | ||
+ | |||
+ | /*...............................................................................................*/ | ||
+ | /* | ||
+ | Menu Bar 1 | ||
+ | Drop-Down Menu #2 | ||
+ | Side Menu #1 | ||
+ | */ | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM1, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM1 { | ||
+ | left: 15.5em !important; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. */ | ||
+ | } | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM1, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM1, | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM1 li a, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM1 li a { | ||
+ | width: 10em; /* Side menu width. */ | ||
+ | } | ||
+ | /*...............................................................................................*/ | ||
+ | /* | ||
+ | Menu Bar 1 | ||
+ | Drop-Down Menu #2 | ||
+ | Side Menu #2 | ||
+ | */ | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM2, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM2 { | ||
+ | left: 15.5em !important; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. */ | ||
+ | } | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM2, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM2, | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM2 li a, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM2 li a { | ||
+ | width: 10em; /* Side menu width. */ | ||
+ | } | ||
+ | /*...............................................................................................*/ | ||
+ | /* | ||
+ | Menu Bar 1 | ||
+ | Drop-Down Menu #2 | ||
+ | Side Menu #3 | ||
+ | */ | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM3, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM3 { | ||
+ | left: 15.5em !important; /* Places the side menu to the right of the drop-down menu. | ||
+ | Keep it sync with the drop-down menu width. */ | ||
+ | } | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM3, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM3, | ||
+ | div.MenuBar#navi ul li:hover ul.DropDownMenu li:hover ul.SideMenu#MB1-DDM2-SM3 li a, | ||
+ | div.MenuBar#navi ul li a:hover ul.DropDownMenu li a:hover ul.SideMenu#MB1-DDM2-SM3 li a { | ||
+ | width: 10em; /* Side menu width. */ | ||
+ | } | ||
+ | /*...............................................................................................*/ | ||
+ | |||
+ | </style> | ||
+ | |||
<body> | <body> |
Revision as of 15:47, 27 October 2008
4th week
Contents |
Monday 08/25/2008
Colicin Receiver
pSB1A3-Receiver-Colicin-Cloning
- PCR of colicin E1 and E9 operon with specific primers:
25.0 µl Phusion MasterMix 2.5 µl Primer fw(ColE1_prot_fw_BamHI/ColE9_plasmid_rv_SpeI) 2.5 µl Primer rv(ColE1_kil_prot_rv_SpeI/ColE9_plasmid_rv_SpeI) 17.0 µl H2O 3.0 µl pColE1/pColE9-J ------- 50.0 µl
program: 98 °C 30 sec 98 °C 10 sec | 57 °C 20 sec | 25 cycles 72 °C 45 sec | 72 °C 8 min 4 °C constant
Activity Test
- Inoculation of 5 ml liquid ONC with...
- pColE1 in JC411 -> 0.1% Glucose Medium
- pColE9 in MG1655
- TOP 10
- MG 1655
Sender part
pBAD-Sender Cloning
- Controldigestion of BBa_F1610 with DraI: 1.5 - 2 h -> 37 °C
10 µl DNA (320-330 ng/µl) 3 µl Tango Buffer 10x (Fermentas) 2 µl DraI (Fermentas) 15 µl H2O ----- 30 µl
- Gel of digestion: Results are not perfect but expected bands can be estimated.
Activity Test
- Inoculation of pBAD-BBa_F1610 in 8 ml M9 Kana + 0.1% Arabinose. (8 colonies)
General
- Inoculation of liquid ONC of BBa_J23107, BBa_J23102, BBa_R0011, BBa_R0040 in 5 ml LB Amp. (For Minipreps and Glycerolstocks)
Tuesday 08/26/2008
Colicin Receiver
pSB1A3-Receiver-Colicin-Cloning
- PCR Purification of T9002 without GFP (08/22/08) and colicin E1/E9 operon: Qiagen PCR Purification Kit.
- Digestion of purified products with BamHI: 2h -> 37 °C
20.0 µl DNA (PCR product, purified) 13.0 µl H2O 4.0 µl NEBuffer 3 (NEB) 3.0 µl BamHI (NEB) 4.0 µl BSA 10x (NEB) ------- 44.0 µl
- Gelextraction of digestion: Cutted the bands and freezed for purification tomorrow.
Activity Test
- 2nd step of colicin test based on ONC from Tuesdaysday:
- pColE1 (JC411):
- inoculation of 12 ml LB ONC + 0.1% Glucose -> unstressed
- inoculation of 12 ml LB ONC + 0.1% Glucose + 1µg/ml Mytomycin C
- EDIT 09/02/08: Too high Mytomycin C concentrations
- 100 µl ONC + 300 µl LB + 200 µl 10% glucose plated on LB-Agar
- pColE9 (MG1655):
- inoculation of 12 ml LB ONC-> unstressed
- inoculation of 12 ml LB ONC + 1µg/ml Mytomycin C
- EDIT 09/02/08: Too high Mytomycin C concentrations
- 100 µl ONC + 500 µl LB plated on LB-Agar
- MG1655 + TOP10:
- inoculation of 12 ml LB ONC-> unstressed
- 100 µl ONC + 500 µl LB plated on LB-Agar
- pColE1 (JC411):
Sender part
pBAD-Sender Cloning
- Control of Cloning -> see activity test
Activity Test
- To check if we have one positive clone we perform the sender activity test again (see Fridayday 08/08/22 for plate scheme and details). After the first measurements an increase in GFP expression by BBa_T9002 was observed for colonies 9, 10, 11. Because of that we inoculated liquid ONC with LB-Kana for miniprepes and glycerolstocks
Wednesday 08/27/2008
Colicin Receiver
pSB1A3-Receiver-Colicin-Cloning
- Gelextraction of BamHI digestion: Qiagen Gelextraction kit
- Ligation of receiver with colicins ratio 1:1: 1h -> RT, 10 min -> 65 °C
10 µl DNA I 10 µl DNA II 4 µl 10x T4 DNA Ligase Buffer 2 µl T4 Ligase 14 µl H2O ----- 40 µl
- Gelextaction of Ligation: ligated construct (~3000 bp) was extracted and purified. Qiagen Gel Extraction Kit
- Digestion of ligated product with XbaI and SpeI: 1.5 h -> 37 °C and 65 °C -> 20 min
20 µl DNA 6 µl H2O 4 µl NEBuffer 2 3 µl SpeI 3 µl XbaI 4 µl BSA 10x ----- 40 µl
- Gel of E1 and E9 digestion: no fragments were visible
- Gel of BBa_T9002 digestion: Expected bands cannot be differentiated because fragment sizes are too similar ~1950 bp and ~2150 bp.
- Send probes of pColE9 (colE9_prot_fw_XbaI), pColE1(colE1_prot_fw_XbaI/colE1_prot_rv_SpeI/colE1_imm_fw_SpeI) and BBa_T9002 (pSB_ins_fw/pSB_ins_rv) to GATC for sequencing.
Activity Test
- Creation of Supernatant of stressed and unstressed colicin cultures.
- Plate the 4 different supernatants and the 4 different cultures on the prepared ColE1, ColE9, MG1655 and TOP10 plates.
Sender part
pBAD-Sender Cloning
- Miniprep and Glycerolstocks of pBAD18-BBa_F1610 colony 9, 10, 11
- Send miniprep of pBAD18-BBa_F161 cloning colony 9 (VIC121/VIC122 align on pBAD18)to GATC for sequencing.
Activity Test
- 24h measurement of Colicin test
Thursday 08/28/2008
Colicin Receiver
pSB1A3-Receiver-Colicin-Cloning
- Sequencing results: ColE1_prot correct. Others were not sequenced.
- New attempt of second digestion: no bands are visible.
- New cloning strategy:
- Cloning of AHL-receiver without GFP into pSB1A3 (Amplification from BBa_T9002 with T9002_XbaI_fw and T9002_SpeI_BamHI_RBS_rv primers)
- Cloning of colicin operon behind LuxPr promoter.
- In addtion:
- PCR of BBa_T9002 with new primers standardprotocol Phusion MasterMix (Finnzymes, NEB)
25.0 µl Phusion MasterMix 2.5 µl Primer fw 2.5 µl Primer rv 2.0 µl DNA Template 18.0 µl H2O ------- 50.0 µl
- PCR Purification and Analytical gel -> right fragment size
- Digestion of PCR product and vector with XbaI and SpeI
- Gelextraction: expected bands (~1061 bp LuxpR-receiver and ~2157 bp pSB1A3-backbone) could be separated and were eluted in 34 µl H2O.
- Sapping of vector to avoid self-ligation: 30 min 37 °C -> 15 min 65 °C
34.0 µl pSB1A3 DNA (XbaI/SpeI cutted) 4.0 µl SAP Buffer (Fermentas) 1.0 µl SAP enzymes (Fermentas)
- Ligation: 16 °C -> Overnight
6.0 µl Receiver DNA 2.0 µl Vector DNA 2.0 µl Buffer T4 DNA Ligase 8.0 µl H2O ------- 20.0 µl
Activity Test
- Results: No effects were obtained
- Preparation of probes for inocculation over night to measure colicin E1 activity:
- 1 x TOP 10
- 1 x TOP 10 + 2 ml ColE1 supernatant unstressed
- 1 x TOP 10 + 2 ml ColE1 supernatant stressed
- 1 x TOP 10 + 2 ml ColE9 supernatant unstressed
- 1 x TOP 10 + 2 ml ColE9 supernatant stressed
- 1 x TOP 10 + 2 ml MG1655
Sender part
pBAD-Sender Cloning
- Sequencing results: pBAD18-BBa_F1610 is the right construct.
Friday 08/29/2008
Colicin Receiver
pSB1A3-Receiver-Colicin-Cloning
- Transformation of ON-Ligation
Activity Test
Results:
- OD Measurement of colicin treated ONCs. An effect in cultures of Mytomycin C stressed cells were observed. But this could also be the toxic effect of Mytomycin C. In addition we obtained that we used a too high concentration of Mytomycin C (1 µg/ml instead of 0.1 µg/ml).
- Measured cell growth curve over night: Logistic growth could be observed but in general growth curve does not look that good.
Sender part
General
- Seminar on Synthetic Biology: Chris
- Breakfast
- Project Presentation for Frankfurter Allgemeine Zeitung
- Campus TV
- Team Meeting