comparison tabular_to_fastq.xml @ 0:b334cd1095ea draft

Imported from capsule None
author devteam
date Mon, 27 Jan 2014 09:27:43 -0500
parents
children 92034dcbb40a
comparison
equal deleted inserted replaced
-1:000000000000 0:b334cd1095ea
1 <tool id="tabular_to_fastq" name="Tabular to FASTQ" version="1.0.0">
2 <description>converter</description>
3 <requirements>
4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement>
5 </requirements>
6 <command interpreter="python">tabular_to_fastq.py '$input_file' '$output_file' '$identifier' '$sequence' '$quality'</command>
7 <inputs>
8 <param name="input_file" type="data" format="tabular" label="Tabular file to convert" />
9 <param name="identifier" label="Identifier column" type="data_column" data_ref="input_file" />
10 <param name="sequence" label="Sequence column" type="data_column" data_ref="input_file" />
11 <param name="quality" label="Quality column" type="data_column" data_ref="input_file" />
12 </inputs>
13 <outputs>
14 <data name="output_file" format="fastq" />
15 </outputs>
16 <tests>
17 <!-- basic test -->
18 <test>
19 <param name="input_file" value="fastq_to_tabular_out_1.tabular" ftype="tabular" />
20 <param name="identifier" value="1" />
21 <param name="sequence" value="2" />
22 <param name="quality" value="3" />
23 <output name="output_file" file="sanger_full_range_original_sanger.fastqsanger" />
24 </test>
25 <!-- color space test -->
26 <test>
27 <param name="input_file" value="fastq_to_tabular_out_2.tabular" ftype="tabular" />
28 <param name="identifier" value="1" />
29 <param name="sequence" value="2" />
30 <param name="quality" value="3" />
31 <output name="output_file" file="sanger_full_range_as_cssanger.fastqcssanger" />
32 </test>
33 </tests>
34 <help>
35 **What it does**
36
37 This tool attempts to convert a tabular file containing sequencing read data to a FASTQ formatted file. The FASTQ Groomer tool should always be used on the output of this tool.
38
39 ------
40
41 **Citation**
42
43 If you use this tool, please cite `Blankenberg D, Gordon A, Von Kuster G, Coraor N, Taylor J, Nekrutenko A; Galaxy Team. Manipulation of FASTQ data with Galaxy. Bioinformatics. 2010 Jul 15;26(14):1783-5. &lt;http://www.ncbi.nlm.nih.gov/pubmed/20562416&gt;`_
44
45
46 </help>
47 </tool>