Mercurial > repos > iuc > gatk2
comparison variant_apply_recalibration.xml @ 11:0d369d08ad6e draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk2 commit 344140b8df53b8b7024618bb04594607a045c03a
author | iuc |
---|---|
date | Mon, 04 May 2015 22:47:06 -0400 |
parents | b80301676614 |
children | 669a23f1f4b5 |
comparison
equal
deleted
inserted
replaced
10:5db8d6815cf3 | 11:0d369d08ad6e |
---|---|
1 <tool id="gatk2_variant_apply_recalibration" name="Apply Variant Recalibration" version="@VERSION@.0"> | 1 <tool id="gatk2_variant_apply_recalibration" name="Apply Variant Recalibration" version="@VERSION@.0"> |
2 <description></description> | 2 <description></description> |
3 <expand macro="requirements" /> | |
4 <expand macro="version_command" /> | |
5 <macros> | 3 <macros> |
6 <import>gatk2_macros.xml</import> | 4 <import>gatk2_macros.xml</import> |
7 </macros> | 5 </macros> |
6 <expand macro="requirements" /> | |
7 <expand macro="version_command" /> | |
8 <command interpreter="python"> | 8 <command interpreter="python"> |
9 gatk2_wrapper.py | 9 gatk2_wrapper.py |
10 --stdout "${output_log}" | 10 --stdout "${output_log}" |
11 #for $var_count, $variant in enumerate( $reference_source.variants ): | 11 #for $var_count, $variant in enumerate( $reference_source.variants ): |
12 -d "--input:input_${var_count},%(file_type)s" "${variant.input_variants}" "${variant.input_variants.ext}" "input_variants_${var_count}" | 12 -d "--input:input_${var_count},%(file_type)s" "${variant.input_variants}" "${variant.input_variants.ext}" "input_variants_${var_count}" |
23 #end if | 23 #end if |
24 --recal_file "${reference_source.input_recal}" | 24 --recal_file "${reference_source.input_recal}" |
25 --tranches_file "${reference_source.input_tranches}" | 25 --tranches_file "${reference_source.input_tranches}" |
26 --out "${output_variants}" | 26 --out "${output_variants}" |
27 ' | 27 ' |
28 | 28 |
29 #include source=$standard_gatk_options# | 29 #include source=$standard_gatk_options# |
30 | 30 |
31 ##start analysis specific options | 31 ##start analysis specific options |
32 -p ' | 32 -p ' |
33 --mode "${mode}" | 33 --mode "${mode}" |
34 | 34 |
35 #for $ignore_filter in $ignore_filters: | 35 #for $ignore_filter in $ignore_filters: |
36 #set $ignore_filter_name = str( $ignore_filter.ignore_filter_type.ignore_filter_type_selector ) | 36 #set $ignore_filter_name = str( $ignore_filter.ignore_filter_type.ignore_filter_type_selector ) |
37 #if $ignore_filter_name == "custom": | 37 #if $ignore_filter_name == "custom": |
38 #set $ignore_filter_name = str( $ignore_filter.ignore_filter_type.filter_name ) | 38 #set $ignore_filter_name = str( $ignore_filter.ignore_filter_type.filter_name ) |
39 #end if | 39 #end if |
65 <param name="input_recal" type="data" format="gatk_recal" label="Variant Recalibration file" help="-recalFile,--recal_file &lt;recal_file&gt;" /> | 65 <param name="input_recal" type="data" format="gatk_recal" label="Variant Recalibration file" help="-recalFile,--recal_file &lt;recal_file&gt;" /> |
66 <param name="input_tranches" type="data" format="gatk_tranche" label="Variant Tranches file" help="-tranchesFile,--tranches_file &lt;tranches_file&gt;" /> | 66 <param name="input_tranches" type="data" format="gatk_tranche" label="Variant Tranches file" help="-tranchesFile,--tranches_file &lt;tranches_file&gt;" /> |
67 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> | 67 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> |
68 </when> | 68 </when> |
69 </conditional> | 69 </conditional> |
70 | 70 |
71 <expand macro="gatk_param_type_conditional" /> | 71 <expand macro="gatk_param_type_conditional" /> |
72 | 72 |
73 <param name="mode" type="select" label="Recalibration mode" help="-mode,--mode &lt;mode&gt;"> | 73 <param name="mode" type="select" label="Recalibration mode" help="-mode,--mode &lt;mode&gt;"> |
74 <option value="SNP" selected="True">SNP</option> | 74 <option value="SNP" selected="True">SNP</option> |
75 <option value="INDEL">INDEL</option> | 75 <option value="INDEL">INDEL</option> |
76 <option value="BOTH">BOTH</option> | 76 <option value="BOTH">BOTH</option> |
77 </param> | 77 </param> |