May
25
Bioclipse 2.6.2 with recent hacks #3: using functionality from the OWLAPI
Update: if you had problems installing this feature, please try again. Two annoying issues have been fixed now.
Third in this series is this post about the Bioclipse plugin I wrote for the OWLAPI library. This manager I wrote to learn how the OWLAPI is working. The OWLAPI feature is available from the same update site as the Linked Data Fragments, so you can just follow the steps outlined here (if you had not already).
Using the manager
The manager has various methods, for example, for loading an OWL ontology:
ontology = owlapi.load(
"/eNanoMapper/enanomapper.owl", null
);
If your ontology imports other ontologies, you may need to tell the OWLAPI first where to find those, by defining mappings.
Third in this series is this post about the Bioclipse plugin I wrote for the OWLAPI library. This manager I wrote to learn how the OWLAPI is working. The OWLAPI feature is available from the same update site as the Linked Data Fragments, so you can just follow the steps outlined here (if you had not already).
Using the manager
The manager has various methods, for example, for loading an OWL ontology:
ontology = owlapi.load(
"/eNanoMapper/enanomapper.owl", null
);
If your ontology imports other ontologies, you may need to tell the OWLAPI first where to find those, by defining mappings.