Difference between revisions of "Team:TCFSH Taiwan/Model"

(Replaced content with "{{TCFSH_Taiwan}} {{TCFSH_Taiwan/Navigation}} {{TCFSH_Taiwan_footer}}")
Line 1: Line 1:
 
{{TCFSH_Taiwan}}
 
{{TCFSH_Taiwan}}
 
{{TCFSH_Taiwan/Navigation}}
 
{{TCFSH_Taiwan/Navigation}}
 +
<html>
 +
<head>
 +
<meta charset="UTF-8">
 +
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
 +
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
 +
 +
<style type="text/css">
 +
#sideMenu, #top_title {display:none;}
 +
#content { padding:0px; width:100%; margin-top:-7px; margin-left:0px;}
 +
body {background-color:white; }
 +
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 +
#top_menu_inside {margin-left: 20px; margin-bottom: 0px;}
 +
 +
html, body, div, span, applet, object, iframe,
 +
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 +
a, abbr, acronym, address, big, cite, code,
 +
del, dfn, em, font, img, ins, kbd, q, s, samp,
 +
small, strike, strong, sub, tt, var,
 +
b, u, i, center,
 +
dl, dt, dd, ol, ul, li,
 +
fieldset, form, label, legend,
 +
table, caption, tbody, tfoot, thead, tr, th, td {
 +
    margin: 0;
 +
    padding: 0;
 +
    border: 0;
 +
    outline: 0;
 +
}
 +
* {
 +
  font-family: 'Open Sans', sans-serif;
 +
    font-weight: 300;
 +
}
 +
body{
 +
    background-color:rgb(51,51,51) !important;
 +
    line-height:1;
 +
}
 +
 +
/*--------------side menu-----------------*/
 +
 +
nav {
 +
  padding: 18px;
 +
  position: fixed;
 +
  height: auto;
 +
  left:0.5vw;
 +
  width: auto;
 +
  z-index: 9999;
 +
  top:25%;
 +
  margin: auto;
 +
}
 +
 +
nav .wrapper {
 +
  padding: 0;
 +
  width:100%;
 +
  height: 785px;
 +
}
 +
 +
nav .nodes {
 +
  position: relative;
 +
  margin-top: 1px;
 +
  margin-left: 1px;
 +
 +
}
 +
 +
.line {
 +
  position: absolute;
 +
  width:1px;
 +
  height:705px;
 +
  top: 13px;
 +
}
 +
.line .red {
 +
  width:1px;    /*調line長度*/
 +
  height:47%; /*line寬度*/
 +
  position:relative;
 +
 +
}
 +
 +
.line .blue {
 +
  width: 1px;  /*line寬度*/
 +
  height: 15%;  /*調line長度*/
 +
  position:relative;
 +
  left:51px;
 +
 +
}
 +
.line .red-container {
 +
  position:relative;
 +
  width: 4px;
 +
}
 +
.line .red {
 +
  background-color:#00D6FF;/*cover line color*/
 +
  *zoom: 1;
 +
  background-size: 100%;
 +
}
 +
.line .blue {
 +
  background-color: white;/*line color*/
 +
  *zoom: 1;
 +
  background-size: 100%;
 +
 +
}
 +
 +
.node {
 +
  margin-left: 40px;/*調node間距*/
 +
  width: 20px;
 +
  height: 20px;
 +
  margin-top: 30px;
 +
  position: relative;
 +
}
 +
.node .splash {
 +
  box-shadow: 0px 0px 8px 2px rgba(69, 174, 233, 0.53);
 +
  transform: translateZ(0px) scale(1);
 +
  position: absolute;
 +
  width: 20px;
 +
  height: 20px;
 +
  border-radius: 100%;
 +
  pointer-events: none;
 +
  opacity: 1;
 +
}
 +
.node.active .active-circle {
 +
  transform: scale(1);
 +
  opacity: 1;
 +
  background:white;/*active circle color*/
 +
  left:1.6px; 
 +
}
 +
.node.active .splash {
 +
  transition: transform 1200ms, opacity 1500ms;
 +
  transform: translateZ(0px) scale(2.5);
 +
  opacity: 0 !important;
 +
 +
}
 +
.node.active .inactive-circle {
 +
  transition: opacity 200ms;
 +
  opacity: 0;
 +
}
 +
.node .active-circle {
 +
  transition: all 300ms cubic-bezier(0.63, 0.62, 0.48, 1.84);
 +
  transform: scale(0.7);
 +
  position: absolute;
 +
  opacity: 0;
 +
  width: 20px;
 +
  height: 20px;
 +
  border-radius: 100%;
 +
  background-color: #4b1202;
 +
  *zoom: 1;
 +
  background-size: 100%;
 +
 +
}
 +
.node .active-circle .cover {
 +
  transform: translateZ(0px);
 +
  width: 16px;
 +
  height: 16px;
 +
  background:red;/*active circle color */
 +
  border-radius: 100%;
 +
  position: absolute;
 +
  top: 2px;
 +
  left: 2px;
 +
}
 +
 +
