comparison add_line_to_file.xml @ 0:8e251055b1a9 draft default tip

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file commit 7947999ae57e82acc8e2c8de15248c2d69e59128"
author bgruening
date Sun, 01 Nov 2020 19:07:01 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8e251055b1a9
1 <tool id="add_line_to_file" name="Add line to file" version="0.1.0">
2 <description>writes a line of text at the begining or end of a text file.</description>
3 <requirements>
4 <requirement type="package" version="8.25">coreutils</requirement>
5 </requirements>
6 <command detect_errors="exit_code">
7 <![CDATA[
8 #if $options == 'header':
9 echo '$text_input' >> '$outfile' && cat '$infile' >> '$outfile'
10 #else
11 cat '$infile' >> '$outfile' && echo '$text_input' >> '$outfile'
12 #end if
13 ]]>
14 </command>
15 <inputs>
16 <param name="text_input" type="text" format="txt" label="text to add"/>
17 <param name="infile" type="data" format="txt" label="input file"/>
18 <param name="options" type="select" label="Options">
19 <option value="header" selected="True">header</option>
20 <option value="footer">footer</option>
21 </param>
22 </inputs>
23 <outputs>
24 <data name="outfile" format_source="infile" metadata_source="infile"/>
25 </outputs>
26 <tests>
27 <test>
28 <param name="text_input" value="header"/>
29 <param name="infile" value="add_line.txt"/>
30 <param name="options" value="header"/>
31 <output name="outfile" file="add_line_result1.txt"/>
32 </test>
33 <test>
34 <param name="text_input" value="footer"/>
35 <param name="infile" value="add_line.txt"/>
36 <param name="options" value="footer"/>
37 <output name="outfile" file="add_line_result2.txt"/>
38 </test>
39 </tests>
40 <help>
41 <![CDATA[
42 **What it does**
43
44 This tool adds the input text to the beginning (header) or the end (footer) of the input text file.
45
46 ]]>
47 </help>
48 <citations>
49 </citations>
50 </tool>