comparison concat_text_files.xml @ 0:8bf77d768a2b draft default tip

Uploaded
author mandorodriguez
date Mon, 28 Sep 2015 13:31:30 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8bf77d768a2b
1 <tool id="concat_text_files" name="Concat text files" version="1.0.0">
2 <description>Concatenates any text based files you select from your history</description>
3 <command>
4 cat #for $q in $input_files# $q #end for# > $out_file1
5 </command>
6 <inputs>
7 <param name="input_files" type="data" multiple="true" optional="false" format="txt" label="Input text files(s)" help="One or more FASTA files" />
8 </inputs>
9 <outputs>
10 <data name="out_file1" format="txt" metadata_source="input_files"/>
11 </outputs>
12 <tests>
13 </tests>
14 <help>
15
16 .. class:: infomark
17
18 Just concatenates all the files selected from the given list
19
20 ------
21
22 .. class:: infomark
23
24 **Tool Author**
25
26 Mando Rodriguez
27 </help>
28 </tool>
29
30
31