.node .inactive-circle {
 +
  transition: all 300ms cubic-bezier(0.63, 0.62, 0.48, 1.84);
 +
  width: 14px;
 +
  height: 14px;
 +
  display: block;
 +
  background: #000;
 +
  position: absolute;
 +
  border-radius: 100%;
 +
  border: 2px solid white;
 +
  top: 3px;
 +
  left: 3px;
 +
}
 +
.node:hover {
 +
  cursor: pointer;
 +
}
 +
.node:hover .active-circle {
 +
  transition: all 200ms cubic-bezier(0.63, 0.62, 0.48, 1.84);
 +
  transform: scale(0.84);
 +
}
 +
 +
.node:hover .inactive-circle {
 +
  transition: all 200ms cubic-bezier(0.63, 0.62, 0.48, 1.84);
 +
  transform: scale(0.85);
 +
}
 +
 +
/*left-topic*/
 +
 +
.topic{
 +
    position:relative;
 +
    margin-top:0vh !important;
 +
    width:250px;
 +
    height:auto;
 +
    left:230px;
 +
    float:right;
 +
    color:#F3F7F7;
 +
}
 +
.text_color{
 +
    color:#F3F7F7;
 +
    font-size:12pt !important;
 +
}
 +
/*--------大圖----------*/
 +
@media screen and (min-width: 768px) {
 +
  .img-container{
 +
    height:100vh ;
 +
    overflow:hidden ;
 +
    width:100%;
 +
  }
 +
  .main-img{
 +
    top: 0;
 +
    bottom: 0;
 +
    left: 0;
 +
    right: 0;
 +
    width: 100%;
 +
    margin: auto;
 +
    z-index:999;
 +
    }
 +
}
 +
@media screen and (orientation: portrait) {
 +
    .img-container{
 +
        height:auto;
 +
        overflow:none;
 +
        width:100%;
 +
    }
 +
    .main-img{
 +
        top: 0;
 +
        bottom: 0;
 +
        left: 0;
 +
        right: 0;
 +
        width: 100%;
 +
        margin: auto;
 +
        z-index:999;
 +
    }
 +
}
 +
 +
/*---------image----------*/
 +
.web{
 +
    position:fixed !important;
 +
    left:0%;
 +
    bottom:0%;
 +
    display:block;
 +
    margin: auto;
 +
}
 +
.right{
 +
    position:fixed !important;
 +
    bottom:-15px;
 +
    right:0vw;
 +
    margin: auto;
 +
}
 +
 +
 +
 +
 +
.img-position{
 +
    position:absolute;
 +
    z-index:-1;
 +
}
 +
 +
 +
/*---------------------*/
 +
 +
#modelingContainer {
 +
 +
}
 +
 +
#modelingTitle {
 +
  font-size: 80px;
 +
  text-align: center;
 +
  color: #00b4ed;
 +
  padding: 50px 30px 20px 30px;
 +
  margin: 20px;
 +
  letter-spacing: 4px;
 +
}
 +
#modelingContent {
 +
  width: 100%;
 +
}
 +
 +
.modelingPart {
 +
        margin-top:15px;
 +
}
 +
 +
.modelingPartContentTitie {
 +
  font-size: 22px;
 +
  font-weight: normal;
 +
}
 +
.modelingPartContent {
 +
  width: 90%;
 +
  margin: 0 auto;
 +
}
 +
.modelingPartContent p {
 +
  font-size: 18px;
 +
}
 +
 +
 +
#partB,#partC,#partD,#partE,#partF,#partG,#partI,#partJ,#partK,#partM,#partN,#partO,#partP,#partQ,#partR
 +
{display:none;
 +
}
 +
 +
 +
#titleA,#titleB,#titleC,#titleD,#titleE,#titleF,#titleG,#titleH,#titleI,#titleJ,#titleK,#titleL,#titleM,#titleN,#titleO,#titleP,#titleQ,#titleR
 +
{cursor:pointer;
 +
}
 +
 +
 +
/*left-topic*/
 +
 +
.topic{
 +
    position:relative;
 +
    margin-top:0vh !important;
 +
    width:200px;
 +
    height:auto;
 +
    left:210px;
 +
    float:right;
 +
    color:#F3F7F7;
 +
}
 +
.text_color{
 +
    color:#F3F7F7;
 +
    font-size:12pt !important;
 +
}
 +
/*content*/
 +
.content_container{
 +
    position:relative;
 +
    left:6.5vw;
 +
    right:6.5vw;
 +
    margin:0 auto;
 +
    width:60vw;
 +
    height:auto;
 +
}
 +
..title{
 +
    font-size:25pt !important;
 +
    color:#ffd11a;
 +
    text-shadow:1px 1px 10px rgb(153, 153, 255);
 +
    border-left:3px solid rgb(153, 153, 255);
 +
    padding-left:10px !important; 
 +
    margin-top:20px;
 +
    margin-bottom:10px;
 +
    font-weight:bold;
 +
}
 +
.content{
 +
    font-size:15pt !important;
 +
    text-align:justify;
 +
    text-indent:2em;
 +
    color:#F3F7F7;
 +
    padding-left:40px;
 +
    padding-top:15px;
 +
    padding-bottom:15px;
 +
}
 +
/*second title*/
 +
