comparison fastq_paired_end_joiner.xml @ 3:6a7f5da7c76d draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 117bc9911926e06d4541daffbb7b0e27d38d67a7
author devteam
date Wed, 16 Dec 2015 14:30:33 -0500
parents 41ab1243e8f9
children 080a058abf1e
comparison
equal deleted inserted replaced
2:41ab1243e8f9 3:6a7f5da7c76d
1 <tool id="fastq_paired_end_joiner" name="FASTQ joiner" version="2.0.0"> 1 <tool id="fastq_paired_end_joiner" name="FASTQ joiner" version="2.0.1">
2 <description>on paired end reads</description> 2 <description>on paired end reads</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement> 4 <requirement type="package" version="1.0.1">galaxy_sequence_utils</requirement>
5 </requirements> 5 </requirements>
6 <command interpreter="python">fastq_paired_end_joiner.py '$input1_file' '${input1_file.extension[len( 'fastq' ):]}' '$input2_file' '${input2_file.extension[len( 'fastq' ):]}' '$output_file' '$style'</command> 6 <command interpreter="python">fastq_paired_end_joiner.py '$input1_file' '${input1_file.extension[len( 'fastq' ):]}' '$input2_file' '${input2_file.extension[len( 'fastq' ):]}' '$output_file' '$style' '${paste_sequence}'</command>
7 <inputs> 7 <inputs>
8 <param name="input1_file" type="data" format="fastqsanger,fastqcssanger" label="Left-hand Reads" /> 8 <param name="input1_file" type="data" format="fastqsanger,fastqcssanger" label="Left-hand Reads" />
9 <param name="input2_file" type="data" format="fastqsanger,fastqcssanger" label="Right-hand Reads" /> 9 <param name="input2_file" type="data" format="fastqsanger,fastqcssanger" label="Right-hand Reads" />
10 <param name="style" type="select" label="FASTQ Header Style"> 10 <param name="style" type="select" label="FASTQ Header Style">
11 <option value="old" selected="true">old</option> 11 <option value="old" selected="true">old</option>
12 <option value="new">new</option> 12 <option value="new">new</option>
13 </param> 13 </param>
14 <param name="paste_sequence" type="text" label="Bases to insert between joined reads" value="" help="Values are in Base-space and quality scores of maximal value will be used"/>
14 </inputs> 15 </inputs>
15 <outputs> 16 <outputs>
16 <data name="output_file" format="input" /> 17 <data name="output_file" format="input" />
17 </outputs> 18 </outputs>
18 <tests> 19 <tests>