INRIA & friends

fr.inrialpes.exmo.align.util
Class Procalign

java.lang.Object
  extended byfr.inrialpes.exmo.align.util.Procalign

public class Procalign
extends java.lang.Object

A basic class for an OWL ontology alignment processing. The processor will parse ontologies, align them and renderings the resulting alignment. Command synopsis is as follows:

    java fr.inrialpes.exmo.align.util.Procalign [options] onto1 onto2 [output]
    
or better
    java -jar procalign.jar onto1 onto2
    
where the options are:
        --alignment=filename -a filename Start from an XML alignment file
        --params=filename -p filename   Read the parameters in file
        --debug[=n] -d [n]              Report debug info at level n,
        --output=filename -o filename Output the alignment in filename
        --impl=className -i classname           Use the given alignment implementation.
        --renderer=className -r className       Specifies the alignment renderer
        --help -h                       Print this message
    
onto1 and onto2 should be URLs. If output is requested (-o flags), then output will be written to output if present, stdout by default.
$Id: Procalign.java 240 2006-05-19 19:17:08Z euzenat $

Author:
Sean K. Bechhofer, Jérôme Euzenat

Field Summary
(package private) static OWLRDFErrorHandler handler
           
(package private) static java.util.Hashtable loadedOntologies
           
 
Constructor Summary
Procalign()
           
 
Method Summary
static OWLOntology loadOntology(java.net.URI uri)
           
static void main(java.lang.String[] args)
           
static Alignment run(java.lang.String[] args)
           
static void usage()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

loadedOntologies

static java.util.Hashtable loadedOntologies

handler

static OWLRDFErrorHandler handler
Constructor Detail

Procalign

public Procalign()
Method Detail

main

public static void main(java.lang.String[] args)

run

public static Alignment run(java.lang.String[] args)
                     throws java.lang.Exception
Throws:
java.lang.Exception

loadOntology

public static OWLOntology loadOntology(java.net.URI uri)
                                throws ParserException,
                                       OWLException
Throws:
ParserException
OWLException

usage

public static void usage()

INRIA & friends

..no bottom yet...