Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 852 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 852 Bytes

owlconvert

A very simple OWL format converter based on OWLAPI.

I wanted a local tool to handle format conversion similar to the online converter at cs.Manchester, but couldn’t find anything handy, ready made. Before this hack, I knew close to zero java, so please be lenient!

Usage

  $ owlconvert  manchester|functional|turtle|rdfxml  <owl infile>

sends to standard out.

Installation

To compile, place in the same dir as owlapi-bin.jar

  $ javac -classpath owlapi-bin.jar owlconvert.java

Run with (replacing with correct paths):

  $ java -classpath "owlapi-bin.jar:." owlconvert

Make a shell script or alias to run from anywhere:

  $ alias owlconvert 'java -classpath "$OWLAPI:$OWLCONVERTPATH" owlconvert'