(Created page with "{{BIT-China}} <html> <head> <style> #mw-content-text{ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; font-size: 14px; line-height: 1.42857143; } #mw-co...") |
|||
Line 28: | Line 28: | ||
position: relative; | position: relative; | ||
} | } | ||
+ | |||
+ | .nav_left_ul{ | ||
+ | list-style: none; | ||
+ | padding-left: 50px; | ||
+ | } | ||
+ | |||
+ | .nav_left_ul>li{ | ||
+ | position: relative; | ||
+ | margin-top: -15px; | ||
+ | } | ||
+ | |||
+ | .nav_left_ul>li:nth-child(1){ | ||
+ | margin-top: -14px; | ||
+ | } | ||
+ | |||
+ | .nav_left_txt{ | ||
+ | word-break: keep-all; | ||
+ | white-space: nowrap; | ||
+ | height: 70px; | ||
+ | line-height: 70px; | ||
+ | top: 8px; | ||
+ | left: 0; | ||
+ | width:100%;position:absolute; | ||
+ | color: #FFFFFF; | ||
+ | font-weight: bold;text-align: center;font-size: 14px; | ||
+ | } | ||
+ | |||
+ | .nav_left_txt_plus{ | ||
+ | height: 60px; | ||
+ | line-height: 60px; | ||
+ | top: 5px; | ||
+ | right: 0; | ||
+ | width:60%;position:absolute; | ||
+ | text-align: center; | ||
+ | color: #FFFFFF; | ||
+ | font-weight: bold;font-size: 8px; | ||
+ | white-space: nowrap; | ||
+ | } | ||
+ | |||
+ | .content-title{ | ||
+ | width: 100%; | ||
+ | text-align: center; | ||
+ | font-size: 2.5em; | ||
+ | } | ||
+ | |||
+ | .block-title{ | ||
+ | margin-top: 20px; | ||
+ | padding-bottom: 10px; | ||
+ | width: 100%; | ||
+ | text-align: center; | ||
+ | font-size: 2em; | ||
+ | } | ||
+ | |||
+ | .block-item-title{ | ||
+ | margin: 10px; | ||
+ | width: 100%; | ||
+ | font-size: 1.5em; | ||
+ | } | ||
+ | |||
+ | .problem-title{ | ||
+ | font-size: 1.5em; | ||
+ | } | ||
+ | |||
+ | .problem-txt div{ | ||
+ | margin-top: 1em; | ||
+ | } | ||
</style> | </style> | ||
+ | <script> | ||
+ | $(document).ready(function() { | ||
+ | //弹出导航监听 | ||
+ | window.onscroll = function () { | ||
+ | if($(window).scrollTop()>100){ | ||
+ | $("#nav-hide").removeClass("roll-nav-hide"); | ||
+ | } | ||
+ | else{ | ||
+ | $("#nav-hide").addClass("roll-nav-hide"); | ||
+ | } | ||
+ | |||
+ | //固定侧边导航 | ||
+ | if($(window).scrollTop()>95){ | ||
+ | $("#nav_left_wrapper").css({ | ||
+ | "margin-left":"0", | ||
+ | "top":"50px", | ||
+ | "position":"fixed" | ||
+ | }); | ||
+ | |||
+ | $("#site-change-btn").css({ | ||
+ | "position":"fixed" | ||
+ | }) | ||
+ | } | ||
+ | else{ | ||
+ | $("#nav_left_wrapper").css({ | ||
+ | "margin-left":"-100%", | ||
+ | "top":"auto", | ||
+ | "position":"relative" | ||
+ | }); | ||
+ | |||
+ | $("#site-change-btn").css({ | ||
+ | "position":"absolute" | ||
+ | }) | ||
+ | |||
+ | } | ||
+ | |||
+ | //页间跳转 | ||
+ | if($(window).scrollTop()>300){ | ||
+ | $("#site-change-btn").css("display","block"); | ||
+ | } | ||
+ | else{ | ||
+ | $("#site-change-btn").css("display","none"); | ||
+ | } | ||
+ | |||
+ | //底部隐藏左侧导航 | ||
+ | if($(".footer").offset().top - $(window).scrollTop() < 300){ | ||
+ | $("#nav_left_wrapper").css("display","none"); | ||
+ | $("#site-change-btn").css("display","none"); | ||
+ | |||
+ | } | ||
+ | else{ | ||
+ | $("#nav_left_wrapper").css("display","block"); | ||
+ | $("#site-change-btn").css("display","block"); | ||
+ | } | ||
+ | }; | ||
+ | |||
+ | //平滑跳转 | ||
+ | var navs=$(".nav_point"); | ||
+ | for(i=0;i<navs.length;i++){ | ||
+ | navs.eq(i).click(function (e) { | ||
+ | e.preventDefault(); | ||
+ | var href=$(this).attr("href"); | ||
+ | $.scrollTop(href+"",-100,400); | ||
+ | }); | ||
+ | } | ||
+ | }); | ||
+ | </script> | ||
</head> | </head> | ||
<body> | <body> | ||
+ | |||
+ | <div class="col-sm-12 clearfix" style="padding: 0;padding-top:30px; | ||
+ | background: url(https://static.igem.org/mediawiki/2016/4/45/T--BIT-China--content_bg.jpg)"> | ||
+ | <div class="content-right" style="float: left;width:100%;padding: 10px;"> | ||
+ | <div style="margin-left:220px;background: white;margin-top: 0.5em;margin-bottom:0.5em;padding: 1px;border-radius: 10px"> | ||
+ | <div class="overview-content" style="border:1px dashed #F08B1F; | ||
+ | border-radius: 10px;margin: 0.5em;padding: 10px;"> | ||
+ | |||
+ | <div class="content-title"> | ||
+ | Equipments && Materials | ||
+ | <!--<img src="https://static.igem.org/mediawiki/2016/3/30/T--BIT-China--Project--Design--title.png"--> | ||
+ | <!--alt="title" class="col-sm-8 col-sm-offset-2">--> | ||
+ | <!--<br>--> | ||
+ | </div> | ||
+ | |||
+ | <!--问题描述--> | ||
+ | <div class="problem-txt"> | ||
+ | <div class="problem-title">What is the point?</div> | ||
+ | <div> | ||
+ | Just show what thing we use in the experiments. | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--Equipments--> | ||
+ | <div id="equipments" class="block-title">Equipments</div> | ||
+ | <div class="block-content"> | ||
+ | <div class="block-content-item"> | ||
+ | <div class="block-content-item-block" style="padding: 0 100px;"> | ||
+ | |||
+ | <table class="parts table table-striped table-bordered"> | ||
+ | <thead> | ||
+ | <tr> | ||
+ | <th>Name</th> | ||
+ | <th>Type</th> | ||
+ | <th>Company</th> | ||
+ | </tr> | ||
+ | </thead> | ||
+ | <tbody> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Transferpettor | ||
+ | </td> | ||
+ | <td> | ||
+ | 1000µl 100µl 10µl 2.5µl | ||
+ | </td> | ||
+ | <td> | ||
+ | Eppendorf | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | ELIASA | ||
+ | </td> | ||
+ | <td> | ||
+ | Elx808 | ||
+ | </td> | ||
+ | <td> | ||
+ | America Bioteck company | ||
+ | </td> | ||
+ | </tr> | ||
+ | |||
+ | <tr> | ||
+ | <td> | ||
+ | Electrophresis Apparatus | ||
+ | </td> | ||
+ | <td> | ||
+ | DYY-6C | ||
+ | </td> | ||
+ | <td> | ||
+ | Beijing LIUYI bio-technology company | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | OD Machine | ||
+ | </td> | ||
+ | <td> | ||
+ | UV-2100 | ||
+ | </td> | ||
+ | <td> | ||
+ | UNICO | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Incubator Shaker | ||
+ | </td> | ||
+ | <td> | ||
+ | IS-RDS3 | ||
+ | </td> | ||
+ | <td> | ||
+ | Beijing KECHUANGBAIFANG Technical Co., Ltd | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Electro-heating Standing-temperature Water Bath | ||
+ | </td> | ||
+ | <td> | ||
+ | DK-8D | ||
+ | </td> | ||
+ | <td> | ||
+ | Shanghai YIHENG Technical Co., Ltd | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Gel-imaging System | ||
+ | </td> | ||
+ | <td> | ||
+ | GeneGenius | ||
+ | </td> | ||
+ | <td> | ||
+ | SYNGENE | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Blue Rubber Cutting Machine | ||
+ | </td> | ||
+ | <td> | ||
+ | BD-BGCI | ||
+ | </td> | ||
+ | <td> | ||
+ | Biofriend | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Electro-heating Standing-temperature Cultivator | ||
+ | </td> | ||
+ | <td> | ||
+ | SKP-02.420 | ||
+ | </td> | ||
+ | <td> | ||
+ | America HENGFENG company | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | High Speed Freezing Centrifuge | ||
+ | </td> | ||
+ | <td> | ||
+ | D-37520 | ||
+ | </td> | ||
+ | <td> | ||
+ | Germany Thermo company | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Low temperature enzyme even instrument | ||
+ | </td> | ||
+ | <td> | ||
+ | L1 | ||
+ | </td> | ||
+ | <td> | ||
+ | HEMA | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Electronic Balance | ||
+ | </td> | ||
+ | <td> | ||
+ | FA2104SW | ||
+ | </td> | ||
+ | <td> | ||
+ | MINQIAO | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | High-Pressure Steam Sterilization Pot | ||
+ | </td> | ||
+ | <td> | ||
+ | MLS-3750 | ||
+ | </td> | ||
+ | <td> | ||
+ | SANYO | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Laminar Flow Cabinet | ||
+ | </td> | ||
+ | <td> | ||
+ | SW-CJ-2FD | ||
+ | </td> | ||
+ | <td> | ||
+ | Taisite | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Microwave(微波炉) | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | <td> | ||
+ | Galanz | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Electro-heating Standing-temperature Drum Wind Drying Machine | ||
+ | </td> | ||
+ | <td> | ||
+ | DHG-9030A | ||
+ | </td> | ||
+ | <td> | ||
+ | Shanghai YIHENG Technical Co., Ltd | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 96 Well Thermal Cycler(PCR仪) | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | <td> | ||
+ | Gene Company Limited | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | High Speed Micro-Centrifuge | ||
+ | </td> | ||
+ | <td> | ||
+ | D3024 | ||
+ | </td> | ||
+ | <td> | ||
+ | SCILOGEX | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Refrigerator | ||
+ | </td> | ||
+ | <td> | ||
+ | BCD-610W | ||
+ | </td> | ||
+ | <td> | ||
+ | SIEMENS | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Heto Ultra Freeze(-80℃ 冰箱) | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Ultrapure Water System(超纯水系统) | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Ice Machine | ||
+ | </td> | ||
+ | <td> | ||
+ | SPR-120 | ||
+ | </td> | ||
+ | <td> | ||
+ | SIMAG | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Nano Drop | ||
+ | </td> | ||
+ | <td> | ||
+ | 2000c | ||
+ | </td> | ||
+ | <td> | ||
+ | America Thermo Scientific company | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Microscope(显微镜) | ||
+ | </td> | ||
+ | <td> | ||
+ | </td> | ||
+ | <td> | ||
+ | Ruich Allway | ||
+ | </td> | ||
+ | </tr> | ||
+ | </tbody> | ||
+ | </table> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--Materials--> | ||
+ | <div id="materials" class="block-title">Reagent & Material</div> | ||
+ | <div class="block-content"> | ||
+ | <div class="block-content-item"> | ||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 1. antibiotic | ||
+ | </div> | ||
+ | <div> | ||
+ | Ampicillin: dissolved in distilled water and the final concentration is 100mg/ml | ||
+ | </div> | ||
+ | <div> | ||
+ | Chloromycetin : dissolved in absolute ethyl alcohol and final concentration is 25 mg/ml | ||
+ | </div> | ||
+ | <div> | ||
+ | Kanamycin: dissolved by distilled water and final concentration is 50 mg/ml | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 2. Maker | ||
+ | </div> | ||
+ | <div> | ||
+ | Trans 2K DNA Maker | ||
+ | </div> | ||
+ | <div> | ||
+ | Trans 2K plus DNA Maker | ||
+ | </div> | ||
+ | <div> | ||
+ | Trans 1KB DNA Maker | ||
+ | </div> | ||
+ | <div> | ||
+ | Trans 2K plusⅡDNA Maker | ||
+ | </div> | ||
+ | <div> | ||
+ | All from Trans Gen Biotech | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 3. Buffer | ||
+ | </div> | ||
+ | <div> | ||
+ | <table class="parts table table-striped table-bordered"> | ||
+ | <thead> | ||
+ | <tr> | ||
+ | <th>Buffer</th> | ||
+ | <th>From</th> | ||
+ | </tr> | ||
+ | </thead> | ||
+ | <tbody> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 6XDNA Loading buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Trans Gen Biotech | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 2×Primer star CG buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | TaKaRa | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 2×Taq PCR Master Mix | ||
+ | </td> | ||
+ | <td> | ||
+ | Biomed | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 2×ES Taq Master Mix | ||
+ | </td> | ||
+ | <td> | ||
+ | CWBio | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 10×T4 DNA Ligase Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | TaKaRa | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 10×Fast Digest Green Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 10×Fast Digest Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 10×Pfu Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Biomed | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 5×Trans Start FastPfu Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Trans Gen Biotech | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | 5×FastPfu Fly Buffer | ||
+ | </td> | ||
+ | <td> | ||
+ | Trans Gen Biotech | ||
+ | </td> | ||
+ | </tr> | ||
+ | </tbody> | ||
+ | </table> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 4. | ||
+ | </div> | ||
+ | <div> | ||
+ | 10% glycerol: 12.6g glycerol dissolved in 90 ml of water. | ||
+ | </div> | ||
+ | <div> | ||
+ | 50%glycerol: use distilled water to dilute 50ml glycerol twice as much | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 5. dd H2O | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 6. Enzyme | ||
+ | </div> | ||
+ | <div> | ||
+ | |||
+ | <table class="parts table table-striped table-bordered"> | ||
+ | <thead> | ||
+ | <tr> | ||
+ | <th>Enzyme</th> | ||
+ | <th>From</th> | ||
+ | </tr> | ||
+ | </thead> | ||
+ | <tbody> | ||
+ | <tr> | ||
+ | <td> | ||
+ | T4 DNA Ligase | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Primer star HS DNA polymerase | ||
+ | </td> | ||
+ | <td> | ||
+ | TaKaRa | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Pfu DNA polymerase | ||
+ | </td> | ||
+ | <td> | ||
+ | Biomed | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Trans Start FastPfu DNA polymerase | ||
+ | </td> | ||
+ | <td> | ||
+ | Trans Gen Biotech | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Trans Start FastPfu Fly DNA polymerase | ||
+ | </td> | ||
+ | <td> | ||
+ | Trans Gen Biotech | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Fast Digest DpnⅠ | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Fast digest EcoRⅠ | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Fast digest PstⅠ | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Fast digest XbaⅠ | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td> | ||
+ | Fast digest SpeⅠ | ||
+ | </td> | ||
+ | <td> | ||
+ | Thermo Scientific | ||
+ | </td> | ||
+ | </tr> | ||
+ | </tbody> | ||
+ | </table> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 7. absolute ethyl alcohol | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 8. Kit | ||
+ | </div> | ||
+ | <div> | ||
+ | TIANgel Midi Purification Kit | ||
+ | </div> | ||
+ | <div> | ||
+ | TIANprep Mini plasmid Kit | ||
+ | </div> | ||
+ | <div> | ||
+ | TIANamp Bacteria DNA Kit | ||
+ | </div> | ||
+ | <div> | ||
+ | All from TIANGEN BIOTECH (BEIJING) CO.LTD | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 9. Agarose Gel Electrophoresis: | ||
+ | </div> | ||
+ | <div> | ||
+ | Golden View from Biomed | ||
+ | </div> | ||
+ | <div> | ||
+ | BIOWEST REGULAR AGAROSE G-10 | ||
+ | </div> | ||
+ | <div> | ||
+ | 1XTAE:Diluted with 50Xtae | ||
+ | </div> | ||
+ | <div> | ||
+ | 50XTAE: Tris 242g,Na2EDTA·2H2O 37.2g , 57.1ml glacial acetic acid,1L water | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 10. Culture medium | ||
+ | </div> | ||
+ | <div> | ||
+ | LB: 10g Tryptone peptone,5g Yeast extract, 5gNaCl; dissolve in 1.0L water. | ||
+ | </div> | ||
+ | <div> | ||
+ | SOB:2.0g Tryptone peptone,0.5g Yeast extract,0.2ml 5M NaCl,0.25ml | ||
+ | 1M KCL; dissolve in 90 ml water. Adjust PH to 7.0.Bring volume to | ||
+ | 100 ml. Autoclave. Add 1.0 ml sterile 1 M MgCl2 and 1.0 ml sterile 1 M MgSO4. | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 11. | ||
+ | </div> | ||
+ | <div> | ||
+ | 1 M Arabinose: weight 150g then use distilled water to dilute it | ||
+ | </div> | ||
+ | <div> | ||
+ | 10% Arabinose: use distilled water to dilute 1M Arabinose | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 12. IPTG: confect the final concentration of 1M IPTG with distilled water | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 13. High pure dNTPs from Trans Gen Biotech | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 13. High pure dNTPs from Trans Gen Biotech | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 14. Bacteria | ||
+ | </div> | ||
+ | <div> | ||
+ | TOP10 from Biomed | ||
+ | </div> | ||
+ | <div> | ||
+ | DH5α from Biomed | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="block-content-item-block"> | ||
+ | <div class="block-item-title"> | ||
+ | 15. Golden View from Biomed | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <div class="nav-left" id="nav_left_wrapper" style="float: left;margin-left:-100%;width: 200px;"> | ||
+ | <div class="nav-left-title" style="position:relative;width: 200px;padding: 0;"> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/4/43/T--BIT-China--img--nav_left_top.png" alt="nav_left_top" style="width: 100%;"> | ||
+ | <span style="color: #FFFFFF;font-size: 20px;font-weight: bold;position: absolute; | ||
+ | right: 40px;bottom: 20px;">E && M</span> | ||
+ | </div> | ||
+ | <ul class="nav_left_ul" style="padding-left: 50px;"> | ||
+ | <li> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/e/e2/T--BIT-China--img--nav_left_c1.png" | ||
+ | alt="c1" style="width: 100%;height: 70px;"> | ||
+ | <a href="#equipments" class="nav_point"> | ||
+ | <span class="nav_left_txt">Equipments</span></a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/9/9d/T--BIT-China--img--nav_left_c3.png" | ||
+ | alt="c1" style="width: 100%;height: 70px;"> | ||
+ | <a href="#materials" class="nav_point"> | ||
+ | <span class="nav_left_txt" >Materials</span></a> | ||
+ | </li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <!--相邻页面切换按钮--> | ||
+ | <div id="site-change-btn" | ||
+ | style="position: absolute;left: 20px;bottom: 20px;z-index:9;display: none;"> | ||
+ | <a href="https://2016.igem.org/Team:BIT-China/Protocol"> | ||
+ | <span style="color: #654D6F;font-weight: bold;font-size: 12px"> | ||
+ | <i class="fa fa-angle-double-left" aria-hidden="true"></i>Protocol</span> | ||
+ | </a> | ||
+ | <img src="https://static.igem.org/mediawiki/2016/2/2c/T--BIT-China--img--page_change.png" | ||
+ | alt="page_change" style="width: 40px;height: auto;"> | ||
+ | <a href="https://2016.igem.org/Team:BIT-China/Safety"> | ||
+ | <span style="color: #654D6F;font-weight: bold;font-size: 12px"> | ||
+ | Safety<i class="fa fa-angle-double-right" aria-hidden="true"></i></span> | ||
+ | </a> | ||
+ | </div> | ||
</body> | </body> | ||
</html> | </html> | ||
{{BIT-China/footer}} | {{BIT-China/footer}} |
Revision as of 03:41, 9 October 2016
Equipments && Materials
What is the point?
Just show what thing we use in the experiments.
Equipments
Name | Type | Company |
---|---|---|
Transferpettor | 1000µl 100µl 10µl 2.5µl | Eppendorf |
ELIASA | Elx808 | America Bioteck company |
Electrophresis Apparatus | DYY-6C | Beijing LIUYI bio-technology company |
OD Machine | UV-2100 | UNICO |
Incubator Shaker | IS-RDS3 | Beijing KECHUANGBAIFANG Technical Co., Ltd |
Electro-heating Standing-temperature Water Bath | DK-8D | Shanghai YIHENG Technical Co., Ltd |
Gel-imaging System | GeneGenius | SYNGENE |
Blue Rubber Cutting Machine | BD-BGCI | Biofriend |
Electro-heating Standing-temperature Cultivator | SKP-02.420 | America HENGFENG company |
High Speed Freezing Centrifuge | D-37520 | Germany Thermo company |
Low temperature enzyme even instrument | L1 | HEMA |
Electronic Balance | FA2104SW | MINQIAO |
High-Pressure Steam Sterilization Pot | MLS-3750 | SANYO |
Laminar Flow Cabinet | SW-CJ-2FD | Taisite |
Microwave(微波炉) | Galanz | |
Electro-heating Standing-temperature Drum Wind Drying Machine | DHG-9030A | Shanghai YIHENG Technical Co., Ltd |
96 Well Thermal Cycler(PCR仪) | Gene Company Limited | |
High Speed Micro-Centrifuge | D3024 | SCILOGEX |
Refrigerator | BCD-610W | SIEMENS |
Heto Ultra Freeze(-80℃ 冰箱) | Thermo | |
Ultrapure Water System(超纯水系统) | ||
Ice Machine | SPR-120 | SIMAG |
Nano Drop | 2000c | America Thermo Scientific company |
Microscope(显微镜) | Ruich Allway |
Reagent & Material
1. antibiotic
Ampicillin: dissolved in distilled water and the final concentration is 100mg/ml
Chloromycetin : dissolved in absolute ethyl alcohol and final concentration is 25 mg/ml
Kanamycin: dissolved by distilled water and final concentration is 50 mg/ml
2. Maker
Trans 2K DNA Maker
Trans 2K plus DNA Maker
Trans 1KB DNA Maker
Trans 2K plusⅡDNA Maker
All from Trans Gen Biotech
3. Buffer
Buffer | From |
---|---|
6XDNA Loading buffer | Trans Gen Biotech |
2×Primer star CG buffer | TaKaRa |
2×Taq PCR Master Mix | Biomed |
2×ES Taq Master Mix | CWBio |
10×T4 DNA Ligase Buffer | TaKaRa |
10×Fast Digest Green Buffer | Scientific |
10×Fast Digest Buffer | Scientific |
10×Pfu Buffer | Biomed |
5×Trans Start FastPfu Buffer | Trans Gen Biotech |
5×FastPfu Fly Buffer | Trans Gen Biotech |
4.
10% glycerol: 12.6g glycerol dissolved in 90 ml of water.
50%glycerol: use distilled water to dilute 50ml glycerol twice as much
5. dd H2O
6. Enzyme
Enzyme | From |
---|---|
T4 DNA Ligase | Thermo Scientific |
Primer star HS DNA polymerase | TaKaRa |
Pfu DNA polymerase | Biomed |
Trans Start FastPfu DNA polymerase | Trans Gen Biotech |
Trans Start FastPfu Fly DNA polymerase | Trans Gen Biotech |
Fast Digest DpnⅠ | Thermo Scientific |
Fast digest EcoRⅠ | Thermo Scientific |
Fast digest PstⅠ | Thermo Scientific |
Fast digest XbaⅠ | Thermo Scientific |
Fast digest SpeⅠ | Thermo Scientific |
7. absolute ethyl alcohol
8. Kit
TIANgel Midi Purification Kit
TIANprep Mini plasmid Kit
TIANamp Bacteria DNA Kit
All from TIANGEN BIOTECH (BEIJING) CO.LTD
9. Agarose Gel Electrophoresis:
Golden View from Biomed
BIOWEST REGULAR AGAROSE G-10
1XTAE:Diluted with 50Xtae
50XTAE: Tris 242g,Na2EDTA·2H2O 37.2g , 57.1ml glacial acetic acid,1L water
10. Culture medium
LB: 10g Tryptone peptone,5g Yeast extract, 5gNaCl; dissolve in 1.0L water.
SOB:2.0g Tryptone peptone,0.5g Yeast extract,0.2ml 5M NaCl,0.25ml
1M KCL; dissolve in 90 ml water. Adjust PH to 7.0.Bring volume to
100 ml. Autoclave. Add 1.0 ml sterile 1 M MgCl2 and 1.0 ml sterile 1 M MgSO4.
11.
1 M Arabinose: weight 150g then use distilled water to dilute it
10% Arabinose: use distilled water to dilute 1M Arabinose
12. IPTG: confect the final concentration of 1M IPTG with distilled water
13. High pure dNTPs from Trans Gen Biotech
13. High pure dNTPs from Trans Gen Biotech
14. Bacteria
TOP10 from Biomed
DH5α from Biomed
15. Golden View from Biomed