annotate vcf2tsv.xml @ 2:fc3c4fc09e28

Updated tool version to 0.0.2
author Anton Nekrutenko <anton@bx.psu.edu>
date Wed, 25 Jun 2014 16:32:41 -0400
parents 1258fa7a2744
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
fc3c4fc09e28 Updated tool version to 0.0.2
Anton Nekrutenko <anton@bx.psu.edu>
parents: 1
diff changeset
1 <tool id="vcf2tsv" name="VCFtoTab-delimited:" version="0.0.2">
0
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
2 <requirements>
1
1258fa7a2744 Updated to vcflib 86723982aa
Anton Nekrutenko <anton@bx.psu.edu>
parents: 0
diff changeset
3 <requirement type="package" version="86723982aa">vcflib</requirement>
0
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
4 </requirements>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
5 <description>Convert VCF data into TAB-delimited format</description>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
6 <command>vcf2tsv ${g_option} -n "${null_filler}" "${input}" > "${out_file1}"</command>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
7 <inputs>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
8 <param format="vcf" name="input" type="data" label="Select VCF dataset to convert"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
9 <param name="g_option" type="boolean" checked="true" truevalue="-g" falsevalue="" label="Report data per sample" help="-g option"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
10 <param name="null_filler" type="select" label="Fill empty fields with" help="-n option" >
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
11 <option value="">Nothing</option>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
12 <option value=".">.</option>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
13 <option value="*">*</option>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
14 <option value="NULL">NULL</option>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
15 </param>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
16 </inputs>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
17 <outputs>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
18 <data format="tabular" name="out_file1" />
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
19 </outputs>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
20 <tests>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
21 <test>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
22 <param name="g_option" value="true"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
23 <param name="null_filler" value="."/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
24 <param name="input" value="vcflib.vcf"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
25 <output name="out_file1" file="vcf2tsv-test1.tab"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
26 </test>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
27 <test>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
28 <param name="g_option" value="false"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
29 <param name="null_filler" value="."/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
30 <param name="input" value="vcflib.vcf"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
31 <output name="out_file1" file="vcf2tsv-test2.tab"/>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
32 </test>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
33 </tests>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
34 <help>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
35
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
36 Converts stdin or given VCF file to tab-delimited format, using null string to replace empty values in the table.
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
37 Specifying "**Report data per sample**" (-g) will output one line per sample with genotype information.
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
38
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
39 ----
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
40
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
41 Vcf2Tsv is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib).
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
42
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
43 </help>
8e1a693e7a52 Imported from capsule None
anton
parents:
diff changeset
44 </tool>