Skip to content

Commit

Permalink
Include RuleML in command line
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuhn committed Aug 2, 2012
1 parent 25d5124 commit 9eb9816
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -47,8 +47,8 @@ directory of APE (where `ape.exe` is located). Then type `ape.exe` in the case o
-ulextext "TEXT" The user lexicon (taken from a string).
-ulexfile FILENAME The user lexicon (taken from a file or URL).
-solo OUTPUT Output just one output component. OUTPUT has to be one of {paraphrase,
paraphrase1,paraphrase2,owlfss,owlfsspp,owlrdf,owlxml,fol,pnf,tptp,tokens,
syntax,syntaxpp,syntaxd,syntaxdpp,drs,drsxml,drspp,drshtml}.
paraphrase1,paraphrase2,owlfss,owlfsspp,owlrdf,owlxml,ruleml,fol,pnf,tptp,
tokens,syntax,syntaxpp,syntaxd,syntaxdpp,drs,drsxml,drspp,drshtml}.
-cdrs Output the DRS as a Prolog term.
-cdrsxml Output the DRS in XML.
-cdrspp Output the DRS in pretty-printed form in plain text.
Expand All @@ -69,6 +69,7 @@ directory of APE (where `ape.exe` is located). Then type `ape.exe` in the case o
printed).
-cowlxml Output OWL/SWRL in the XML representation.
-cowlrdf Output OWL/SWRL in the RDF/XML representation. DEPRECATED
-cruleml Output RuleML representation of the DRS.
-cfol Output standard first-order logic representations (default form) of the DRS
as a Prolog term.
-cpnf Output standard first-order logic representations (prenex normal form) of
Expand Down
3 changes: 2 additions & 1 deletion ape.pl
Expand Up @@ -75,7 +75,7 @@
argument('-file', 'FILENAME', 'The name or URL of the input file containing the ACE text.').
argument('-ulextext', '"TEXT"', 'The user lexicon (taken from a string).').
argument('-ulexfile', 'FILENAME', 'The user lexicon (taken from a file or URL).').
argument('-solo', 'OUTPUT', 'Output just one output component. OUTPUT has to be one of {paraphrase,paraphrase1,paraphrase2,owlfss,owlfsspp,owlrdf,owlxml,fol,pnf,tptp,tokens,syntax,syntaxpp,syntaxd,syntaxdpp,drs,drsxml,drspp,drshtml}.').
argument('-solo', 'OUTPUT', 'Output just one output component. OUTPUT has to be one of {paraphrase,paraphrase1,paraphrase2,owlfss,owlfsspp,owlrdf,owlxml,ruleml,fol,pnf,tptp,tokens,syntax,syntaxpp,syntaxd,syntaxdpp,drs,drsxml,drspp,drshtml}.').
argument('-cinput', '', hidden).
argument('-cdrs', '', 'Output the DRS as a Prolog term.').
argument('-cdrsxml', '', 'Output the DRS in XML.').
Expand All @@ -94,6 +94,7 @@
argument('-cowlfsspp', '', 'Output OWL/SWRL in the Functional-Style Syntax representation (pretty-printed).').
argument('-cowlxml', '', 'Output OWL/SWRL in the XML representation.').
argument('-cowlrdf', '', 'Output OWL/SWRL in the RDF/XML representation. DEPRECATED').
argument('-cruleml', '', 'Output RuleML representation of the DRS.').
argument('-cfol', '', 'Output standard first-order logic representations (default form) of the DRS as a Prolog term.').
argument('-cpnf', '', 'Output standard first-order logic representations (prenex normal form) of the DRS as a Prolog term.').
argument('-ctptp', '', 'Output TPTP representation of the DRS.').
Expand Down

0 comments on commit 9eb9816

Please sign in to comment.