OntologyDBWiki/DeveloperDocumentation/GettingStarted: Difference between revisions
imported>KaiRunte No edit summary |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
== DB Access == | == DB Access == | ||
All OntoDB projects are backed by the projectmanagement system [[ | All OntoDB projects are backed by the projectmanagement system [[GPMSWiki| GPMS]]. | ||
To be able to work with OntoDB you need an account. | To be able to work with OntoDB you need an account. | ||
If you are a developer | If you are a developer | ||
send an email to: [[MailTo( | send an email to: [[MailTo(ontodb AT cebitec DOT uni DASH bielefeld DOT de)]] to get a | ||
developer account. | developer account. | ||
Line 26: | Line 26: | ||
* projectmanagement | * projectmanagement | ||
* common | * common | ||
* O2DBI | |||
After having checked out everything, you should run the script | |||
<pre><nowiki> | |||
CVS/bioinfo/ontodb/bin/create_o2dbi_code.sh | |||
</nowiki></pre> | |||
This generates all the O2DBI classes from the configuration file <code><nowiki>CVS/bioinfo/ontodb/src/dbschema/OntoDB.xml</nowiki></code>. Please do '''not''' check this code into CVS unless you add some object methods to one of the classes. Generated code does not need to be in CVS as the configuration file is already in CVS. | |||
== API Documentation == | == API Documentation == | ||
The API documentation of OntoDB is not checked in as this causes more | The API documentation of OntoDB is not checked in as this causes more trouble then it's worth. To generate your own copy of the API documentation, simply run the script | ||
trouble then it's worth. To generate your own copy of the API | |||
documentation, simply run the script | |||
<pre><nowiki> | <pre><nowiki> | ||
CVS/bioinfo/ontodb/bin/create_html_doc.sh | CVS/bioinfo/ontodb/bin/create_html_doc.sh | ||
</nowiki></pre> | </nowiki></pre> | ||
== Useful Documentation/Links == | == Useful Documentation/Links == |
Latest revision as of 14:28, 28 October 2011
Getting Started
This HowTo explains briefly how to get started with developing code for OntoDB project.
DB Access
All OntoDB projects are backed by the projectmanagement system GPMS. To be able to work with OntoDB you need an account.
If you are a developer send an email to: MailTo(ontodb AT cebitec DOT uni DASH bielefeld DOT de) to get a developer account.
CVS
- create a working direktory for CVS in your home named 'CVS'
- cd to that directory and get the projects needed to run OntoDB:
cvs checkout bioinfo/<name of project>
You need to checkout the following projects:
- ontodb
- projectmanagement
- common
- O2DBI
After having checked out everything, you should run the script
CVS/bioinfo/ontodb/bin/create_o2dbi_code.sh
This generates all the O2DBI classes from the configuration file CVS/bioinfo/ontodb/src/dbschema/OntoDB.xml
. Please do not check this code into CVS unless you add some object methods to one of the classes. Generated code does not need to be in CVS as the configuration file is already in CVS.
API Documentation
The API documentation of OntoDB is not checked in as this causes more trouble then it's worth. To generate your own copy of the API documentation, simply run the script
CVS/bioinfo/ontodb/bin/create_html_doc.sh