comparison fasta_add_barcode.xml @ 0:8b37115e8d6b draft

planemo upload for repository https://github.com/ASaiM/galaxytools/tree/master/tools/fasta_add_barcode commit d28e31b1b4dbcc3c406a4e8a5a41ac4576bf4f43-dirty
author bebatut
date Tue, 02 Feb 2016 11:16:14 -0500
parents
children 0ea7700e08ba
comparison
equal deleted inserted replaced
-1:000000000000 0:8b37115e8d6b
1 <tool id="fasta_add_barcode" name="Add barcodes">
2
3 <description>to FASTA sequences</description>
4
5 <requirements>
6 <requirement type='package' version="1.0">fasta_add_barcode</requirement>
7 </requirements>
8
9 <stdio>
10 </stdio>
11
12 <version_command>python -version</version_command>
13
14 <!--<command>-->
15 <command><![CDATA[
16 python $__tool_directory__/fasta_add_barcode.py
17 --input_sequence_file $sequence_file
18 --input_mapping_file $mapping_file
19 --output_sequence_file $output_sequence_file
20 ]]>
21 </command>
22
23 <inputs>
24 <param name="sequence_file" type="data" format="fasta" label="Sequence
25 zfile" help=""/>
26 <param name="mapping_file" type="data" format="tabular"
27 label="Mapping file between sequence identifier and barcode to add"
28 help="The mapping file must be a tabular delimited file with
29 two columns. The first column contains sequence identifier and
30 the second column corresponding barcode to add at the beginning
31 of each sequence."/>
32 </inputs>
33
34 <outputs>
35 <data format="fasta" name="output_sequence_file" metadata_source="sequence_file"
36 label="Sequences with added barcodes from ${on_string}" />
37 </outputs>
38
39 <tests>
40 <test>
41 <param name="sequence_file" value="input_sequence_file"/>
42 <param name="mapping_file" value="mapping_file"/>
43 <param name="output_sequence_file" value="output_sequence_file" />
44 </test>
45 </tests>
46
47 <help><![CDATA[
48
49 **What it does**
50
51 This tool takes a FASTA file and add at the beginning of each sequence a barcode.
52 The barcode of each sequence is determined given sequence identifier and the mapping
53 file.
54
55 ]]>
56 </help>
57
58 <citations>
59 </citations>
60 </tool>
61