comparison pindel2vcf.xml @ 0:f8f8dbf89999 draft default tip

planemo upload for repository https://github.com/portiahollyoak/Tools commit 1f1c277219ca756c9baa453592b455597fd593d8-dirty
author portiahollyoak
date Tue, 17 May 2016 05:02:35 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f8f8dbf89999
1 <tool id="pindel2vcf" name="Pindel2Vcf" version="0.6.3">
2 <description>convert Pindel to VCF and index</description>
3 <requirements>
4 <requirement type="package" version="0.2.5b8">pindel</requirement>
5 <requirement type="package" version="0.2.3.48">igvtools</requirement>
6 </requirements>
7 <stdio>
8 <exit_code range="1:"/>
9 </stdio>
10 <command><![CDATA[
11 pindel2vcf
12 -p "$input_file"
13 -r "$reference"
14 -R "$official_reference_name"
15 -d 00000000
16 -v "$input_file".vcf &&
17 mv "$input_file".vcf "$vcf_file"
18 ]]></command>
19 <inputs>
20 <param name="input_file" type="data" format="txt" label="File to be converted"/>
21 <param name="reference" format="fasta" type="data" label="Reference genome in fasta format"/>
22 <param name="official_reference_name" type="text" label="Official Name for Reference Genome"/>
23 </inputs>
24 <outputs>
25 <data name="vcf_file" type="tabular" format="vcf" label="${input_file.name}.vcf"/>
26 </outputs>
27 <tests>
28 <test>
29 <param name="input_file" value="X_Hum1_D" ftype="txt"/>
30 <param name="reference" value="dm6.fa" ftype="fasta"/>
31 <param name="official_reference_name" value="dmel_r6.10_FB2016_02" ftype="text"/>
32 <output name="vcf_file" file="X_Hum1_D.vcf" ftype="vcf"/>
33 </test>
34 </tests>
35 <help>
36 This tool converts Pindel output files to VCF format.
37 The following inputs are required:
38 - File(s) to be converted
39 - Reference genome in fasta format
40 - Official Name for Reference genome
41 - Date the reference genome was created
42 </help>
43 <citations>
44 <citation type="doi">doi:10.1093/bioinformatics/btp394</citation>
45 </citations>
46 </tool>