Mercurial > repos > anton > vcfdistance
annotate vcfdistance.xml @ 1:ff5c6635c9a8
Updated to vcflib 86723982aa
author | Anton Nekrutenko <anton@bx.psu.edu> |
---|---|
date | Wed, 25 Jun 2014 16:14:03 -0400 |
parents | de3bbf60d086 |
children | 2c664ebd4af5 |
rev | line source |
---|---|
0 | 1 <tool id="vcfdistance" name="VCFdistance:" version="0.0.1"> |
2 <requirements> | |
1
ff5c6635c9a8
Updated to vcflib 86723982aa
Anton Nekrutenko <anton@bx.psu.edu>
parents:
0
diff
changeset
|
3 <requirement type="package" version="86723982aa">vcflib</requirement> |
0 | 4 </requirements> |
5 <description>Calculate distance to the nearest variant</description> | |
6 <command>cat "${input1}" | vcfdistance > "${out_file1}"</command> | |
7 <inputs> | |
8 <param format="vcf" name="input1" type="data" label="First dataset"/> | |
9 </inputs> | |
10 <outputs> | |
11 <data format="vcf" name="out_file1" /> | |
12 </outputs> | |
13 <tests> | |
14 <test> | |
15 <param name="input1" value="vcflib.vcf"/> | |
16 <output name="out_file1" file="vcfdistance-test1.vcf"/> | |
17 </test> | |
18 </tests> | |
19 <help> | |
20 | |
21 Adds a value to each VCF record indicating the distance to the nearest variant in the file. | |
22 | |
23 .. class:: infomark | |
24 | |
25 The dataset used as input to this tool must be coordinate sorted. This can be achieved by either using the VCFsort utility or Galaxy's general purpose sort tool (in this case sort on the first and the second column in ascending order). | |
26 | |
27 ---- | |
28 | |
29 Vcfdistance is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib). | |
30 | |
31 </help> | |
32 </tool> |