Line 283: | Line 283: | ||
<div class="three columns header-col"> | <div class="three columns header-col"> | ||
<h1><span style=" | <h1><span style=" | ||
− | + | color: orange; | |
− | + | font-size: 25px; | |
− | ">introduce</span></h1> | + | ">introduce</span></h1> |
</div> | </div> | ||
<div class="nine columns main-col"> | <div class="nine columns main-col"> | ||
<div class="row item"> | <div class="row item"> | ||
<div class="twelve columns"> | <div class="twelve columns"> | ||
− | <h3 style=" | + | <h3 style="font-size: 45px;">Aim</h3> |
− | + | ||
− | ">Aim</h3> | + | |
<p class="info">Build Coding Book</p> | <p class="info">Build Coding Book</p> | ||
− | <p style=" | + | <p style="font-size: 26px!important;"> |
− | + | ||
− | "> | + | |
In English text, each letter has a certain frequency. We constructed a list of letter frequencies for each letter. Also, in living organisms, each codon is used with a certain frequency. Based on this relationship between English letters and codons, we find out the correspondence between letters and codons by using DFS (Depth First Search) algorithm and optimization arithmetic. | In English text, each letter has a certain frequency. We constructed a list of letter frequencies for each letter. Also, in living organisms, each codon is used with a certain frequency. Based on this relationship between English letters and codons, we find out the correspondence between letters and codons by using DFS (Depth First Search) algorithm and optimization arithmetic. | ||
</p> | </p> | ||
Line 305: | Line 301: | ||
<h3>Programming</h3> | <h3>Programming</h3> | ||
<br> | <br> | ||
− | <p style=" | + | <p style="font-size: 26px!important;"> |
− | + | ||
− | "> | + | |
<strong>1. Create a letter-frequency table and a codon-frequency table.</strong><br> | <strong>1. Create a letter-frequency table and a codon-frequency table.</strong><br> | ||
According to the literature, we obtain the information of the frequency of letters and codons. | According to the literature, we obtain the information of the frequency of letters and codons. | ||
Line 313: | Line 307: | ||
<strong>2. Find out the correspondence between letters and codons by using DFS Algorithm.</strong><br> | <strong>2. Find out the correspondence between letters and codons by using DFS Algorithm.</strong><br> | ||
We build up a tree structure where the codons and the frequency of the codons are stored on each node. Then we use the depth-first search algorithm to traverse down from the root node successively, and match condon-frequence with the letter- frequency to obtain the correspondence between letters and codons. | We build up a tree structure where the codons and the frequency of the codons are stored on each node. Then we use the depth-first search algorithm to traverse down from the root node successively, and match condon-frequence with the letter- frequency to obtain the correspondence between letters and codons. | ||
− | <br><br> | + | <br><br> |
The tree structure is shown in the figure 1.<br> | The tree structure is shown in the figure 1.<br> | ||
<div align="center"> | <div align="center"> | ||
− | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/b/bd/T--NEFU_China--software1-tree.png"><br> | + | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/b/bd/T--NEFU_China--software1-tree.png"><br> |
− | </div> | + | </div> |
Figure 1. Tree Structute. | Figure 1. Tree Structute. | ||
<br><br> | <br><br> | ||
− | <p style=" | + | <p style="font-size: 26px!important;"> |
− | + | <strong>3. Get the optimal solution by using optional algorithm.</strong></p> | |
− | "> | + | |
− | + | ||
In step 2, we get the correspondence between letters and codons. But some letters have multiple corresponding relationships. For example, in figure 1, the letters E and T correspond to codons GAU, GCU, GAA, E and T also correspond to codons GAU, GCU, AUG. What’s more, the letter T can also correspond to codons GAU, GCU, GCA. Therefore, we use the optimal algorithm to determine one of the multiple correspondence. <br> | In step 2, we get the correspondence between letters and codons. But some letters have multiple corresponding relationships. For example, in figure 1, the letters E and T correspond to codons GAU, GCU, GAA, E and T also correspond to codons GAU, GCU, AUG. What’s more, the letter T can also correspond to codons GAU, GCU, GCA. Therefore, we use the optimal algorithm to determine one of the multiple correspondence. <br> | ||
<!-- | <!-- | ||
Line 370: | Line 362: | ||
<div class="three columns header-col"> | <div class="three columns header-col"> | ||
<h1><span style=" | <h1><span style=" | ||
− | + | color: orange; | |
− | + | font-size: 25px; | |
− | ">RESULTS</span></h1> | + | ">RESULTS</span></h1> |
</div> | </div> | ||
<div class="nine columns main-col"> | <div class="nine columns main-col"> | ||
Line 379: | Line 371: | ||
<h3>Print the correspondence between letters and codons</h3> | <h3>Print the correspondence between letters and codons</h3> | ||
<p style=" | <p style=" | ||
− | + | padding-top: 20px; | |
− | + | font-size: 26px!important; | |
− | "> | + | "> |
Output:<br> | Output:<br> | ||
− | + | <br> | |
− | + | <img src="https://static.igem.org/mediawiki/2018/2/25/T--NEFU_China--codebook_table.png"> | |
− | + | </p> | |
</div> | </div> | ||
</div> | </div> | ||
Line 407: | Line 399: | ||
<div class="three columns header-col"> | <div class="three columns header-col"> | ||
<h1><span style=" | <h1><span style=" | ||
− | + | color: orange; | |
− | + | font-size: 25px; | |
− | ">Others</span></h1> | + | ">Others</span></h1> |
</div> | </div> | ||
<div class="nine columns main-col" style=" | <div class="nine columns main-col" style=" | ||
− | + | font-size: 26px!important; | |
− | "> | + | "> |
<div class="row item"> | <div class="row item"> | ||
<div class="twelve columns"> | <div class="twelve columns"> | ||
Line 419: | Line 411: | ||
<p style=" | <p style=" | ||
− | + | font-size: 26px!important; | |
− | "> | + | "> |
We developed a visual software. There are an input textbox, an output textbox, two radio buttons and a translate button in the software interface. We can choose radio buttons to select letters to codons or codons to letters. In addition to these, our software can also provide open files, copy files, cut files, save files, print files and other basic functions.<br> | We developed a visual software. There are an input textbox, an output textbox, two radio buttons and a translate button in the software interface. We can choose radio buttons to select letters to codons or codons to letters. In addition to these, our software can also provide open files, copy files, cut files, save files, print files and other basic functions.<br> | ||
Software interface:<br> | Software interface:<br> | ||
<br> | <br> | ||
− | <div align="center"> | + | <div align="center"> |
− | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/5/5c/T--NEFU_China--software-v1.png"><br> | + | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/5/5c/T--NEFU_China--software-v1.png"><br> |
− | </div> | + | </div> |
− | <br> | + | <br> |
Letters to Codons:<br> | Letters to Codons:<br> | ||
<div align="center"> | <div align="center"> | ||
− | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/3/35/T--NEFU_China--software-v2.png"> | + | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/3/35/T--NEFU_China--software-v2.png"> |
− | </div><br> | + | </div><br> |
Codons to letters:<br> | Codons to letters:<br> | ||
<div align="center"> | <div align="center"> | ||
− | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/8/8d/T--NEFU_China--software-v3.png"> | + | <img style="width:750px;" src="https://static.igem.org/mediawiki/2018/8/8d/T--NEFU_China--software-v3.png"> |
− | + | </div> | |
</p> | </p> | ||
</div> | </div> |
Revision as of 12:53, 9 November 2018
introduce
Aim
Build Coding Book
In English text, each letter has a certain frequency. We constructed a list of letter frequencies for each letter. Also, in living organisms, each codon is used with a certain frequency. Based on this relationship between English letters and codons, we find out the correspondence between letters and codons by using DFS (Depth First Search) algorithm and optimization arithmetic.
Programming
1. Create a letter-frequency table and a codon-frequency table.
According to the literature, we obtain the information of the frequency of letters and codons.
2. Find out the correspondence between letters and codons by using DFS Algorithm.
We build up a tree structure where the codons and the frequency of the codons are stored on each node. Then we use the depth-first search algorithm to traverse down from the root node successively, and match condon-frequence with the letter- frequency to obtain the correspondence between letters and codons.
The tree structure is shown in the figure 1.
3. Get the optimal solution by using optional algorithm.
In step 2, we get the correspondence between letters and codons. But some letters have multiple corresponding relationships. For example, in figure 1, the letters E and T correspond to codons GAU, GCU, GAA, E and T also correspond to codons GAU, GCU, AUG. What’s more, the letter T can also correspond to codons GAU, GCU, GCA. Therefore, we use the optimal algorithm to determine one of the multiple correspondence.RESULTS
Print the correspondence between letters and codons
Output:
Draw letter-frequency histogram
Others
Visual Software
We developed a visual software. There are an input textbox, an output textbox, two radio buttons and a translate button in the software interface. We can choose radio buttons to select letters to codons or codons to letters. In addition to these, our software can also provide open files, copy files, cut files, save files, print files and other basic functions.
Software interface:
Letters to Codons:
Codons to letters: