comparison vcf2tsv.xml @ 1:2826332c3153 draft default tip

Uploaded
author anton
date Tue, 10 Jun 2014 10:45:59 -0400
parents 8045bf0acb6e
children
comparison
equal deleted inserted replaced
0:8045bf0acb6e 1:2826332c3153
1 <tool id="vcf2tsv" name="VCF2TSV:" version="0.0.1"> 1 <tool id="vcf2tsv" name="VCFtoTab-delimited:" version="0.0.1">
2 <requirements> 2 <requirements>
3 <requirement type="package" version="586c5ae5d57a38dae6b32ea831fb1f7cfa14c9bd">vcflib</requirement> 3 <requirement type="package" version="586c5ae5d57a38dae6b32ea831fb1f7cfa14c9bd">vcflib</requirement>
4 </requirements> 4 </requirements>
5 <description>Convert VCF data into TAB-delimited format</description> 5 <description>Convert VCF data into TAB-delimited format</description>
6 <command>vcf2tsv ${g_option} -n "${null_filler}" "${input}" > "${out_file1}"</command> 6 <command>vcf2tsv ${g_option} -n "${null_filler}" "${input}" > "${out_file1}"</command>
7 <inputs> 7 <inputs>
8 <param name="g_option" type="boolean" checked="true" truevalue="-g" falsevalue="" label="Report data per sample"/> 8 <param format="vcf" name="input" type="data" label="Select VCF dataset to convert"/>
9 <param name="null_filler" type="select" label="Fill empty fiels with" > 9 <param name="g_option" type="boolean" checked="true" truevalue="-g" falsevalue="" label="Report data per sample" help="-g option"/>
10 <param name="null_filler" type="select" label="Fill empty fields with" help="-n option" >
10 <option value="">Nothing</option> 11 <option value="">Nothing</option>
11 <option value=".">.</option> 12 <option value=".">.</option>
12 <option value="*">*</option> 13 <option value="*">*</option>
13 <option value="NULL">NULL</option> 14 <option value="NULL">NULL</option>
14 </param> 15 </param>
15 <param format="vcf" name="input" type="data" label="From"/>
16 </inputs> 16 </inputs>
17 <outputs> 17 <outputs>
18 <data format="tabular" name="out_file1" /> 18 <data format="tabular" name="out_file1" />
19 </outputs> 19 </outputs>
20 <tests> 20 <tests>
32 </test> 32 </test>
33 </tests> 33 </tests>
34 <help> 34 <help>
35 35
36 Converts stdin or given VCF file to tab-delimited format, using null string to replace empty values in the table. 36 Converts stdin or given VCF file to tab-delimited format, using null string to replace empty values in the table.
37 Specifying -g will output one line per sample with genotype information. 37 Specifying "**Report data per sample**" (-g) will output one line per sample with genotype information.
38
39 ----
40
41 Vcf2Tsv is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib).
38 42
39 </help> 43 </help>
40 </tool> 44 </tool>