comparison filter_vcf.xml @ 6:74f595df6e51 draft

Uploaded
author ulfschaefer
date Thu, 16 Jun 2016 06:39:51 -0400
parents cb29f95c7b88
children e252b0b9dd99
comparison
equal deleted inserted replaced
5:e2ee6acf8752 6:74f595df6e51
17 </stdio> 17 </stdio>
18 <command interpreter="bash"> 18 <command interpreter="bash">
19 filter_vcf.sh 19 filter_vcf.sh
20 $output 20 $output
21 $input 21 $input
22 $ref_fa
22 #if str($onlygood) == "false": 23 #if str($onlygood) == "false":
23 onlygood 24 onlygood
24 #else 25 #else
25 NOTTHERE 26 NOTTHERE
26 #end if 27 #end if
33 #end for 34 #end for
34 </command> 35 </command>
35 36
36 <inputs> 37 <inputs>
37 <param name="input" type="data" format="vcf" label="VCF File to filter" /> 38 <param name="input" type="data" format="vcf" label="VCF File to filter" />
39
40 <param name="ref_fa" type="data" format="fasta" label="Reference genome fasta file" help="REQUIRED."/>
38 41
39 <repeat name="snp_filter" title="SNP Filter" help=""> 42 <repeat name="snp_filter" title="SNP Filter" help="">
40 <conditional name="snp_filter_type"> 43 <conditional name="snp_filter_type">
41 <param name="snp_filter_type_selector" type="select" label="SNP Filter Type"> 44 <param name="snp_filter_type_selector" type="select" label="SNP Filter Type">
42 <option value="gq_score_option">GQ score</option> 45 <option value="gq_score_option">GQ score</option>
106 109
107 \-\-filters FILTERS, -f FILTERS Filter(s) to apply as key:threshold pairs, separated by comma. 110 \-\-filters FILTERS, -f FILTERS Filter(s) to apply as key:threshold pairs, separated by comma.
108 111
109 \-\-output OUTPUT, -o OUTPUT Location for filtered VCF to be written. 112 \-\-output OUTPUT, -o OUTPUT Location for filtered VCF to be written.
110 113
114 \-\-reference REFERENCE, -r REFERENCE mpileup versions 1.3 and before do not output all positions. This is required to fix reference base in VCF.
115
116 \-\-only-good Write only variants that PASS all filters (default all variants are written).
117
111 </help> 118 </help>
112 </tool> 119 </tool>