comparison diff.xml @ 1:294d9452c0d4 draft default tip

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff commit 97f29bbbd0f37d148e653bfcabe3efce1718c37e
author artbio
date Mon, 11 Dec 2023 00:01:55 +0000
parents 9299a59defda
children
comparison
equal deleted inserted replaced
0:9299a59defda 1:294d9452c0d4
1 <tool id="justdiff" name="Differences between two files" version="0.6.0"> 1 <tool id="justdiff" name="Differences between two files" version="3.10+galaxy0">
2 <description></description> 2 <description></description>
3 <requirements>
4 <requirement type="package" version="3.10">diffutils</requirement>
5 </requirements>
6
7
3 <stdio> 8 <stdio>
4 <exit_code range="1:" level="fatal" description="Tool exception" /> 9 <exit_code range="1:" level="fatal" description="Tool exception" />
5 </stdio> 10 </stdio>
6 <command detect_errors="exit_code"><![CDATA[ 11 <command detect_errors="exit_code"><![CDATA[
7 diff '${input1}' '${input2}' | cat > '$output' 12 diff --side-by-side --suppress-common-lines '${input1}' '${input2}' | cat > '$output'
8 ]]></command> 13 ]]></command>
9 <inputs> 14 <inputs>
10 <param format="txt" name="input1" type="data" label="first file" help="first file" /> 15 <param format="txt" name="input1" type="data" label="first file" help="first file" />
11 <param format="txt" name="input2" type="data" label="second file" help="second file" /> 16 <param format="txt" name="input2" type="data" label="second file" help="second file" />
12 </inputs> 17 </inputs>
24 29
25 .. class:: infomark 30 .. class:: infomark
26 31
27 **What it does** 32 **What it does**
28 33
29 Just returns the Unix-style **diff** between two files ! 34 Just returns the Unix-style **diff** between two files,
35 using options --side-by-side and --suppress-common-lines, to make easier difference search.
30 </help> 36 </help>
31 </tool> 37 </tool>
32 38