comparison ensemble_vcf.xml @ 0:d2e300747919 draft

Uploaded
author morinlab
date Wed, 30 Nov 2016 19:11:43 -0500
parents
children d66e2e4aa2f2
comparison
equal deleted inserted replaced
-1:000000000000 0:d2e300747919
1 <tool id="ensemble_vcf" name="ensemble_vcf" version="0.1.1">
2
3 <description>
4 integrates VCF files from different SNV detection methods for ensemble calling.
5 </description>
6
7 <requirements>
8 <requirement type="package" version="0.1.1">morinkit</requirement>
9 </requirements>
10
11 <command detect_errors="aggressive">
12 <![CDATA[
13
14 morinkit ensemble_vcf
15
16 --output $output_vcf
17
18 --min_support $min_support
19
20 #if $sorted:
21 --sorted
22 #end if
23
24 ${" ".join(map(str, $input_vcfs))}
25
26 ]]>
27 </command>
28
29 <inputs>
30 <param name="input_vcfs" type="data" format="vcf" multiple="true" label="Input VCF Files"/>
31 <param name="min_support" size="4" type="float" value="0.5" label="Minimum number of supporting methods.
32 If less than 1, considered as minimum fraction of methods." />
33 <param name="sorted" type="boolean" label="Are the input VCF files sorted?" />
34 </inputs>
35
36 <outputs>
37 <data name="output_vcf" format="vcf" label="Ensemble VCF File" />
38 </outputs>
39
40 <help>
41 This tool integrates the VCF files generated by different SNV detection methods
42 in order to perform ensemble SNV calling.
43 </help>
44
45 </tool>