annotate diff.xml @ 4:10ef1bf99074 draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
author bgruening
date Mon, 09 Dec 2024 14:36:40 +0000
parents 156d0908e232
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
1 <tool id="diff" name="diff" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@" profile="23.0">
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
2 <description>analyzes two files and generates an unidiff text file with information about the differences and an optional Html report</description>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
3 <macros>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
4 <token name="@TOOL_VERSION@">3.10</token>
3
156d0908e232 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 978d7977e5f59f99e3d20a0df70f31ce577d0372"
bgruening
parents: 2
diff changeset
5 <token name="@GALAXY_VERSION@">0</token>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
6 </macros>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
7 <requirements>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">diffutils</requirement>
3
156d0908e232 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 978d7977e5f59f99e3d20a0df70f31ce577d0372"
bgruening
parents: 2
diff changeset
9 <requirement type="package" version="4.8">sed</requirement>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
10 </requirements>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
11 <stdio>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
12 <exit_code range="2:" level="fatal" description="Something went wrong trying to check differences in files. Please check output log for more details."/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
13 <regex match="diff: memory exhausted" source="stdout" level="fatal_oom" description="Out of memory error occurred"/>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
14 </stdio>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
15 <command><![CDATA[
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
16 diff
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
17 #if $report_format.report_format_select == 'txt_lines' or $report_format.report_format_select == 'html'
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
18 ## the -u option is needed to convert the output later to HTML
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
19 --unified=$report_format.unified
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
20 #else if $report_format.report_format_select == 'txt_columns'
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
21 -y
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
22 #end if
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
23 ## If the compared input files differ the diff command returns exit-code 1
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
24 '$input1' '$input2' > '$diff_file' || [ \$? -eq 1 ];
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
25 #if $report_format.report_format_select == 'html'
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
26 sed -e 's/@@title@@/Diff report for "$input1.element_identifier" and "$input2.element_identifier"/g'
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
27 -e 's/@@outputformat@@/'$report_format.output_format'/g'
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
28 -e '/@@diffoutput@@/{r'$diff_file'' -e ';d}'
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
29 '$__tool_directory__/template.html' > '$html_file'
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
30 #end if
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
31 ]]>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
32 </command>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
33 <inputs>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
34 <param name="input1" type="data" format="txt" label="First input file"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
35 <param name="input2" type="data" format="txt" label="Second input file"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
36 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
37 <param name="report_format_select" type="select" label="Choose a report format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
38 <option value="txt_lines">Text file, line-by-line (-u)</option>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
39 <option value="txt_columns">Text file, side-by-side (-y)</option>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
40 <option value="html">Generates an HTML report to visualize the differences</option>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
41 </param>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
42 <when value="txt_lines">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
43 <param argument="--unified" type="integer" min="0" value="3" label="Output this amount of lines of unified context"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
44 </when>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
45 <when value="txt_columns"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
46 <when value="html">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
47 <param argument="--unified" type="integer" min="0" value="3" label="Output this amount of lines of unified context"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
48 <param name="output_format" type="select" label="Choose report output format" help="Displays the differences in the report using the selected format. Either line by line or side by side.">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
49 <option value="side-by-side">Side by side</option>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
50 <option value="line-by-line">Line by line</option>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
51 </param>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
52 </when>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
53 </conditional>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
54 </inputs>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
55 <outputs>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
56 <data format="txt" name="diff_file" from_work_dir="output.txt" label="${tool.name} on ${on_string}: Raw Output"/>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
57 <data format="html" name="html_file" from_work_dir="output.html" label="${tool.name} on ${on_string}: Html Report">
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
58 <filter>report_format['report_format_select'] == 'html'</filter>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
59 </data>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
60 </outputs>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
61 <tests>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
62 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="1">
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
63 <param name="input1" value="file1.txt"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
64 <param name="input2" value="file1.txt"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
65 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
66 <param name="report_format_select" value="txt_lines"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
67 </conditional>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
68 <output name="diff_file">
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
69 <assert_contents>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
70 <has_n_lines n="0"/>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
71 </assert_contents>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
72 </output>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
73 </test>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
74 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="1">
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
75 <param name="input1" value="file1.txt"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
76 <param name="input2" value="file2.txt"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
77 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
78 <param name="report_format_select" value="txt_lines"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
79 </conditional>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
80 <output name="diff_file">
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
81 <assert_contents>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
82 <has_n_lines n="5"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
83 <has_line line=" a"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
84 <has_line line="+b"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
85 </assert_contents>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
86 </output>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
87 </test>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
88 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="2">
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
89 <param name="input1" value="file1.txt"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
90 <param name="input2" value="file2.txt"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
91 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
92 <param name="report_format_select" value="html"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
93 </conditional>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
94 <output name="html_file">
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
95 <assert_contents>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
96 <has_text text="!DOCTYPE html"/>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
97 </assert_contents>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
98 </output>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
99 </test>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
100 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="2">
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
101 <param name="input1" value="file1.txt"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
102 <param name="input2" value="file2.txt"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
103 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
104 <param name="report_format_select" value="html"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
105 <param name="output_format" value="side-by-side"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
106 </conditional>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
107 <output name="html_file">
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
108 <assert_contents>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
109 <has_text text="!DOCTYPE html"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
110 <has_text text="side-by-side"/>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
111 </assert_contents>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
112 </output>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
113 </test>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
114 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="2">
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
115 <param name="input1" value="file1.txt"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
116 <param name="input2" value="file2.txt"/>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
117 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
118 <param name="report_format_select" value="html"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
119 <param name="output_format" value="line-by-line"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
120 </conditional>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
121 <output name="html_file">
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
122 <assert_contents>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
123 <has_text text="!DOCTYPE html"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
124 <has_text text="line-by-line"/>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
125 </assert_contents>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
126 </output>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
127 </test>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
128 <test expect_exit_code="0" expect_failure="false" expect_num_outputs="2">
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
129 <param name="input1" value="file3.txt"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
130 <param name="input2" value="file3.txt"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
131 <conditional name="report_format">
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
132 <param name="report_format_select" value="html"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
133 <param name="output_format" value="side-by-side"/>
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
134 </conditional>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
135 <output name="diff_file">
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
136 <assert_contents>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
137 <has_n_lines n="0"/>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
138 </assert_contents>
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
139 </output>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
140 <output name="html_file">
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
141 <assert_contents>
2
95a9dc82fc9a "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 04afacfdfc505fb74219d0e6124afdce61e2ad8f"
bgruening
parents: 1
diff changeset
142 <has_text text="!DOCTYPE html"/>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
143 </assert_contents>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
144 </output>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
145 </test>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
146 </tests>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
147 <help><![CDATA[
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
148 .. class:: infomark
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
149
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
150 **Purpose**
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
151
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
152 The **diff** utility is a data comparison tool that calculates and displays the differences between two files.
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
153
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
154 Unlike edit distance notions used for other purposes, diff is line-oriented rather than character-oriented, but it is like Levenshtein distance in that it tries to determine the smallest set of deletions and insertions to create one file from the other.
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
155
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
156 The diff command displays the changes made in a standard format, such that both humans and machines can understand the changes and apply them: given one file and the changes, the other file can be created.
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
157
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
158 .. class:: infomark
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
159
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
160 **Input**
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
161
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
162 Two text files to be checked for differences line by line.
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
163
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
164 .. class:: infomark
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
165
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
166 **Output**
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
167
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
168 A *text file*, either:
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
169
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
170 - containing the lines differences in **unified format** (*unidiff*),
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
171
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
172 - or an **empty** file if the two input files are the same.
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
173
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
174 An **optional** *HTML report* with a friendlier visual representation of the differences.
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
175 ]]>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
176 </help>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
177 <citations>
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
178 <citation type="bibtex">
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
179 @misc{gnudiffutils,
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
180 author = {The Free Software Foundation (FSF), Inc},
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
181 year = {2017},
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
182 title = {diff (GNU diffutils)},
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
183 publisher = {The Free Software Foundation (FSF), Inc},
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
184 url = {http://www.gnu.org/software/diffutils/},
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
185 }
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
186 </citation>
1
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
187 <citation type="bibtex">
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
188 @misc{diff2html,
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
189 author = {Rodrigo Fernandes},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
190 year = {2014},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
191 title = {Pretty diff to html javascript library (diff2html)},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
192 publisher = {Github},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
193 url = {https://github.com/rtfpessoa/diff2html},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
194 }
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
195 </citation>
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
196 <citation type="bibtex">
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
197 @misc{sed,
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
198 author = {The Free Software Foundation (FSF), Inc},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
199 year = {2017},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
200 title = {sed (GNU sed)},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
201 publisher = {The Free Software Foundation (FSF), Inc},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
202 url = {http://www.gnu.org/software/sed/},
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
203 }
02dfbbf869d8 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit d1ef0f3da4118bf352c5acf720f277fc5ef07665"
bgruening
parents: 0
diff changeset
204 </citation>
0
8a18547725cf "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 9b11cc5751c0931172d00799b246fcbd63660311"
bgruening
parents:
diff changeset
205 </citations>
4
10ef1bf99074 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diff commit 1a6c4a793ef68a43de93316523c1cd9196d80b73
bgruening
parents: 3
diff changeset
206 </tool>