Team:USTC Software/hoWDatabase
From 2009.igem.org
About | Team and People | Project | Standard | Notebook | Demo | Safety | External Links |
---|
|
Basic DescriptionThe 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 Functions1.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; Abstract and approximation1.All bio-chemical reactions on the genetic level are characterized in a finite set of reaction types, specifically as listed in the following figure; 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); Data Structure and Organizationstruct 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 }; VisualizationInstructions{
1.Input the tolerance of deviation of stored reactions from idea identified parameters in percentage (temporarily confined to 0% to 1000%); Outputsdbt0.dat, dbt1.dat …, dbt9.dat: all reactions contained in best ten models Defects1.Not ready for repeated searches at one traverse of the original database; |
|