comparison depth_of_coverage.xml @ 13:669a23f1f4b5 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk2 commit e5a5ad091c621348dc6ce2df861475ebc54a380e
author iuc
date Tue, 13 Oct 2015 17:22:38 -0400
parents 0d369d08ad6e
children
comparison
equal deleted inserted replaced
12:86007c982f00 13:669a23f1f4b5
1 <tool id="gatk2_depth_of_coverage" name="Depth of Coverage" version="@VERSION@.0"> 1 <tool id="gatk2_depth_of_coverage" name="Depth of Coverage" version="@VERSION@.1">
2 <description>on BAM files</description> 2 <description>on BAM files</description>
3 <macros> 3 <macros>
4 <import>gatk2_macros.xml</import> 4 <import>gatk2_macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <expand macro="version_command" /> 7 <expand macro="version_command" />
8 <command interpreter="python">gatk2_wrapper.py 8 <command interpreter="python">gatk2_wrapper.py
9 ##--max_jvm_heap_fraction "1" 9 ##--max_jvm_heap_fraction "1"
10 --stdout "${output_log}" 10 --stdout "${output_log}"
11 #for $i, $input_bam in enumerate( $reference_source.input_bams ): 11 @BAM_INPUTS@
12 -d "-I" "${input_bam.input_bam}" "${input_bam.input_bam.ext}" "gatk_input_${i}"
13 #if str( $input_bam.input_bam.metadata.bam_index ) != "None":
14 -d "" "${input_bam.input_bam.metadata.bam_index}" "bam_index" "gatk_input_${i}" ##hardcode galaxy ext type as bam_index
15 #end if
16 #end for
17 -p ' 12 -p '
18 @JAR_PATH@ 13 @JAR_PATH@
19 -T "DepthOfCoverage" 14 -T "DepthOfCoverage"
20 \$GATK2_SITE_OPTIONS 15 \$GATK2_SITE_OPTIONS
21 16
127 </command> 122 </command>
128 <inputs> 123 <inputs>
129 <conditional name="reference_source"> 124 <conditional name="reference_source">
130 <expand macro="reference_source_selector_param" /> 125 <expand macro="reference_source_selector_param" />
131 <when value="cached"> 126 <when value="cached">
132 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &amp;lt;input_file&amp;gt;"> 127 <expand macro="input_bams_cached" />
133 <param name="input_bam" type="data" format="bam" label="BAM file">
134 <validator type="unspecified_build" />
135 <validator type="dataset_metadata_in_data_table" table_name="gatk2_picard_indexes" metadata_name="dbkey" metadata_column="dbkey" message="Sequences are not currently available for the specified build." /> <!-- fixme!!! this needs to be a select -->
136 </param>
137 </repeat>
138 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &amp;lt;reference_sequence&amp;gt;"> 128 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &amp;lt;reference_sequence&amp;gt;">
139 <options from_data_table="gatk2_picard_indexes"> 129 <options from_data_table="gatk2_picard_indexes">
140 <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...--> 130 <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...-->
141 </options> 131 </options>
142 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> 132 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
143 </param> 133 </param>
144 </when> 134 </when>
145 <when value="history"> <!-- FIX ME!!!! --> 135 <when value="history"> <!-- FIX ME!!!! -->
146 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &amp;lt;input_file&amp;gt;"> 136
147 <param name="input_bam" type="data" format="bam" label="BAM file" /> 137 <expand macro="input_bams_history" />
148 </repeat>
149 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &amp;lt;reference_sequence&amp;gt;" /> 138 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &amp;lt;reference_sequence&amp;gt;" />
150 </when> 139 </when>
151 </conditional> 140 </conditional>
152 141
153 <param name="input_calculate_coverage_over_genes" type="data" format="data" label="RefSeq Rod" optional="True" help="-geneList,--calculateCoverageOverGenes &amp;lt;calculateCoverageOverGenes&amp;gt;" /> 142 <param name="input_calculate_coverage_over_genes" type="data" format="data" label="RefSeq Rod" optional="True" help="-geneList,--calculateCoverageOverGenes &amp;lt;calculateCoverageOverGenes&amp;gt;" />