| Line 18: | Line 18: | ||
<script type="text/javascript" src="https://2019.igem.org/Team:TJUSLS_China/assets/js/srcjs?action=raw&ctype=text/javascript"></script> | <script type="text/javascript" src="https://2019.igem.org/Team:TJUSLS_China/assets/js/srcjs?action=raw&ctype=text/javascript"></script> | ||
<script type="text/javascript" src="https://2019.igem.org/Team:TJUSLS_China/assets/js/jqueryminjs?action=raw&ctype=text/javascript"></script> | <script type="text/javascript" src="https://2019.igem.org/Team:TJUSLS_China/assets/js/jqueryminjs?action=raw&ctype=text/javascript"></script> | ||
| − | + | <script type="text/javascript" src="https://2019.igem.org/Team:TJUSLS_China/js?action=raw&ctype=text/javascript"></script> | |
<title>Parts</title> | <title>Parts</title> | ||
<style> | <style> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
html, body { | html, body { | ||
font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif!important; | font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif!important; | ||
| Line 309: | Line 289: | ||
transform: scale(1.1); | transform: scale(1.1); | ||
} | } | ||
| + | |||
table.table { | table.table { | ||
font-family: verdana,arial,sans-serif; | font-family: verdana,arial,sans-serif; | ||
| Line 358: | Line 339: | ||
margin-bottom: 12px; | margin-bottom: 12px; | ||
} | } | ||
| − | |||
| − | + | table.table2 { | |
| − | + | font-family: verdana,arial,sans-serif; | |
| − | + | font-size:11px; | |
| − | + | color:#333333; | |
| − | + | border-width: 2px; | |
| − | + | border-color: black; | |
| − | + | border-collapse: collapse; | |
| − | + | width: 100%; | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
} | } | ||
| − | </ | + | table.table2 th { |
| + | border-left: 2px solid black; | ||
| + | border-top: 2px solid black; | ||
| + | padding: 8px; | ||
| + | background: #eea236; | ||
| + | border-top:none; | ||
| + | |||
| + | } | ||
| + | table.table2 td:first-child,table.table th:first-child{ | ||
| + | border-left: none; | ||
| + | |||
| + | } | ||
| + | |||
| + | table.table2 td { | ||
| + | padding: 8px; | ||
| + | border-left: 2px solid black; | ||
| + | border-top: 2px solid black; | ||
| + | } | ||
| + | table.table2 th:first-child{ | ||
| + | border-radius: 16px 0 0 0; | ||
| + | } | ||
| + | table.table2 th:last-child{ | ||
| + | border-radius: 0 16px 0 0; | ||
| + | } | ||
| + | table.table2 tr:last-child td:first-child{ | ||
| + | border-radius: 0 0 0 16px; | ||
| + | } | ||
| + | table.table2 tr:last-child td:last-child { | ||
| + | border-radius: 0 0 16px 0; | ||
| + | } | ||
| + | #myInput2 { | ||
| + | background-image: url('https://2019.igem.org/wiki/images/f/f5/T--TJUSLS_China--parts-search.png'); /* 搜索按钮 */ | ||
| + | background-position: 10px 12px; /* 定位搜索按钮 */ | ||
| + | background-repeat: no-repeat; /* 不重复图片 */ | ||
| + | width: 100%; | ||
| + | font-size: 16px; | ||
| + | padding: 12px 20px 12px 40px; | ||
| + | border: 1px solid #ddd; | ||
| + | margin-bottom: 12px; | ||
| + | } | ||
| + | </style> | ||
| + | |||
</head> | </head> | ||
<body> | <body> | ||
| Line 697: | Line 687: | ||
</div> | </div> | ||
</div> | </div> | ||
| − | <script type="text/javascript"> | + | <script type="text/javascript" > |
function myFunction() { | function myFunction() { | ||
// 声明变量 | // 声明变量 | ||
| Line 742: | Line 732: | ||
//添加tr基数背景色样式 | //添加tr基数背景色样式 | ||
| − | $("# | + | $("#table2 tr:even").css("background","#65dbff"); |
//even:设置tr基数背景色 | //even:设置tr基数背景色 | ||
| − | $("# | + | $("#table2 tr:even").attr("bg","#65dbff"); |
//odd:设置tr偶数背景色 | //odd:设置tr偶数背景色 | ||
| − | $("# | + | $("#table2 tr:odd").attr("bg","#fefffe"); |
//mouseover():鼠标滑动事件,设置tr背景色 | //mouseover():鼠标滑动事件,设置tr背景色 | ||
| − | $("# | + | $("#table2 tr").mouseover(function(){ |
$(this).css("background","#a287f4"); | $(this).css("background","#a287f4"); | ||
}); | }); | ||
//当鼠标移出tr时,设置背景色 | //当鼠标移出tr时,设置背景色 | ||
| − | $("# | + | $("#table2 tr").mouseout(function(){ |
//attr():获取元素属性 | //attr():获取元素属性 | ||
var bgc = $(this).attr("bg"); | var bgc = $(this).attr("bg"); | ||
| Line 762: | Line 752: | ||
}); | }); | ||
</script> | </script> | ||
| − | <input type="text" id="myInput2" onkeyup=" | + | <input type="text" id="myInput2" onkeyup="myFunction2()" placeholder="Search..."> |
<table class="table" id="table2"> | <table class="table" id="table2"> | ||
<tr> | <tr> | ||
| Line 817: | Line 807: | ||
</div> | </div> | ||
</div> | </div> | ||
| − | <script type="text/javascript"> | + | <script type="text/javascript" > |
| − | function | + | function myFunction2() { |
// 声明变量 | // 声明变量 | ||
var input, filter, table, tr, td, i; | var input, filter, table, tr, td, i; | ||
Revision as of 11:33, 17 September 2019
Parts
The Foundation of Synthetic Biology.
Parts
The Foundation of Synthetic Biology .
Parts
Overview
On this page, we compiled an overview of all the BioBricks we have created this summer in our mission.We submitted 220 parts,but it doesn’t mean we win at quantity.Actually we provided a series of data with high-quality,and all of our parts have been proved to be workable.The links below will lead you the corresponding registry entry.
Parts
Collection
During the experiment, we created many parts .These parts allow us to obtain large amounts of soluble target proteins easier.MBLS reflect essential research value,and we wish our part collection can contribute to follow-up research.
Basic Parts
Composite Parts
Basic Parts
Composite Parts
Basic
Parts
Our project requires many different proteins,and these basic parts are of vital importance. Here's an example:
| Remark | Part Number | Description | Type | Length |
|---|---|---|---|---|
| 1 | BBa_K2933022 | T7 promoter | Regulatory | 1 |
| 2 | BBa_K2933023 | lac operator | Regulatory | 2 |
| 3 | BBa_K2933024 | RBS b(T7) | RBS | 3 |
| 4 | BBa_K2933026 | Tac promoter | Regulatory | 4 |
| 5 | BBa_K2933027 | Linker e(recognition site of Prescission Protease) | DNA | 5 |
| 6 | BBa_K2933029 | His-Linker a-SUMO | Tag | 6 |
Composite
Parts
In order to make our project run smoothly, we created these composite parts to get more soluble protein.And all of our composite parts are as follows:
| Remark | Part Number | Description | Type | Length |
|---|---|---|---|---|
| 1 | BBa_K2933101 | GST+Linker e+NDM-23 | Coding | 1 |
| 2 | BBa_K2933105 | GST+Linker e+SPG-1 | Coding | 2 |
| 3 | BBa_K2933106 | GST+Linker e+ElBla2-1 | Coding | 3 |
| 4 | BBa_K2933104 | GST+Linker e+AFM-1 | Coding | 4 |
| 5 | BBa_K2933107 | GST+Linker e+ MYX-1 | Coding | 5 |
| 6 | BBa_K2933108 | GST+Linker e+IND-10 | Coding | 6 |
EMAIL
ADDRESS