.content-1{
 +
    font-size:19pt !important;
 +
    text-align:justify;
 +
    font-weight: 400 !important;
 +
    padding-top:20px;
 +
    padding-bottom:10px;
 +
    font-weight:400 !important;
 +
}
 +
 +
.content-2{
 +
    font-size:15pt !important;
 +
    text-align:justify;
 +
    color:#F3F7F7;
 +
    text-indent:2em;
 +
    padding-top:15px;
 +
    padding-bottom:15px;
 +
}
 +
.reference-content{
 +
    font-size:13pt !important;
 +
    text-align:justify;
 +
    color:#F3F7F7;
 +
    padding-top:15px;
 +
    padding-bottom:15px;
 +
}
 +
.content-image{
 +
    color:#F3F7F7 !important;
 +
    font-size:11pt !important;
 +
    padding-top:10px;
 +
    padding-bottom:50px;
 +
    width:50vw;
 +
    margin:auto;
 +
    padding-left:60px;
 +
}
 +
 +
.appear{
 +
    display:none;
 +
picture{position:relative;}   
 +
}
 +
.list{
 +
    font-size:15pt !important;
 +
    text-align:justify;
 +
    color:#F3F7F7;
 +
    line-height:1.5;
 +
    padding-bottom:8px;
 +
}
 +
.quote{
 +
    font-size:17pt !important;
 +
    text-align:justify;
 +
    color:#F3F7F7;
 +
    text-indent:2em !important;
 +
   
 +
}
 +
 +
 +
</style>
 +
</head>
 +
<body>
 +
 +
<nav id="scroll">
 +
    <div class="wrapper">
 +
     
 +
      <div class="nodes">
 +
            <div class="line">
 +
                <div class="blue">
 +
                    <div class="red-container">
 +
                        <div class="red"></div>
 +
                    </div>
 +
                </div>
 +
          </div>
 +
 
 +
          <div class="node" id="node1">
 +
          <div class="topic"><p class="text_color"><a href="#title1" style="text-decoration:none;color:#F3F7F7;">Model Introduction</p></div>
 +
            <div class="active-circle">
 +
              <div class="splash"></div>
 +
              <div class="cover">   
 +
              </div>
 +
            </div>
 +
            <div class="inactive-circle">
 +
              <div class="small-cover">
 +
              </div>
 +
            </div>
 +
          </div>
 +
 
 +
          <div class="node" id="node2">
 +
          <div class="topic"><p class="text_color"><a href="#title2" style="text-decoration:none;color:#F3F7F7;">What are we modeling?</a></p></div>
 +
            <div class="active-circle">
 +
              <div class="splash"></div>
 +
              <div class="cover">
 +
              </div>
 +
            </div>
 +
            <div class="inactive-circle">
 +
              <div class="small-cover">
 +
              </div>
 +
            </div>
 +
          </div>         
 +
    </nav>
 +
 +
<!--圖片-->
 +
  <div class="img-container">
 +
        <img src="https://static.igem.org/mediawiki/2016/0/01/NCTU_MODELING_BIG_PICTURE.png" class="main-img" width="100%">
 +
  </div>
 +
 +
 +
<!--wiki content-->
 +
<section class="content_container">
 +
<div>
 +
 +
    <div id="modelingContainer">
 +
      <p class="title">Model Introduction</p>
 +
      <p class="content">In our opinion, modelling has always played an important role in every subject, even beyond science. In our project, it comes up with real data, and thus make biological theories easier to be realized and observed. Carl Gauss said that “Mathematics is the queen of the science.” A proposition of mathematics is reliable and indisputable, whereas other science theories have always been in a risk of being overthrown. The reason why modelling has good reputation and a certain status is that it theorems the scientific phenomenon, and makes them more trustworthy. By conducting modelling, we can have a reasonable embryonic form to estimate a possible solution of a difficult problem. However, the reaction series or the operation mechanism of an unknown equation needs to be reasonably presumed, and this is the most difficult part in the whole process. After the right theories come out, we can amend our hypothetical surmise, and remake another model. In the modelling process we’ve done, the main technique we used is DE (differential equation). We use derivative to describe the difference of any variables within a very short time. But we’ve met some very complicated equations when solving the problem, so we use the program MATLAB to help calculate the results.</p>
 +
</div>
 +
 +
<div>
 +
    <div id="modelingContainer">
 +
      <p class="title">What are we modeling?</p>
 +
      <p class="content"> - The growth of E. coli
 +
        <br> - The Expression of Different Color</br>
 +
        <br> - The Concentration Function f:(substance,time)→concentration
 +
        <br> - Math Is Long, Life Is Short: Math in Our Life</br></p>
 +
 +
