forked from ucscCancer/tcgavcf-tool
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvcf-filter.xml
34 lines (27 loc) · 877 Bytes
/
vcf-filter.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
<tool id="vcf-filter" name="VCF Filter" version="0.1">
<description></description>
<requirements>
<container type="docker">tcgavcf-tool:0.1</container>
</requirements>
<command interpreter="python">
vcf-filter.py ${input_vcf} ${filter} ${output_vcf}
#if $filterRejects:
--filter
#end if
</command>
<inputs>
<param type="data" format="vcf" name="input_vcf" label="Input VCF"/>
<param type="text" area="True" size="5x25" name="filter_text" label="Allowed Sequences"/>
<param name="filterRejects" type="boolean" label="Filter Rejected calls" checked="true"/>
</inputs>
<outputs>
<data format="vcf" name="output_vcf" />
</outputs>
<configfiles>
<configfile name="filter"><![CDATA[${filter_text}]]></configfile>
</configfiles>
<help>
</help>
<tests>
</tests>
</tool>