Mercurial > repos > artbio > diff
view diff.xml @ 0:2c740c70e31c draft default tip
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/diff commit 85abfe596d2cfca07f937832509bce11003fc8fa
| author | artbio |
|---|---|
| date | Wed, 27 Sep 2017 11:06:46 -0400 |
| parents | |
| children |
line wrap: on
line source
<tool id="justdiff" name="Differences between two files" version="0.5.0"> <description></description> <stdio> <exit_code range="1:" level="fatal" description="Tool exception" /> </stdio> <command detect_errors="exit_code"><![CDATA[ diff '${input1}' '${input2}' | cat > '$output' ]]></command> <inputs> <param format="txt" name="input1" type="data" label="first file" help="first file" /> <param format="txt" name="input2" type="data" label="second file" help="second file" /> </inputs> <outputs> <data name="output" format="txt" /> </outputs> <tests> <test> <param name="input1" value="file1.txt" ftype="txt" /> <param name="input2" value="file2.txt" ftype="txt" /> <output name="output" file="diff.txt" ftype="txt"/> </test> </tests> <help> .. class:: infomark **What it does** Just returns the Unix-style **diff** between two files ! </help> </tool>