<div id="modelingContent">
 +
   
 +
    <!--modeling part-->
 +
    <!--1.-->
 +
    <div class="modelingPart">
 +
        <h2 class="content-1" id="titleA" style="color:#33FFCC">I. Purpose</h2>
 +
        <div class="modelingPartContent" id="partA">
 +
 +
            <p class="content">To prove the concept of Pantide, we wanted to select three existing distinct spider toxin peptides with probable oral toxicity against the testee-Spodoptera litura(Tobacco cutworms). For the actual application of Pantide, we needed some more knowledge base of peptides which have different molecular targets to promote Pantide applying to other orders of insects, and a different toxic mechanism to regularly alternate so as to avoid drug resistance.</p>
 +
            <p class="content">To date, about 1500 toxin peptides from 97 spider species have been studied, though the number of spider toxin peptides is conservatively estimated up to 10 million. <sup>[1]</sup> So, our purpose is to establish a database collecting the information of those peptides, such as molecular target, taxon, toxicity, sequence. According to the database, if we first choose a target insect, then we can easily find out groups of suitable peptides used as Pantide. Therefore, we also need to create a method to select peptides from the database.</p>       
 +
 +
        </div>
 +
    </div>
 +
   
 +
   
 +
        <!--2.-->
 +
    <div class="modelingPart">
 +
        <h2 class="content-1" id="titleB" style="color:#44FCCE">II. Method</h2>
 +
        <div class="modelingPartContent" id="partB">
 +
          <p class="content">The method of toxin selection can be separated into three part: crawler, filter, and selection.</p>
 +
<ul style="list-style-image:none;list-style-type:decimal;">
 +
          <li class="list">Toxin Collection—we planned to collect information of toxin peptides to establish our own database for Pantide from protein databases and some research results like taxon and toxicity from published papers. </li>
 +
          <li class="list">Toxin Filtering—based on background knowledge of toxin peptides, we set up some conditions to filter out those unsuitable to use as Pantide.</li>
 +
          <li class="list">Toxin Processing—we used online protein analytic tools to classify the remained peptides into groups by their similarity. Finally, we select out three distinct peptides from different groups to proof concept of Pantide.</li>
 +
