The SBOL-OWL ontology provides a set of controlled terms that are used to describe genetic circuit designs using SBOL. Terms are included for the followings.
- Descriptions of SBOL entities (e.g. "ComponentDefinition") that are exchanged electronically. Constraints and validation rules that are enforced on SBOL entities are also captured as part of the ontology.
- SBOL entities (e.g. "TopLevel" that are not serialised but are used to group different SBOL entities. SBOL-OWL exposes these entities to semantic reasoning tools via parent-child relationships.
- Terms (e.g. "inline") that are used to restrict values of SBOL entities.
- Properties (e.g. "sequence") linking SBOL entities to accepted values.
- Metadata terms (e.g. "Promoter") for commonly used descriptions of design entities. Such terms may require the use of several SBOL entities and properties.
Browse the SBOL-OWL terms via an HTML page.
SBOL-OWL is available in different formats.
SBOL-OWL can be combined with any SBOL document to query genetic circuit designs using semantic queries. The semanticSBOL Java application has been developed to facilitate this process. The resulting files can then be submitted to existing reasoners for semantic inferencing. The library also includes methods to check the consistency of SBOL files, to execute semantic queries, and to list inconsistencies programmatically.
usage: sbolowl_file sboldesign_file merged_file
- sbolowl_file: The RDF version of the SBOL-OWL ontology
- sboldesign_file: An SBOL file including genetic circuit designs
- merged_file: The output file name
Example using the command line:
java -cp semanticSBOL-1.0-SNAPSHOT-jar-with-dependencies.jar dissys.keele.ac.uk.RDFMerger sbol.rdf mapsto.rdf mapsto_sbolowl_consistent.rdf
Example using the programmatic access:
RDFMerger.combine("../examples/circuit_0x78_environment_md.xml","../sbol-owl/sbol.rdf", "../examples/circuit_0x78_environment_md_sbolowl.rdf");
Click here to access other examples.
Constructing a SemanticSBOL object:
SemanticSBOL semanticSBOL = new SemanticSBOL(sbolFile_with_SBOLOWL);
Checking the consistency of SBOL files:
semanticSBOL.isConsistent()
Adding a semantic query:
semanticSBOL.addClass("BsubtilisPromoter", "BsubtilisPromoter EquivalentTo: Promoter and isMemberOf value igem:chassis_prokaryote_bsubtilis");
Adding custom namespace declarations for semantic queries:
HashMap<String, String> namespaces = new HashMap<String, String>();
namespaces.put("igem", "https://synbiohub.org/public/igem/");
SemanticSBOL semanticSBOL = new SemanticSBOL(ontFileUpdated, namespaces);
Adding subclass definitions:
semanticSBOL.addSubClassing("BsubtilisPromoter", "ComponentDefinition");
Defining semantic queries with no shared SBOL entities:
semanticSBOL.makeDisjoint("BsubtilisPromoter", "EcoliPromoter");
Listing SBOL entities for a semantic query:
semanticSBOL.listSBOLEntities("BsubtilisPromoterContainer");
Describing inconsistencies:
semanticSBOL.printInconsistencies();
- Click here to download the standalone semanticSBOL Java library as a single file including all the dependencies.
- Click here to download the semanticSBOL Java library only. Dependencies are not included.