forked from edamontology/edamontology
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Jonathan Karr edited this page Jun 18, 2021
·
2 revisions
-
Install Git
-
Clone this Git repository
git clone https://github.com/biosimulators/edamontology.git
-
Change to the directory for this repository
cd edamontology
-
Enable Git hooks for this repository
chmod +x .githooks/post-commit chmod +x .githooks/pre-commit git config core.hooksPath .githooks
-
Open the
EDAM_dev.owl
file in a text editor -
Add a term for each modeling format before
<!-- http://edamontology.org/operation_0004 -->
(around line 37,000). Following the example below:<!-- http://edamontology.org/format_4019 --> <owl:Class rdf:about="http://edamontology.org/format_4019"> <created_in>1.26</created_in> <rdfs:label>VCML</rdfs:label> <oboInOwl:hasExactSynonym>Virtual Cell Markup Language</oboInOwl:hasExactSynonym> <file_extension>xml</file_extension> <file_extension>vcml</file_extension> <media_type rdf:resource="http://www.iana.org/assignments/media-types/application/vcml+xml"/> <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/edam#edam"/> <oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/edam#formats"/> <oboInOwl:hasDefinition>Format for models developed with the Virtual Cell biomodeling and simulation software suite.</oboInOwl:hasDefinition> <rdfs:subClassOf rdf:resource="http://edamontology.org/format_2332"/> <rdfs:subClassOf rdf:resource="http://edamontology.org/format_2013"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://edamontology.org/is_format_of"/> <owl:someValuesFrom rdf:resource="http://edamontology.org/data_3241"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://edamontology.org/is_format_of"/> <owl:someValuesFrom rdf:resource="http://edamontology.org/data_2600"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="http://edamontology.org/is_format_of"/> <owl:someValuesFrom rdf:resource="http://edamontology.org/data_3869"/> </owl:Restriction> </rdfs:subClassOf> <documentation rdf:resource="https://vcell.org/support"/> <rdfs:seeAlso rdf:resource="https://en.wikipedia.org/wiki/Virtual_Cell"/> <example rdf:resource="https://vcell.org/vcell-published-models"/> <citation rdf:resource="http://doi.org/10.1049/iet-syb_20080102"/> <citation rdf:resource="http://doi.org/10.1093/bioinformatics/btt660"/> <repository rdf:resource="https://github.com/virtualcell/vcell/"/> <information_standard rdf:resource="https://co.mbine.org/standards/miriam"/> <ontology_used rdf:resource="http://www.ebi.ac.uk/sbo/"/> <ontology_used rdf:resource="http://biomodels.net/kisao"/> <organisation rdf:resource="https://health.uconn.edu/cell-analysis-modeling/"/> </owl:Class>
-
Commit changes
git commit -m "Added term for XXX format"
-
Push changes
git push