</ul>
 +
        </div>     
 +
    </div>
 +
   
 +
   
 +
    <!--3.-->
 +
    <div class="modelingPart">
 +
     
 +
        <h2 class="content-1" id="titleC" style="color:#5BFCD4">III. Step 1: Crawler</h2>
 +
        <div class="modelingPartContent" id="partC">
 +
            <p class="content">In the beginning, we searched on UniProtKB/Swiss-Prot. It is a freely accessible database of protein sequence and functional information that is the manually annotated and reviewed section. (<a href="http://www.uniprot.org" style="color:#44E287;">http://www.uniprot.org/</a>) By searching the keyword “insecticidal NOT crystal” we wanted to find all the proteins that have insecticidal activity excluding those crystal proteins of Bacillus thuringiensis, and we got 216 proteins as results.</p>
 +
            <p class="content">Using the result, we established our Pantide database by crawling 11 entries of the protein information from UniProt. The entries are as follows.</p>
 +
 +
<ul style="list-style-image:none;list-style-type:disc;">
 +
            <li class="list">The name of the protein</li>
 +
            <li class="list">The description of protein function</li>
 +
            <li class="list">The organisms/source of the protein sequence</li>
 +
            <li class="list">The length of amino acids</li>
 +
            <li class="list">The number of disulfides bonds</li>
 +
            <li class="list">Propeptide & signal peptide—If the proteins have an N-terminal signal peptide and propeptide, a part of protein will be cleaved during maturation or activation.</li>
 +
            <li class="list">Uniprot entry & Arachnoserver id—the accession number of protein in UniProtKB and ArachnoServer*.</li>
 +
</ul>
 +
            <p class="content-2">*ArachnoServer is a manually curated database for protein toxins derived from spider venom.(<a href="http://www.arachnoserver.org/" style="color:#44E287;">http://www.arachnoserver.org/</a>).</p>
 +
            <p class="content">We also crawled other seven entries of protein toxicity recorded by Arachnoserver—molecular target, taxon, ED50, LD50, PD50, qualitative information, protein sequence from Arachnoserver. The term, Molecular target, is the effect site of toxin peptides, such as voltage-gated ion channels, GABA receptors and so on. Taxon, ED50, LD50, PD50, and the qualitative information are the toxicity against taxon that had been tested by experiments. The protein sequence from two databases is entirely the same.</p>
 +
            <p class="content">We utilized BeautifulSoup 4.4.0, sqlite3 and gevent modules in Python 3.5 to develop our crawler. Moreover, we have submitted the code to GitHub.<br>(Link:<a href="https://github.com/chengchingwen/iGEM/blob/master/crawler.py" style="color:#44E287;">https://github.com/chengchingwen/iGEM/blob/master/crawler.py</a>)</p>
 +
 +
        </div>
 +
    </div>
 +
   
 +
   
 +
    <!--4.-->
 +
    <div class="modelingPart" >
 +
        <h2 class="content-1" id="titleD"  style="color:#6EFFDB">IV. Step 2: Filter</h2>
 +
        <div class="modelingPartContent" id="partD">
 +
              <p class="content">After crawling the data, we used DB Browser for SQLite software to browse and used SQL to process our Pantide database. We tried to build a filter to find out peptides suitable to use as Pantide.</p>
 +
              <p class="content">According to the previous articles, we knew that around 90% of spider venom toxin peptides contain ICK structure which is the most important domain that reacts with the voltage-gated ion channels of insects and some other receptors specifically. <sup>[2]</sup></p>
 +
              <p class="content">Therefore, to find these spider venom toxin peptides from Pantide database, we could start from searching for ICK structure, whose mass is among 1-10 kDa containing at least three disulfide bonds. <sup>[2]</sup> So we set a filter with three conditions.</p>
 +
 +
 +
<ul style="list-style-image:none;list-style-type:decimal;">
 +
          <li class="list">The organism we choose must be spiders or tarantulas.</li>
 +
          <li class="list">The length of the a.a. sequences are between 27 and 271 base pairs (1 kDa of protein has averagely nine amino acids, encoded by 27 base pairs)</li>
 +
          <li class="list">The number of disulfide bonds is greater or equal to 3.
 +
          After filtering with the three conditions, 113 peptides remained. Next, we set another filter to find out insecticidal peptides.</li>
 +
          <li class="list">Molecular target contains “invertebrate,” but we also remain peptides without data.
 +
          <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The reason why we keep the peptides without data was that they have the probability to be effective. In this stage, we got 63 candidates.</li>
 +
          <p class="content-2">For efficacy experiment of Pantide, we choose our testee-Spodoptera litura as target insect. While there are 14 kinds of distinct Taxon in our database, including 4 Lepidoptera genus. Thus, we also set the other filter to find out peptides against Lepidoptera:</p>
 +
          <li class="list">Taxon contains at least one of <i>Spodoptera litura</i>, <i>Heliothis virescens</i>, <i>Manduca sexta</i> and <i>Spodoptera exigua</i>, but we also remain peptides without data
 +
          <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;On the other hand, because we designed to produce Pantide by <i>E.coli</i>, that is difficult to express proteins containing disulfide bonds. We had chosen <i>E.coli</i> Rosetta-gami strain for enhanced disulfide bond formation, but to express a protein with more than four disulfide bonds is still a heavy load. So we finally filtered out those peptides containing too much disulfide bonds.</li>
 +
          <li class="list">The number of disulfide bonds is less than or equal to four.
 +
          <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The result was that we got 46 peptides which have the possibility to use as Pantide in proof concept experiment, and all of them is targeted to insects’ voltage-gated ion channels (excluding NULL).</li>
 +
</ul>
 +
 +
        </div>   
 +
    </div>
 +
   
 +
    <div class="modelingPart">
 +
        <h2 class="content-1" id="titleE" style="color:#80FFDF">V. Step 3: Selection</h2>
 +
        <div class="modelingPartContent" id="partE">
 +
            <p class="content">In this step, we tried to find three peptides that have different molecular target or mechanism from filtering result to do the test experiment. The method we used was to classify the remained peptides into groups by their structure similarity.</p>
 +
            <p class="content">We used online analytic tools on NCBI to process those peptides.</p>
 +
            <p class="content">We started with using Protein BLAST (Basic Local Alignment Search Tool) to search from the whole protein database for the similar query protein sequences related to all the 46 peptides and put those related peptides into groups.</p>
 +
            <p class="content">The next was using COBALT (Constraint-based Multiple Alignment Tool) to align the sequence between groups to find out whether or not the two groups have the similar structure while they were not got together on the last step because of side chains and other factors. At last, we separated 46 peptides into four groups, containing 27, 12, 3, 2 peptides, and two alone.</p>
 +
            <p class="content">Then we chose the three larger groups and used Conserved Domains Search, and found out that they belonged to the three conserved protein domain family. There are Omega-toxin Superfamily (cl05707), Toxin_28 Superfamily (cl06928) and Toxin_20 Superfamily (cl06915). The strings in brackets are unique ID of superfamilies in the conserved protein domain family database. Finally, we selected the representative peptides from each superfamily and got these three peptides, ω-hexatoxin-Hv1a, μ-segestritoxin-Sf1a and Orally active insecticidal peptide (OAIP).</p>
 +
    </div>
 +
</div>
 +
 +
 +
    <div class="modelingPart">
 +
        <h2 class="content-1" id="titleF" style="color:#88FCDF">VI. Future</h2>
 +
        <div class="modelingPartContent" id="partF">
 +
          <p class="content">To promote the applicability of Pantide, we still need to extend our database. The next step is to integrate with other toxin peptide databases, such as scorpions or cone snails, collect more peptides’ information from research results, and even combine with bioinformatics to build a new scoring system, and search for new potential peptides.</p>
 +
        </div>
 +
    </div>
 +
 +
 +
    <div class="modelingPart">
 +
        <h2 class="content-1" id="titleG" style="color:#9CFFE6">Reference</h2>
 +
        <div class="modelingPartContent" id="partG">
 +
          <p class="reference-content">[1] King, G.F.; Gentz, M.C.; Escoubas, P.; Nicholson, G.M. A rational nomenclature for naming peptide toxins from spiders and other venomous animals. Toxicon 2008, 52, 264–276.</p>
 +
          <p class="reference-content">[2] Monique J. Windley, Volker Herzig, Sławomir A. Dziemborowicz, Margaret C. Hardy, Glenn F. King and Graham M. Nicholson (2012). Spider-Venom Peptides as Bioinsecticides. Toxins, 4, 191-227.</p>
 +
        </div>
 +
    </div>
 +
 +
</div>
 +
 +
</div>
 +
</section>
 +
 +
<!------------JS---------->
 +
<script>
 +
$(function(){
 +
 +
$("#menuNav").children("li").eq(8).addClass("nav-active");
 +
  $("#titleA").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partF").slideUp(300);
 +
    $("#partA").slideToggle(300);
 +
    $("html,body").animate({scrollTop:$("#titleA").offset().top-70},1000);
 +
  });
 +
    $("#titleB").click(function(){
 +
    $("#partA").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
    $("#partF").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partB").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleB").offset().top-70},1000)',500);
 +
  });
 +
  $("#titleC").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partA").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
    $("#partF").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partC").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleC").offset().top-70},1000)',500);
 +
  });
 +
    $("#titleD").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partA").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
    $("#partF").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partD").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleD").offset().top-70},1000)',500);
 +
  });
 +
    $("#titleE").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partA").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
    $("#partF").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partE").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleE").offset().top-70},1000)',500);
 +
  });
 +
    $("#titleF").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partA").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
                $("#partG").slideUp(300);
 +
    $("#partF").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleF").offset().top-70},1000)',500);
 +
  });
 +
 +
