A command-line client with the only purpose - to test parser of the
Biomoby XML data. It takes an XML file, parses it and prints all its
component as hierarchical strings.

Usage:
   run-moby-parser -h[elp]
   run-moby-parser [<options>] <filename>
or
   set CLASSPATH and
   java TestingMobyParser -h[elp]
   java TestingMobyParser [<options>] <filename>

where <filename>
   is a mandatory argument containing a file name with Biomoby
   XML that should be read and parsed

where <options> are:
   -n    ... it does not print the parsed result
             (by default it does)
   -r    ... it converts back (reverse) the parsed result
             into XML and prints it

   -b <data-type-name>
         ... this is a "backup" data type that is used
             when an unknown XML top-level tag is encountered
             (this is not usually needed at all - only when
              your data type definitions, the generated data
              types, are not up-to-date)

   -<article-name> <data-type-name>...
         ... this is a richer form of "backup" data types,
             indexed by their top-level article names; useful
             for services with more inputs

[Note: You can also use -argsfile <filename> to read arguments from a
file. See details in src/Clients/help/argsfile.example.]
