Skip to content

Releases: VirtualFlyBrain/neo4j2owl

Another test release

29 Jun 10:11
Compare
Choose a tag to compare
Another test release Pre-release
Pre-release

Dont use

Brittle pre-release for testing

13 Mar 17:35
Compare
Choose a tag to compare
Pre-release
  1. Drop the attached jar file into the plugin directory of your local, empty instance of Neo4j 3.2+
  2. Add the following to your neo4j.conf: dbms.security.procedures.unrestricted=ebi.spot.neo4j2owl.*
  3. 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

02 Mar 14:46
705ef66
Compare
Choose a tag to compare

To install:

  1. Copy neo4j2owl-1.0.jar into the plugins folder of your neo4j database instance (neo4j 3.2.x and higher)
  2. Add the line dbms.security.procedures.unrestricted=ebi.spot.neo4j2owl.* to your neo4j.conf.
  3. 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')