├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CITATION.bib ├── LICENSE ├── README.md ├── cypher ├── constraints.cql ├── createClass.cql ├── createRelationship.cql ├── graphHierarchyProblem.cql ├── indexes.cql └── setProperty.cql ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── owl2neo4j_wrapper.sh ├── src └── main │ └── java │ └── org │ └── refinery_platform │ └── owl2neo4j │ ├── Owl2Neo4J.java │ └── log4j.properties └── test └── java └── org └── refinery-platform └── owl2graph └── Owl2GraphTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/CITATION.bib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/README.md -------------------------------------------------------------------------------- /cypher/constraints.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/cypher/constraints.cql -------------------------------------------------------------------------------- /cypher/createClass.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/cypher/createClass.cql -------------------------------------------------------------------------------- /cypher/createRelationship.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/cypher/createRelationship.cql -------------------------------------------------------------------------------- /cypher/graphHierarchyProblem.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/cypher/graphHierarchyProblem.cql -------------------------------------------------------------------------------- /cypher/indexes.cql: -------------------------------------------------------------------------------- 1 | // For faster lookup by name. 2 | 3 | CREATE INDEX ON :Class(name); 4 | -------------------------------------------------------------------------------- /cypher/setProperty.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/cypher/setProperty.cql -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/gradlew.bat -------------------------------------------------------------------------------- /owl2neo4j_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/owl2neo4j_wrapper.sh -------------------------------------------------------------------------------- /src/main/java/org/refinery_platform/owl2neo4j/Owl2Neo4J.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/src/main/java/org/refinery_platform/owl2neo4j/Owl2Neo4J.java -------------------------------------------------------------------------------- /src/main/java/org/refinery_platform/owl2neo4j/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flekschas/owl2neo4j/HEAD/src/main/java/org/refinery_platform/owl2neo4j/log4j.properties -------------------------------------------------------------------------------- /test/java/org/refinery-platform/owl2graph/Owl2GraphTest.java: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------