Releases: VirtualFlyBrain/neo4j2owl
Releases · VirtualFlyBrain/neo4j2owl
Another test release
Dont use
Brittle pre-release for testing
- Drop the attached jar file into the plugin directory of your local, empty instance of Neo4j 3.2+
- Add the following to your neo4j.conf:
dbms.security.procedures.unrestricted=ebi.spot.neo4j2owl.*
- Run the instance, open a cypher console and run the following commands right after one another. The first query loads a small test ontology from the web. The second query exports that same ontology back as an owl file.
CALL ebi.spot.neo4j2owl.owl2Import('https://raw.githubusercontent.com/matentzn/ontologies/master/smalltest.owl','n')
CALL ebi.spot.neo4j2owl.exportOWL('/your/favourite/directory/test.owl')
First feature complete draft of OWL2Neo4j procedure
To install:
- Copy neo4j2owl-1.0.jar into the plugins folder of your neo4j database instance (neo4j 3.2.x and higher)
- Add the line
dbms.security.procedures.unrestricted=ebi.spot.neo4j2owl.*
to your neo4j.conf. - Start the database
In order to import a simple test ontology, run the following Cypher Command:
CALL ebi.spot.neo4j2owl.owl2Import('https://raw.githubusercontent.com/matentzn/ontologies/master/smalltest.owl','n')