Difference between revisions of "Team:Tongji-Software/Model"

Line 76: Line 76:
 
   left:10%;
 
   left:10%;
 
   background-color: #ffb6bc;
 
   background-color: #ffb6bc;
   width: 16%;
+
   width: 14%;
 
   height: 100%;
 
   height: 100%;
 
   padding-right:-20px;
 
   padding-right:-20px;

Revision as of 08:15, 5 October 2018

Model
Overview
We will introduce how we use knowledge of mathematics and algorithms to implement function of Alpha Ant in details in this section. It consists of three parts, Pathway Search Algorithm, Pathway Ranking Methods and Additional functions.
Pathway Search Algorithm: Depth-first search
Seeking for biosynthesis pathways from the starting material to the product is a typical search problem. We abstracted the original biosynthesis pathway search problem and turned it into a directed graph search problem.
First we built a directed graph that models the transformation of metabolites where its vertices represent metabolites and its edges represent chemical transformations via reactions.
Pathway Ranking Criteria
Additional function algorithm