$("#titleG").click(function(){
 +
    $("#partB").slideUp(300);
 +
    $("#partA").slideUp(300);
 +
    $("#partD").slideUp(300);
 +
    $("#partE").slideUp(300);
 +
    $("#partC").slideUp(300);
 +
                $("#partF").slideUp(300);
 +
    $("#partG").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleF").offset().top-80},1000)',500);
 +
  });
 +
 +
  $("#titleH").click(function(){
 +
    $("#partI").slideUp(300);
 +
    $("#partJ").slideUp(300);
 +
    $("#partK").slideUp(300);
 +
    $("#partH").slideToggle(300);
 +
    $("html,body").animate({scrollTop:$("#titleH").offset().top-70},1000);
 +
  });
 +
    $("#titleI").click(function(){
 +
    $("#partH").slideUp(300);
 +
    $("#partJ").slideUp(300);
 +
    $("#partK").slideUp(300);
 +
    $("#partI").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleI").offset().top-70},1000)',500);
 +
  });
 +
  $("#titleJ").click(function(){
 +
    $("#partH").slideUp(300);
 +
    $("#partI").slideUp(300);
 +
    $("#partK").slideUp(300);
 +
    $("#partJ").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleJ").offset().top-70},1000)',500);
 +
  });
 +
    $("#titleK").click(function(){
 +
    $("#partH").slideUp(300);
 +
    $("#partI").slideUp(300);
 +
    $("#partJ").slideUp(300);
 +
    $("#partK").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleK").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleL").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partL").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleL").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleM").click(function(){
 +
    $("#partL").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partM").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleM").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleN").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partL").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partN").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleN").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleO").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partL").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partO").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleO").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleP").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partL").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partP").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleP").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleQ").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partL").slideUp(300);
 +
$("#partR").slideUp(300);
 +
    $("#partQ").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleQ").offset().top-70},1000)',500);
 +
  });
 +
        $("#titleR").click(function(){
 +
    $("#partM").slideUp(300);
 +
    $("#partN").slideUp(300);
 +
    $("#partO").slideUp(300);
 +
        $("#partP").slideUp(300);
 +
        $("#partQ").slideUp(300);
 +
        $("#partL").slideUp(300);
 +
    $("#partR").slideToggle(300);
 +
    setTimeout('$("html,body").animate({scrollTop:$("#titleR").offset().top-70},1000)',500);
 +
  });
 +
});
 +
 +
 +
</script>
 +
 +
<!--JS-->
 +
 +
<script>
 +
 +
var $document = $( document.body );
 +
var $revealBar = $( '.red-container' );
 +
var wrapperHeight = $document.height();
 +
var stepDistance = 101;
 +
var documentHeight = window.innerHeight;
 +
var positions = [];
 +
var heights = [];
 +
var elements = $( '.title' );
 +
 +
// Cache heights and positions
 +
for( var i = 0; i < elements.length; i++ ) {
 +
  var $element = $(elements[i]);
 +
  var height = $element.offset().top + documentHeight;
 +
  if (height > wrapperHeight) {
 +
    height = wrapperHeight;
 +
  }
 +
  positions.push(height);
 +
  heights.push($element.height());
 +
}
 +
 +
var $nodes =  $( '.node' );
 +
 +
// Should totally be debounced /w animation frame. I know,
 +
// this whole thing is slightly inefficient.
 +
// And magic numbers too!
 +
$( document ).scroll( function() {
 +
 +
  nodeTop = $document.scrollTop() + documentHeight + 1;
 +
  var current = 0;
 +
 
 +
  // Active/non active states
 +
  for( var i = 0; i < positions.length; i++ ) {
 +
    if(nodeTop >= positions[i]-70) {
 +
      current = i;
 +
      $nodes.eq( i ).addClass( 'active' );
 +
    } else {
 +
      $nodes.eq( i ).removeClass( 'active' );
 +
    }
 +
  }
 +
 
 +
 
 +
  if ( current < elements.length ) {
 +
    var nextStep = (nodeTop - positions[current]) / (positions[current + 1] - positions[current]);
 +
    var totalWidth = ( current * stepDistance ) + (nextStep * stepDistance);
 +
  $revealBar.height( totalWidth+10 );
 +
  }
 +
 +
})
 +
 +
