Team:USTC Software/Database
From 2009.igem.org
m (Team:USTC Software/External Links moved to Team:USTC Software/Database: redirection) |
|||
Line 9: | Line 9: | ||
|} | |} | ||
+ | {|- | ||
+ | | | ||
+ | | | ||
==Basic Description== | ==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 '''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== | ==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 /> | + | 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 /> | 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 /> | 3.Sort reactions by reaction type, reactant/product’s type or number;<br /> | ||
Line 68: | Line 71: | ||
3.Limited forms of reaction types;<br /> | 3.Limited forms of reaction types;<br /> | ||
4.If ordered itself, the database will be capable to offer higher searching efficiency;<br /> | 4.If ordered itself, the database will be capable to offer higher searching efficiency;<br /> | ||
+ | |||
+ | | | ||
+ | [[Image:ITinCP_database_ustcsw.png|right|300px|Independent test in console application]] | ||
+ | [[Image:keneticlaw.png|right|300px|The abbreviated form of kenetic laws describing the reaction system.]] |
Revision as of 20:03, 13 October 2009
Home | Team and People | Project | Resource | Schedule | 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 kenetic law.pdf here; 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 }; VisualizationInstructions1.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; |