-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgatk4_gathervcfs.xml
52 lines (36 loc) · 1.41 KB
/
gatk4_gathervcfs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<tool id="gatk4_gathervcfs" name="GATK4 GatherVcfs (Picard)" version="@WRAPPER_VERSION@0" profile="17.09">
<description>- Gathers multiple VCF files from a scatter operation into a single VCF file</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="requirements"/>
<expand macro="version_cmd"/>
<command detect_errors="exit_code"><![CDATA[
#include source=$vcf_tabix#
@CMD_BEGIN@ GatherVcfs
#include source=$picard_opts#
#include source=$picard_vcf_output_opts#
#include source=$vcf_input#
#include source=$picard_ref_opts#
]]></command>
<inputs>
<expand macro="picard_vcf_params" />
<param name="input" argument="--INPUT" type="data" optional="false" format="vcf,vcf_bgzip" label="Input" help="Input VCF file(s)." />
<section name="optional" title="Optional Parameters" expanded="False">
<expand macro="ref_sel" />
</section>
<expand macro="picard_params" />
</inputs>
<outputs>
<expand macro="picard_vcf_output_params" />
<expand macro="picard_output_params" />
</outputs>
<tests>
</tests>
<help><![CDATA[
Simple little class that combines multiple VCFs that have exactly the
same set of samples and totally discrete sets of loci.
]]></help>
<expand macro="citations"/>
</tool>