// Clicking the nodes... again, nothing special ;)
 +
$nodes.each( function( index ) {
 +
  var $node1 = $( '#node1' );
 +
  $node1.click( function() {
 +
    $('html, body').animate({ scrollTop: $('#title1').offset().top-70}, 1000 );
 +
  });
 +
  var $node2 = $( '#node2' );
 +
  $node2.click( function() {
 +
    $('html, body').animate({ scrollTop: $('#title2').offset().top-70}, 1000 );
 +
  });
 +
  var $node3 = $( '#node3' );
 +
  $node3.click( function() {
 +
    $('html, body').animate({ scrollTop: $('#title3').offset().top-70}, 1000 );
 +
  });
 +
})
 +
//scroll_relocate
 +
function sticky_relocate() {
 +
    var window_top = $(window).scrollTop();
 +
    var div_top = $('.main-img').offset().top;;
 +
    if (window_top > div_top+500) {
 +
        $('#scroll').removeClass('appear');
 +
    } else {
 +
        $('#scroll').addClass('appear');
 +
    };
 +
    if(window_top > div_top+420) {
 +
        $('#web').fadeIn(200);
 +
        $('#right').fadeIn(200);
 +
    } else {
 +
        $('#web').fadeOut(200);
 +
        $('#right').fadeOut(200);
 +
    }
 +
}
 +
 +
$(function () {
 +
    $(window).scroll(sticky_relocate);
 +
    sticky_relocate();
 +
});
 +
 +
 +
 +
$(document).ready(function(
 +
 +
){})
 +
 +
 +
</script>
 +
</body>
 +
</html>
 
{{TCFSH_Taiwan_footer}}
 
{{TCFSH_Taiwan_footer}}

Revision as of 15:42, 30 October 2017

Model Introduction

In our opinion, modelling has always played an important role in every subject, even beyond science. In our project, it comes up with real data, and thus make biological theories easier to be realized and observed. Carl Gauss said that “Mathematics is the queen of the science.” A proposition of mathematics is reliable and indisputable, whereas other science theories have always been in a risk of being overthrown. The reason why modelling has good reputation and a certain status is that it theorems the scientific phenomenon, and makes them more trustworthy. By conducting modelling, we can have a reasonable embryonic form to estimate a possible solution of a difficult problem. However, the reaction series or the operation mechanism of an unknown equation needs to be reasonably presumed, and this is the most difficult part in the whole process. After the right theories come out, we can amend our hypothetical surmise, and remake another model. In the modelling process we’ve done, the main technique we used is DE (differential equation). We use derivative to describe the difference of any variables within a very short time. But we’ve met some very complicated equations when solving the problem, so we use the program MATLAB to help calculate the results.

What are we modeling?

- The growth of E. coli
- The Expression of Different Color

- The Concentration Function f:(substance,time)→concentration
- Math Is Long, Life Is Short: Math in Our Life

I. Purpose

To prove the concept of Pantide, we wanted to select three existing distinct spider toxin peptides with probable oral toxicity against the testee-Spodoptera litura(Tobacco cutworms). For the actual application of Pantide, we needed some more knowledge base of peptides which have different molecular targets to promote Pantide applying to other orders of insects, and a different toxic mechanism to regularly alternate so as to avoid drug resistance.

To date, about 1500 toxin peptides from 97 spider species have been studied, though the number of spider toxin peptides is conservatively estimated up to 10 million. [1] So, our purpose is to establish a database collecting the information of those peptides, such as molecular target, taxon, toxicity, sequence. According to the database, if we first choose a target insect, then we can easily find out groups of suitable peptides used as Pantide. Therefore, we also need to create a method to select peptides from the database.

II. Method

The method of toxin selection can be separated into three part: crawler, filter, and selection.

  • Toxin Collection—we planned to collect information of toxin peptides to establish our own database for Pantide from protein databases and some research results like taxon and toxicity from published papers.
  • Toxin Filtering—based on background knowledge of toxin peptides, we set up some conditions to filter out those unsuitable to use as Pantide.
  • Toxin Processing—we used online protein analytic tools to classify the remained peptides into groups by their similarity. Finally, we select out three distinct peptides from different groups to proof concept of Pantide.

III. Step 1: Crawler

