0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
2 <tool id="FuzzyDiff" name="FuzzyDiff" version="1.12.0">
|
|
3 <description>Compares two files, tolerating numeric differences.</description>
|
|
4 <macros>
|
|
5 <token name="@EXECUTABLE@">FuzzyDiff</token>
|
|
6 <import>macros.xml</import>
|
|
7 </macros>
|
|
8 <expand macro="stdio"/>
|
|
9 <expand macro="requirements"/>
|
|
10 <command>FuzzyDiff
|
|
11
|
|
12 -in1 ${param_in1}
|
|
13 -in2 ${param_in2}
|
|
14 -ratio ${param_ratio}
|
|
15 -absdiff ${param_absdiff}
|
|
16 -verbose ${param_verbose}
|
|
17 -tab_width ${param_tab_width}
|
|
18 -first_column ${param_first_column}
|
|
19 -threads \${GALAXY_SLOTS:-24}
|
|
20 #if $adv_opts.adv_opts_selector=='advanced':
|
|
21 -whitelist ${adv_opts.param_whitelist}
|
|
22 #end if
|
|
23 </command>
|
|
24 <inputs>
|
|
25 <param name="param_in1" type="data" format="data" label="first input file" help="(-in1)"/>
|
|
26 <param name="param_in2" type="data" format="data" label="second input file" help="(-in2)"/>
|
|
27 <param name="param_ratio" type="float" min="1.0" optional="True" value="1.0" label="acceptable relative error. Only one of 'ratio' or 'absdiff' has to be satisfied. Use "absdiff" to deal with cases like "zero vs. epsilon"." help="(-ratio)"/>
|
|
28 <param name="param_absdiff" type="float" min="0.0" optional="True" value="0.0" label="acceptable absolute difference. Only one of 'ratio' or 'absdiff' has to be satisfied. " help="(-absdiff)"/>
|
|
29 <param name="param_verbose" type="integer" min="0" max="3" optional="True" value="2" label="set verbose level:#br#0 = very quiet mode (absolutely no output)#br#1 = quiet mode (no output unless differences detected)#br#2 = default (include summary at end)#br#3 = continue after errors#br#" help="(-verbose)"/>
|
|
30 <param name="param_tab_width" type="integer" min="1" optional="True" value="8" label="tabulator width, used for calculation of column numbers" help="(-tab_width)"/>
|
|
31 <param name="param_first_column" type="integer" min="0" optional="True" value="1" label="number of first column, used for calculation of column numbers" help="(-first_column)"/>
|
|
32 <expand macro="advanced_options">
|
|
33 <param name="param_whitelist" type="text" size="20" value="<?xml-stylesheet" label="Lines containing one of these strings are skipped" help="(-whitelist)"/>
|
|
34 </expand>
|
|
35 </inputs>
|
|
36 <outputs/>
|
|
37 <help>**What it does**
|
|
38
|
|
39 Compares two files, tolerating numeric differences.
|
|
40
|
|
41
|
|
42 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/UTILS_FuzzyDiff.html
|
|
43
|
|
44 @REFERENCES@
|
|
45 </help>
|
|
46 </tool>
|