0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="XMLValidator" name="XMLValidator" version="2.0.0">
|
|
3 <description>Validates XML files against an XSD schema.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">XMLValidator</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>XMLValidator
|
|
11
|
|
12 #if $param_in:
|
|
13 -in $param_in
|
|
14 #end if
|
|
15 #if $param_schema:
|
|
16 -schema $param_schema
|
|
17 #end if
|
|
18 -threads \${GALAXY_SLOTS:-24}
|
|
19 #if $adv_opts.adv_opts_selector=='advanced':
|
|
20 #if $adv_opts.param_force:
|
|
21 -force
|
|
22 #end if
|
|
23 #end if
|
|
24 > $param_stdout
|
|
25 </command>
|
|
26 <inputs>
|
|
27 <param name="param_in" type="data" format="xml,featurexml,mzml,mzxml,traml,idxml,pepxml,txt,consensusxml" optional="False" label="file to validate" help="(-in) "/>
|
|
28 <param name="param_schema" type="data" format="txt" optional="True" label="schema to validate against" help="(-schema) <br>If no schema is given, the file is validated against the latest schema of the file type"/>
|
|
29 <expand macro="advanced_options">
|
|
30 <param name="param_force" type="boolean" truevalue="-force" falsevalue="" checked="false" optional="True" label="Overwrite tool specific checks" help="(-force) "/>
|
|
31 </expand>
|
|
32 </inputs>
|
|
33 <outputs>
|
|
34 <data name="param_stdout" format="text" label="Output from stdout"/>
|
|
35 </outputs>
|
|
36 <help>**What it does**
|
|
37
|
|
38 Validates XML files against an XSD schema.
|
|
39
|
|
40
|
|
41 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_XMLValidator.html</help>
|
|
42 <expand macro="references"/>
|
|
43 </tool>
|