Team:USTC Software/Database

From 2009.igem.org

(Difference between revisions)
(New page: __NOTOC__ {| style="color:#1b2c7a;background-color:#ccf;" <!---cellpadding="3" cellspacing="1" border="1" bordercolor="#fef"---> width="100%" align="center" !align="center"|[[Team:USTC_Sof...)
 
(7 intermediate revisions not shown)
Line 1: Line 1:
-
__NOTOC__
+
<font size = "3">'''Links'''</font>
-
{| style="color:#1b2c7a;background-color:#ccf;" <!---cellpadding="3" cellspacing="1" border="1" bordercolor="#fef"---> width="100%" align="center"
+
----
-
!align="center"|[[Team:USTC_Software|Home]]
+
{|-
-
!align="center"|[[Team:USTC_Software/Team|Team and People]]
+
|align = "left"|
-
!align="center"|[[Team:USTC_Software/Project|Project]]
+
*[[Team:USTC|USTC Team Wiki]]
-
!align="center"|[[Team:USTC_Software/Group Meetings|Resource]]
+
*[http://biotech.ustc.edu.cn/forum/forumdisplay.php?fid=26 External Team Forum]
-
!align="center"|[[Team:USTC_Software/Notebook|Schedule]]
+
*[http://igem.ustc.edu.cn/ External Team Wiki]
-
!align="center"|[[Team:USTC_Software/External Links|External Links]]
+
*[http://spreadsheets.google.com/pub?key=plR27rERjfUK_lAs01fg5YA Summary of iGEM Teams]
 +
*[http://en.ustc.edu.cn/about.php About USTC]
|}
|}
-
 
-
==Basic Description==
 
-
 
-
The Database part is designated to build up the bridge combining the abstract parameters yielded by the System Identification process and the concrete needs from users via SBML. Therefore, corresponding to its transitive role here, the inputs and outputs of this part is similarity characterized.
 
-
 
-
==The Functions==
 
-
 
-
1.Filter all matching reactions from the database via matching suitable parameters of all terms of the ODE array, provided by preceding GA and PSO part;<br />
 
-
2.Yield a complete list of substances contained in these reactions;<br />
 
-
3.Sort reactions by reaction type, reactant/product’s type or number;<br />
 
-
4.Make it possible for users to expand the database in directed form.<br />
 
-
 
-
==Abstract and approximation==
 
-
 
-
1.All bio-chemical reactions on the genetic level are characterized in a finite set of reaction types, specifically as listed in kenetic law.pdf here;<br />
 
-
2.Each term of the ODE can be mapped to part of a prototype of reactions (including all info from reactants and partial info from products);<br />
 
-
3.Space-independent and Compartment-independent.<br />
 
-
 
-
==Data Structure and Organization==
 
-
<pre>
 
-
struct reactor{
 
-
int rnum;//number of reactants
 
-
char **ract;//names of reactants
 
-
};
 
-
 
-
struct product{
 
-
int pnum;//number of products
 
-
char **prdt;//names of products
 
-
};
 
-
 
-
struct reaction{
 
-
int num;//reaction number
 
-
struct reactor RACT;//info of reactants
 
-
struct product PRDT;//info of products
 
-
int type;//reaction type as listed in keneticlaw.pdf
 
-
double *para;//all parameters
 
-
char note[MAXLEN];//self-defined notes
 
-
};
 
-
</pre>
 
-
==Visualization==
 
-
 
-
[[Image:database_ustcsw.png|center|800px|The organization of data structure and storage form.]]<br />
 
-
 
-
==Instructions==
 
-
 
-
1.Input the tolerance of deviation of stored reactions from idea identified parameters in percentage (temporarily confined to 0% to 1000%);<br />
 
-
2.How many results counting down from the top of the list do you want to see? Input an integer no bigger than 10;<br />
 
-
3.Or you may tell the substances’ name you want to include just in string form less than 50 bytes.<br />
 
-
 
-
==Outputs==
 
-
 
-
'''dbt0.dat, dbt1.dat …, dbt9.dat''': all reactions contained in best ten models <br />
 
-
'''sub0.dat, sub1.dat …, sub9.dat''': all related substances respectively related in the ten sets of reaction<br />
 
-
 
-
==Defects==
 
-
 
-
1.Not ready for repeated searches at one traverse of the original database;<br />
 
-
2.Better performs if parameters could be interchanged though RAM/ROM;<br />
 
-
3.Limited forms of reaction types;<br />
 
-
4.If ordered itself, the database will be capable to offer higher searching efficiency;<br />
 

Latest revision as of 17:20, 19 October 2009

Links


  • USTC Team Wiki
  • [http://biotech.ustc.edu.cn/forum/forumdisplay.php?fid=26 External Team Forum]
  • [http://igem.ustc.edu.cn/ External Team Wiki]
  • [http://spreadsheets.google.com/pub?key=plR27rERjfUK_lAs01fg5YA Summary of iGEM Teams]
  • [http://en.ustc.edu.cn/about.php About USTC]