In the beginning, we searched on UniProtKB/Swiss-Prot. It is a freely accessible database of protein sequence and functional information that is the manually annotated and reviewed section. (http://www.uniprot.org/) By searching the keyword “insecticidal NOT crystal” we wanted to find all the proteins that have insecticidal activity excluding those crystal proteins of Bacillus thuringiensis, and we got 216 proteins as results.

Using the result, we established our Pantide database by crawling 11 entries of the protein information from UniProt. The entries are as follows.

  • The name of the protein
  • The description of protein function
  • The organisms/source of the protein sequence
  • The length of amino acids
  • The number of disulfides bonds
  • Propeptide & signal peptide—If the proteins have an N-terminal signal peptide and propeptide, a part of protein will be cleaved during maturation or activation.
  • Uniprot entry & Arachnoserver id—the accession number of protein in UniProtKB and ArachnoServer*.

*ArachnoServer is a manually curated database for protein toxins derived from spider venom.(http://www.arachnoserver.org/).

We also crawled other seven entries of protein toxicity recorded by Arachnoserver—molecular target, taxon, ED50, LD50, PD50, qualitative information, protein sequence from Arachnoserver. The term, Molecular target, is the effect site of toxin peptides, such as voltage-gated ion channels, GABA receptors and so on. Taxon, ED50, LD50, PD50, and the qualitative information are the toxicity against taxon that had been tested by experiments. The protein sequence from two databases is entirely the same.

We utilized BeautifulSoup 4.4.0, sqlite3 and gevent modules in Python 3.5 to develop our crawler. Moreover, we have submitted the code to GitHub.
(Link:https://github.com/chengchingwen/iGEM/blob/master/crawler.py)

IV. Step 2: Filter

After crawling the data, we used DB Browser for SQLite software to browse and used SQL to process our Pantide database. We tried to build a filter to find out peptides suitable to use as Pantide.

According to the previous articles, we knew that around 90% of spider venom toxin peptides contain ICK structure which is the most important domain that reacts with the voltage-gated ion channels of insects and some other receptors specifically. [2]

Therefore, to find these spider venom toxin peptides from Pantide database, we could start from searching for ICK structure, whose mass is among 1-10 kDa containing at least three disulfide bonds. [2] So we set a filter with three conditions.

  • The organism we choose must be spiders or tarantulas.
  • The length of the a.a. sequences are between 27 and 271 base pairs (1 kDa of protein has averagely nine amino acids, encoded by 27 base pairs)
  • The number of disulfide bonds is greater or equal to 3. After filtering with the three conditions, 113 peptides remained. Next, we set another filter to find out insecticidal peptides.
  • Molecular target contains “invertebrate,” but we also remain peptides without data.
          The reason why we keep the peptides without data was that they have the probability to be effective. In this stage, we got 63 candidates.
  • For efficacy experiment of Pantide, we choose our testee-Spodoptera litura as target insect. While there are 14 kinds of distinct Taxon in our database, including 4 Lepidoptera genus. Thus, we also set the other filter to find out peptides against Lepidoptera:

  • Taxon contains at least one of Spodoptera litura, Heliothis virescens, Manduca sexta and Spodoptera exigua, but we also remain peptides without data
          On the other hand, because we designed to produce Pantide by E.coli, that is difficult to express proteins containing disulfide bonds. We had chosen E.coli Rosetta-gami strain for enhanced disulfide bond formation, but to express a protein with more than four disulfide bonds is still a heavy load. So we finally filtered out those peptides containing too much disulfide bonds.
  • The number of disulfide bonds is less than or equal to four.
          The result was that we got 46 peptides which have the possibility to use as Pantide in proof concept experiment, and all of them is targeted to insects’ voltage-gated ion channels (excluding NULL).

V. Step 3: Selection

In this step, we tried to find three peptides that have different molecular target or mechanism from filtering result to do the test experiment. The method we used was to classify the remained peptides into groups by their structure similarity.

We used online analytic tools on NCBI to process those peptides.

We started with using Protein BLAST (Basic Local Alignment Search Tool) to search from the whole protein database for the similar query protein sequences related to all the 46 peptides and put those related peptides into groups.

The next was using COBALT (Constraint-based Multiple Alignment Tool) to align the sequence between groups to find out whether or not the two groups have the similar structure while they were not got together on the last step because of side chains and other factors. At last, we separated 46 peptides into four groups, containing 27, 12, 3, 2 peptides, and two alone.

Then we chose the three larger groups and used Conserved Domains Search, and found out that they belonged to the three conserved protein domain family. There are Omega-toxin Superfamily (cl05707), Toxin_28 Superfamily (cl06928) and Toxin_20 Superfamily (cl06915). The strings in brackets are unique ID of superfamilies in the conserved protein domain family database. Finally, we selected the representative peptides from each superfamily and got these three peptides, ω-hexatoxin-Hv1a, μ-segestritoxin-Sf1a and Orally active insecticidal peptide (OAIP).

VI. Future

To promote the applicability of Pantide, we still need to extend our database. The next step is to integrate with other toxin peptide databases, such as scorpions or cone snails, collect more peptides’ information from research results, and even combine with bioinformatics to build a new scoring system, and search for new potential peptides.

Reference

[1] King, G.F.; Gentz, M.C.; Escoubas, P.; Nicholson, G.M. A rational nomenclature for naming peptide toxins from spiders and other venomous animals. Toxicon 2008, 52, 264–276.

[2] Monique J. Windley, Volker Herzig, Sławomir A. Dziemborowicz, Margaret C. Hardy, Glenn F. King and Graham M. Nicholson (2012). Spider-Venom Peptides as Bioinsecticides. Toxins, 4, 191-227.