|
6
|
1 <tool id="gatk2_depth_of_coverage" name="Depth of Coverage" version="@VERSION@.0">
|
|
0
|
2 <description>on BAM files</description>
|
|
|
3 <expand macro="requirements" />
|
|
6
|
4 <expand macro="version_command" />
|
|
0
|
5 <macros>
|
|
|
6 <import>gatk2_macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <command interpreter="python">gatk2_wrapper.py
|
|
|
9 ##--max_jvm_heap_fraction "1"
|
|
|
10 --stdout "${output_log}"
|
|
|
11 #for $i, $input_bam in enumerate( $reference_source.input_bams ):
|
|
|
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 '
|
|
|
18 @JAR_PATH@
|
|
|
19 -T "DepthOfCoverage"
|
|
|
20 \$GATK2_SITE_OPTIONS
|
|
|
21
|
|
|
22 @THREADS@
|
|
|
23
|
|
|
24 #if $reference_source.reference_source_selector != "history":
|
|
|
25 -R "${reference_source.ref_file.fields.path}"
|
|
|
26 #end if
|
|
|
27 #if str( $input_calculate_coverage_over_genes ) != "None":
|
|
|
28 --calculateCoverageOverGenes "${input_calculate_coverage_over_genes}"
|
|
|
29 #end if
|
|
|
30 #if str( $partition_type ) != "None":
|
|
|
31 #for $pt in str( $partition_type ).split( ',' ):
|
|
|
32 --partitionType "${pt}"
|
|
|
33 #end for
|
|
|
34 #end if
|
|
|
35 --out "${output_per_locus_coverage}"
|
|
|
36
|
|
|
37 #for $ct_group in $summary_coverage_threshold_group:
|
|
|
38 --summaryCoverageThreshold "${ct_group.summary_coverage_threshold}"
|
|
|
39 #end for
|
|
|
40 --outputFormat "${output_format}"
|
|
|
41 '
|
|
|
42
|
|
|
43 #include source=$standard_gatk_options#
|
|
|
44 ##start analysis specific options
|
|
|
45 #if $analysis_param_type.analysis_param_type_selector == "advanced":
|
|
|
46 -p '
|
|
|
47 ${analysis_param_type.ignore_deletion_sites}
|
|
|
48 ${analysis_param_type.include_deletions}
|
|
|
49 --maxBaseQuality "${analysis_param_type.max_base_quality}"
|
|
|
50 --maxMappingQuality "${analysis_param_type.max_mapping_quality}"
|
|
|
51 --minBaseQuality "${analysis_param_type.min_base_quality}"
|
|
|
52 --minMappingQuality "${analysis_param_type.min_mapping_quality}"
|
|
|
53 --nBins "${analysis_param_type.n_bins}"
|
|
|
54 ${analysis_param_type.omit_depth_output_at_each_base}
|
|
|
55 ${analysis_param_type.omit_interval_statistics}
|
|
|
56 ${analysis_param_type.omit_locus_table}
|
|
|
57 ${analysis_param_type.omit_per_sample_stats}
|
|
|
58 ${analysis_param_type.print_base_counts}
|
|
|
59 ${analysis_param_type.print_bin_endpoints_and_exit}
|
|
|
60 --start "${analysis_param_type.start}"
|
|
|
61 --stop "${analysis_param_type.stop}"
|
|
|
62 '
|
|
|
63 #end if
|
|
|
64 ##Move additional files to final location
|
|
|
65 #if str( $partition_type ) != "None":
|
|
|
66 #set $partition_types = str( $partition_type ).split( ',' )
|
|
|
67 #else:
|
|
|
68 #set $partition_types = [ 'sample' ]
|
|
|
69 #end if
|
|
|
70 #if 'sample' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ):
|
|
|
71 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "":
|
|
|
72 && mv ${output_per_locus_coverage}.sample_summary ${output_summary_sample}
|
|
|
73 && mv ${output_per_locus_coverage}.sample_statistics ${output_statistics_sample}
|
|
|
74 #end if
|
|
|
75 #if $gatk_param_type.gatk_param_type_selector == "advanced" and len( $gatk_param_type.input_interval_repeat ) and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_interval_statistics ) == "" ):
|
|
|
76 && mv ${output_per_locus_coverage}.sample_interval_summary ${output_interval_summary_sample}
|
|
|
77 && mv ${output_per_locus_coverage}.sample_interval_statistics ${output_interval_statistics_sample}
|
|
|
78 #end if
|
|
|
79 #if str( $input_calculate_coverage_over_genes ) != "None":
|
|
|
80 && mv ${output_per_locus_coverage}.sample_gene_summary ${output_gene_summary_sample}
|
|
|
81 && mv ${output_per_locus_coverage}.sample_gene_statistics ${output_gene_statistics_sample}
|
|
|
82 #end if
|
|
|
83 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_depth_output_at_each_base ) == "":
|
|
|
84 && mv ${output_per_locus_coverage}.sample_cumulative_coverage_counts ${output_cumulative_coverage_counts_sample}
|
|
|
85 && mv ${output_per_locus_coverage}.sample_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_sample}
|
|
|
86 #end if
|
|
|
87 #end if
|
|
|
88
|
|
|
89 #if 'readgroup' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ):
|
|
|
90 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "":
|
|
|
91 && mv ${output_per_locus_coverage}.read_group_summary ${output_summary_readgroup}
|
|
|
92 && mv ${output_per_locus_coverage}.read_group_statistics ${output_statistics_readgroup}
|
|
|
93 #end if
|
|
|
94 #if $gatk_param_type.gatk_param_type_selector == "advanced" and len( $gatk_param_type.input_interval_repeat ) and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_interval_statistics ) == "" ):
|
|
|
95 && mv ${output_per_locus_coverage}.read_group_interval_summary ${output_interval_summary_readgroup}
|
|
|
96 && mv ${output_per_locus_coverage}.read_group_interval_statistics ${output_interval_statistics_readgroup}
|
|
|
97 #end if
|
|
|
98 #if str( $input_calculate_coverage_over_genes ) != "None":
|
|
|
99 && mv ${output_per_locus_coverage}.read_group_gene_summary ${output_gene_summary_readgroup}
|
|
|
100 && mv ${output_per_locus_coverage}.read_group_gene_statistics ${output_gene_statistics_readgroup}
|
|
|
101 #end if
|
|
|
102 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_depth_output_at_each_base ) == "":
|
|
|
103 && mv ${output_per_locus_coverage}.read_group_cumulative_coverage_counts ${output_cumulative_coverage_counts_readgroup}
|
|
|
104 && mv ${output_per_locus_coverage}.read_group_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_readgroup}
|
|
|
105 #end if
|
|
|
106 #end if
|
|
|
107
|
|
|
108 #if 'library' in $partition_types and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.print_bin_endpoints_and_exit ) == "" ):
|
|
|
109 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_per_sample_stats ) == "":
|
|
|
110 && mv ${output_per_locus_coverage}.library_summary ${output_summary_library}
|
|
|
111 && mv ${output_per_locus_coverage}.library_statistics ${output_statistics_library}
|
|
|
112 #end if
|
|
|
113 #if $gatk_param_type.gatk_param_type_selector == "advanced" and len( $gatk_param_type.input_interval_repeat ) and ( str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_interval_statistics ) == "" ):
|
|
|
114 && mv ${output_per_locus_coverage}.library_interval_summary ${output_interval_summary_library}
|
|
|
115 && mv ${output_per_locus_coverage}.library_interval_statistics ${output_interval_statistics_library}
|
|
|
116 #end if
|
|
|
117 #if str( $input_calculate_coverage_over_genes ) != "None":
|
|
|
118 && mv ${output_per_locus_coverage}.library_gene_summary ${output_gene_summary_library}
|
|
|
119 && mv ${output_per_locus_coverage}.library_gene_statistics ${output_gene_statistics_library}
|
|
|
120 #end if
|
|
|
121 #if str( $analysis_param_type.analysis_param_type_selector ) == "basic" or str( $analysis_param_type.omit_depth_output_at_each_base ) == "":
|
|
|
122 && mv ${output_per_locus_coverage}.library_cumulative_coverage_counts ${output_cumulative_coverage_counts_library}
|
|
|
123 && mv ${output_per_locus_coverage}.library_cumulative_coverage_proportions ${output_cumulative_coverage_proportions_library}
|
|
|
124 #end if
|
|
|
125 #end if
|
|
|
126
|
|
|
127
|
|
|
128 </command>
|
|
|
129 <inputs>
|
|
|
130 <conditional name="reference_source">
|
|
|
131 <expand macro="reference_source_selector_param" />
|
|
|
132 <when value="cached">
|
|
|
133 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;">
|
|
|
134 <param name="input_bam" type="data" format="bam" label="BAM file">
|
|
|
135 <validator type="unspecified_build" />
|
|
|
136 <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 -->
|
|
|
137 </param>
|
|
|
138 </repeat>
|
|
|
139 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;">
|
|
|
140 <options from_data_table="gatk2_picard_indexes">
|
|
|
141 <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...-->
|
|
|
142 </options>
|
|
|
143 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
|
|
|
144 </param>
|
|
|
145 </when>
|
|
|
146 <when value="history"> <!-- FIX ME!!!! -->
|
|
|
147 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;">
|
|
|
148 <param name="input_bam" type="data" format="bam" label="BAM file" />
|
|
|
149 </repeat>
|
|
|
150 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" />
|
|
|
151 </when>
|
|
|
152 </conditional>
|
|
|
153
|
|
|
154 <param name="input_calculate_coverage_over_genes" type="data" format="data" label="RefSeq Rod" optional="True" help="-geneList,--calculateCoverageOverGenes &lt;calculateCoverageOverGenes&gt;" />
|
|
|
155
|
|
|
156 <param name="partition_type" type="select" label="Partition type for depth of coverage" multiple="True" display="checkboxes" help="-pt,--partitionType &lt;partitionType&gt;">
|
|
|
157 <option value="sample" selected="True">sample</option>
|
|
|
158 <option value="readgroup">readgroup</option>
|
|
|
159 <option value="library">library</option>
|
|
|
160 </param>
|
|
|
161
|
|
|
162 <repeat name="summary_coverage_threshold_group" title="Summary coverage threshold" help="-ct,--summaryCoverageThreshold &lt;summaryCoverageThreshold&gt;">
|
|
|
163 <param name="summary_coverage_threshold" type="integer" value="15" label="for summary file outputs, report the % of bases covered to >= this number" />
|
|
|
164 </repeat>
|
|
|
165
|
|
|
166 <param name="output_format" type="select" label="Output format" help="--outputFormat &lt;outputFormat&gt;" >
|
|
|
167 <option value="csv">csv</option>
|
|
|
168 <option value="table">table</option>
|
|
|
169 <option value="rtable" selected="True">rtable</option>
|
|
|
170 </param>
|
|
|
171
|
|
|
172 <expand macro="gatk_param_type_conditional" />
|
|
|
173
|
|
|
174 <expand macro="analysis_type_conditional">
|
|
|
175 <param name="ignore_deletion_sites" type="boolean" truevalue="--ignoreDeletionSites" falsevalue="" checked="False" label="Ignore sites consisting only of deletions" help="--ignoreDeletionSites" />
|
|
|
176 <param name="include_deletions" type="boolean" truevalue="--includeDeletions" falsevalue="" checked="False" label="Include information on deletions" help="-dels,--includeDeletions" />
|
|
|
177 <param name="max_base_quality" type="integer" value="127" label="Maximum quality of bases to count towards depth" help="--maxBaseQuality &lt;maxBaseQuality&gt;" />
|
|
|
178 <param name="min_base_quality" type="integer" value="-1" label="Minimum quality of bases to count towards depth" help="-mbq,--minBaseQuality &lt;minBaseQuality&gt;" />
|
|
|
179 <param name="max_mapping_quality" type="integer" value="2147483647" label="Maximum mapping quality of reads to count towards depth." help="--maxMappingQuality &lt;maxMappingQuality&gt;" />
|
|
|
180 <param name="min_mapping_quality" type="integer" value="127" label="Minimum mapping quality of reads to count towards depth" help="-mmq,--minMappingQuality &lt;minMappingQuality&gt;" />
|
|
|
181 <param name="n_bins" type="integer" value="499" label="Number of bins to use for granular binning" help="--nBins &lt;nBins&gt;" />
|
|
|
182 <param name="omit_depth_output_at_each_base" type="boolean" truevalue="--omitDepthOutputAtEachBase" falsevalue="" checked="False" label="Omit the output of the depth of coverage at each base" help="-omitBaseOutput,--omitDepthOutputAtEachBase" />
|
|
|
183 <param name="omit_interval_statistics" type="boolean" truevalue="--omitIntervalStatistics" falsevalue="" checked="False" label="Omit the per-interval statistics section" help="-omitIntervals,--omitIntervalStatistics" />
|
|
|
184 <param name="omit_locus_table" type="boolean" truevalue="--omitLocusTable" falsevalue="" checked="False" label="Do not calculate the per-sample per-depth counts of loci" help="-omitLocusTable,--omitLocusTable" />
|
|
|
185 <param name="omit_per_sample_stats" type="boolean" truevalue="--omitPerSampleStats" falsevalue="" checked="False" label="Omit the summary files per-sample." help="-omitSampleSummary,--omitPerSampleStats" />
|
|
|
186 <param name="print_base_counts" type="boolean" truevalue="--printBaseCounts" falsevalue="" checked="False" label="Add base counts to per-locus output" help="-baseCounts,--printBaseCounts" />
|
|
|
187 <param name="print_bin_endpoints_and_exit" type="boolean" truevalue="--printBinEndpointsAndExit" falsevalue="" checked="False" label="Print the bin values and exits immediately" help="--printBinEndpointsAndExit" />
|
|
|
188 <param name="start" type="integer" value="1" label="Starting (left endpoint) for granular binning" help="--start &lt;start&gt;" />
|
|
|
189 <param name="stop" type="integer" value="500" label="Ending (right endpoint) for granular binning" help="--stop &lt;stop&gt;" />
|
|
|
190 </expand>
|
|
|
191 </inputs>
|
|
|
192 <outputs>
|
|
|
193 <data format="tabular" name="output_per_locus_coverage" label="${tool.name} on ${on_string} (per locus coverage)" >
|
|
|
194 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
195 <actions>
|
|
|
196 <conditional name="output_format">
|
|
|
197 <when value="rtable">
|
|
|
198 <action type="format">
|
|
|
199 <option type="from_param" name="output_format" />
|
|
|
200 </action>
|
|
|
201 </when>
|
|
|
202 <when value="csv">
|
|
|
203 <action type="format">
|
|
|
204 <option type="from_param" name="output_format" />
|
|
|
205 </action>
|
|
|
206 </when>
|
|
|
207 </conditional>
|
|
|
208 </actions>
|
|
|
209 </data>
|
|
|
210 <data format="tabular" name="output_summary_sample" label="${tool.name} on ${on_string} (output summary sample)" >
|
|
|
211 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
212 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
213 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
214 <actions>
|
|
|
215 <conditional name="output_format">
|
|
|
216 <when value="rtable">
|
|
|
217 <action type="format">
|
|
|
218 <option type="from_param" name="output_format" />
|
|
|
219 </action>
|
|
|
220 </when>
|
|
|
221 <when value="csv">
|
|
|
222 <action type="format">
|
|
|
223 <option type="from_param" name="output_format" />
|
|
|
224 </action>
|
|
|
225 </when>
|
|
|
226 </conditional>
|
|
|
227 </actions>
|
|
|
228 </data>
|
|
|
229 <data format="tabular" name="output_statistics_sample" label="${tool.name} on ${on_string} (output statistics sample)" >
|
|
|
230 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
231 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
232 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
233 <actions>
|
|
|
234 <conditional name="output_format">
|
|
|
235 <when value="rtable">
|
|
|
236 <action type="format">
|
|
|
237 <option type="from_param" name="output_format" />
|
|
|
238 </action>
|
|
|
239 </when>
|
|
|
240 <when value="csv">
|
|
|
241 <action type="format">
|
|
|
242 <option type="from_param" name="output_format" />
|
|
|
243 </action>
|
|
|
244 </when>
|
|
|
245 </conditional>
|
|
|
246 </actions>
|
|
|
247 </data>
|
|
|
248 <data format="tabular" name="output_interval_summary_sample" label="${tool.name} on ${on_string} (output interval summary sample)" >
|
|
|
249 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
250 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
251 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
252 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
253 <actions>
|
|
|
254 <conditional name="output_format">
|
|
|
255 <when value="rtable">
|
|
|
256 <action type="format">
|
|
|
257 <option type="from_param" name="output_format" />
|
|
|
258 </action>
|
|
|
259 </when>
|
|
|
260 <when value="csv">
|
|
|
261 <action type="format">
|
|
|
262 <option type="from_param" name="output_format" />
|
|
|
263 </action>
|
|
|
264 </when>
|
|
|
265 </conditional>
|
|
|
266 </actions>
|
|
|
267 </data>
|
|
|
268 <data format="tabular" name="output_interval_statistics_sample" label="${tool.name} on ${on_string} (output interval statistics sample)" >
|
|
|
269 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
270 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
271 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
272 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
273 <actions>
|
|
|
274 <conditional name="output_format">
|
|
|
275 <when value="rtable">
|
|
|
276 <action type="format">
|
|
|
277 <option type="from_param" name="output_format" />
|
|
|
278 </action>
|
|
|
279 </when>
|
|
|
280 <when value="csv">
|
|
|
281 <action type="format">
|
|
|
282 <option type="from_param" name="output_format" />
|
|
|
283 </action>
|
|
|
284 </when>
|
|
|
285 </conditional>
|
|
|
286 </actions>
|
|
|
287 </data>
|
|
|
288 <data format="tabular" name="output_gene_summary_sample" label="${tool.name} on ${on_string} (output gene summary sample)" >
|
|
|
289 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
290 <filter>input_calculate_coverage_over_genes is not None and 'sample' in partition_type or not partition_type</filter>
|
|
|
291 <actions>
|
|
|
292 <conditional name="output_format">
|
|
|
293 <when value="rtable">
|
|
|
294 <action type="format">
|
|
|
295 <option type="from_param" name="output_format" />
|
|
|
296 </action>
|
|
|
297 </when>
|
|
|
298 <when value="csv">
|
|
|
299 <action type="format">
|
|
|
300 <option type="from_param" name="output_format" />
|
|
|
301 </action>
|
|
|
302 </when>
|
|
|
303 </conditional>
|
|
|
304 </actions>
|
|
|
305 </data>
|
|
|
306 <data format="tabular" name="output_gene_statistics_sample" label="${tool.name} on ${on_string} (output gene statistics sample)" >
|
|
|
307 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
308 <filter>input_calculate_coverage_over_genes is not None and 'sample' in partition_type or not partition_type</filter>
|
|
|
309 <actions>
|
|
|
310 <conditional name="output_format">
|
|
|
311 <when value="rtable">
|
|
|
312 <action type="format">
|
|
|
313 <option type="from_param" name="output_format" />
|
|
|
314 </action>
|
|
|
315 </when>
|
|
|
316 <when value="csv">
|
|
|
317 <action type="format">
|
|
|
318 <option type="from_param" name="output_format" />
|
|
|
319 </action>
|
|
|
320 </when>
|
|
|
321 </conditional>
|
|
|
322 </actions>
|
|
|
323 </data>
|
|
|
324 <data format="tabular" name="output_cumulative_coverage_counts_sample" label="${tool.name} on ${on_string} (output cumulative coverage counts sample)" >
|
|
|
325 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
326 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
327 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
328 <actions>
|
|
|
329 <conditional name="output_format">
|
|
|
330 <when value="rtable">
|
|
|
331 <action type="format">
|
|
|
332 <option type="from_param" name="output_format" />
|
|
|
333 </action>
|
|
|
334 </when>
|
|
|
335 <when value="csv">
|
|
|
336 <action type="format">
|
|
|
337 <option type="from_param" name="output_format" />
|
|
|
338 </action>
|
|
|
339 </when>
|
|
|
340 </conditional>
|
|
|
341 </actions>
|
|
|
342 </data>
|
|
|
343 <data format="tabular" name="output_cumulative_coverage_proportions_sample" label="${tool.name} on ${on_string} (output cumulative coverage proportions sample)" >
|
|
|
344 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
345 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
346 <filter>'sample' in partition_type or not partition_type</filter>
|
|
|
347 <actions>
|
|
|
348 <conditional name="output_format">
|
|
|
349 <when value="rtable">
|
|
|
350 <action type="format">
|
|
|
351 <option type="from_param" name="output_format" />
|
|
|
352 </action>
|
|
|
353 </when>
|
|
|
354 <when value="csv">
|
|
|
355 <action type="format">
|
|
|
356 <option type="from_param" name="output_format" />
|
|
|
357 </action>
|
|
|
358 </when>
|
|
|
359 </conditional>
|
|
|
360 </actions>
|
|
|
361 </data>
|
|
|
362
|
|
|
363 <data format="tabular" name="output_summary_readgroup" label="${tool.name} on ${on_string} (output summary readgroup)" >
|
|
|
364 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
365 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
366 <filter>'readgroup' in partition_type</filter>
|
|
|
367 <actions>
|
|
|
368 <conditional name="output_format">
|
|
|
369 <when value="rtable">
|
|
|
370 <action type="format">
|
|
|
371 <option type="from_param" name="output_format" />
|
|
|
372 </action>
|
|
|
373 </when>
|
|
|
374 <when value="csv">
|
|
|
375 <action type="format">
|
|
|
376 <option type="from_param" name="output_format" />
|
|
|
377 </action>
|
|
|
378 </when>
|
|
|
379 </conditional>
|
|
|
380 </actions>
|
|
|
381 </data>
|
|
|
382 <data format="tabular" name="output_statistics_readgroup" label="${tool.name} on ${on_string} (output statistics readgroup)" >
|
|
|
383 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
384 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
385 <filter>'readgroup' in partition_type</filter>
|
|
|
386 <actions>
|
|
|
387 <conditional name="output_format">
|
|
|
388 <when value="rtable">
|
|
|
389 <action type="format">
|
|
|
390 <option type="from_param" name="output_format" />
|
|
|
391 </action>
|
|
|
392 </when>
|
|
|
393 <when value="csv">
|
|
|
394 <action type="format">
|
|
|
395 <option type="from_param" name="output_format" />
|
|
|
396 </action>
|
|
|
397 </when>
|
|
|
398 </conditional>
|
|
|
399 </actions>
|
|
|
400 </data>
|
|
|
401 <data format="tabular" name="output_interval_summary_readgroup" label="${tool.name} on ${on_string} (output interval summary readgroup)" >
|
|
|
402 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
403 <filter>'readgroup' in partition_type</filter>
|
|
|
404 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
405 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
406 <actions>
|
|
|
407 <conditional name="output_format">
|
|
|
408 <when value="rtable">
|
|
|
409 <action type="format">
|
|
|
410 <option type="from_param" name="output_format" />
|
|
|
411 </action>
|
|
|
412 </when>
|
|
|
413 <when value="csv">
|
|
|
414 <action type="format">
|
|
|
415 <option type="from_param" name="output_format" />
|
|
|
416 </action>
|
|
|
417 </when>
|
|
|
418 </conditional>
|
|
|
419 </actions>
|
|
|
420 </data>
|
|
|
421 <data format="tabular" name="output_interval_statistics_readgroup" label="${tool.name} on ${on_string} (output interval statistics readgroup)" >
|
|
|
422 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
423 <filter>'readgroup' in partition_type</filter>
|
|
|
424 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
425 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
426 <actions>
|
|
|
427 <conditional name="output_format">
|
|
|
428 <when value="rtable">
|
|
|
429 <action type="format">
|
|
|
430 <option type="from_param" name="output_format" />
|
|
|
431 </action>
|
|
|
432 </when>
|
|
|
433 <when value="csv">
|
|
|
434 <action type="format">
|
|
|
435 <option type="from_param" name="output_format" />
|
|
|
436 </action>
|
|
|
437 </when>
|
|
|
438 </conditional>
|
|
|
439 </actions>
|
|
|
440 </data>
|
|
|
441 <data format="tabular" name="output_gene_summary_readgroup" label="${tool.name} on ${on_string} (output gene summary readgroup)" >
|
|
|
442 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
443 <filter>input_calculate_coverage_over_genes is not None and 'readgroup' in partition_type or not partition_type</filter>
|
|
|
444 <actions>
|
|
|
445 <conditional name="output_format">
|
|
|
446 <when value="rtable">
|
|
|
447 <action type="format">
|
|
|
448 <option type="from_param" name="output_format" />
|
|
|
449 </action>
|
|
|
450 </when>
|
|
|
451 <when value="csv">
|
|
|
452 <action type="format">
|
|
|
453 <option type="from_param" name="output_format" />
|
|
|
454 </action>
|
|
|
455 </when>
|
|
|
456 </conditional>
|
|
|
457 </actions>
|
|
|
458 </data>
|
|
|
459 <data format="tabular" name="output_gene_statistics_readgroup" label="${tool.name} on ${on_string} (output gene statistics readgroup)" >
|
|
|
460 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
461 <filter>input_calculate_coverage_over_genes is not None and 'readgroup' in partition_type or not partition_type</filter>
|
|
|
462 <actions>
|
|
|
463 <conditional name="output_format">
|
|
|
464 <when value="rtable">
|
|
|
465 <action type="format">
|
|
|
466 <option type="from_param" name="output_format" />
|
|
|
467 </action>
|
|
|
468 </when>
|
|
|
469 <when value="csv">
|
|
|
470 <action type="format">
|
|
|
471 <option type="from_param" name="output_format" />
|
|
|
472 </action>
|
|
|
473 </when>
|
|
|
474 </conditional>
|
|
|
475 </actions>
|
|
|
476 </data>
|
|
|
477 <data format="tabular" name="output_cumulative_coverage_counts_readgroup" label="${tool.name} on ${on_string} (output cumulative coverage counts readgroup)" >
|
|
|
478 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
479 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
480 <filter>'readgroup' in partition_type</filter>
|
|
|
481 <actions>
|
|
|
482 <conditional name="output_format">
|
|
|
483 <when value="rtable">
|
|
|
484 <action type="format">
|
|
|
485 <option type="from_param" name="output_format" />
|
|
|
486 </action>
|
|
|
487 </when>
|
|
|
488 <when value="csv">
|
|
|
489 <action type="format">
|
|
|
490 <option type="from_param" name="output_format" />
|
|
|
491 </action>
|
|
|
492 </when>
|
|
|
493 </conditional>
|
|
|
494 </actions>
|
|
|
495 </data>
|
|
|
496 <data format="tabular" name="output_cumulative_coverage_proportions_readgroup" label="${tool.name} on ${on_string} (output cumulative coverage proportions readgroup)" >
|
|
|
497 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
498 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
499 <filter>'readgroup' in partition_type</filter>
|
|
|
500 <actions>
|
|
|
501 <conditional name="output_format">
|
|
|
502 <when value="rtable">
|
|
|
503 <action type="format">
|
|
|
504 <option type="from_param" name="output_format" />
|
|
|
505 </action>
|
|
|
506 </when>
|
|
|
507 <when value="csv">
|
|
|
508 <action type="format">
|
|
|
509 <option type="from_param" name="output_format" />
|
|
|
510 </action>
|
|
|
511 </when>
|
|
|
512 </conditional>
|
|
|
513 </actions>
|
|
|
514 </data>
|
|
|
515
|
|
|
516 <data format="tabular" name="output_summary_library" label="${tool.name} on ${on_string} (output summary library)" >
|
|
|
517 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
518 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
519 <filter>'library' in partition_type</filter>
|
|
|
520 <actions>
|
|
|
521 <conditional name="output_format">
|
|
|
522 <when value="rtable">
|
|
|
523 <action type="format">
|
|
|
524 <option type="from_param" name="output_format" />
|
|
|
525 </action>
|
|
|
526 </when>
|
|
|
527 <when value="csv">
|
|
|
528 <action type="format">
|
|
|
529 <option type="from_param" name="output_format" />
|
|
|
530 </action>
|
|
|
531 </when>
|
|
|
532 </conditional>
|
|
|
533 </actions>
|
|
|
534 </data>
|
|
|
535 <data format="tabular" name="output_statistics_library" label="${tool.name} on ${on_string} (output statistics library)" >
|
|
|
536 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_per_sample_stats'] == False</filter>
|
|
|
537 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
538 <filter>'library' in partition_type</filter>
|
|
|
539 <actions>
|
|
|
540 <conditional name="output_format">
|
|
|
541 <when value="rtable">
|
|
|
542 <action type="format">
|
|
|
543 <option type="from_param" name="output_format" />
|
|
|
544 </action>
|
|
|
545 </when>
|
|
|
546 <when value="csv">
|
|
|
547 <action type="format">
|
|
|
548 <option type="from_param" name="output_format" />
|
|
|
549 </action>
|
|
|
550 </when>
|
|
|
551 </conditional>
|
|
|
552 </actions>
|
|
|
553 </data>
|
|
|
554 <data format="tabular" name="output_interval_summary_library" label="${tool.name} on ${on_string} (output interval summary library)" >
|
|
|
555 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
556 <filter>'library' in partition_type</filter>
|
|
|
557 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
558 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
559 <actions>
|
|
|
560 <conditional name="output_format">
|
|
|
561 <when value="rtable">
|
|
|
562 <action type="format">
|
|
|
563 <option type="from_param" name="output_format" />
|
|
|
564 </action>
|
|
|
565 </when>
|
|
|
566 <when value="csv">
|
|
|
567 <action type="format">
|
|
|
568 <option type="from_param" name="output_format" />
|
|
|
569 </action>
|
|
|
570 </when>
|
|
|
571 </conditional>
|
|
|
572 </actions>
|
|
|
573 </data>
|
|
|
574 <data format="tabular" name="output_interval_statistics_library" label="${tool.name} on ${on_string} (output interval statistics library)" >
|
|
|
575 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
576 <filter>'library' in partition_type</filter>
|
|
|
577 <filter>gatk_param_type['gatk_param_type_selector'] == "advanced" and len( gatk_param_type['input_interval_repeat'] )</filter>
|
|
|
578 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_interval_statistics'] == False</filter>
|
|
|
579 <actions>
|
|
|
580 <conditional name="output_format">
|
|
|
581 <when value="rtable">
|
|
|
582 <action type="format">
|
|
|
583 <option type="from_param" name="output_format" />
|
|
|
584 </action>
|
|
|
585 </when>
|
|
|
586 <when value="csv">
|
|
|
587 <action type="format">
|
|
|
588 <option type="from_param" name="output_format" />
|
|
|
589 </action>
|
|
|
590 </when>
|
|
|
591 </conditional>
|
|
|
592 </actions>
|
|
|
593 </data>
|
|
|
594 <data format="tabular" name="output_gene_summary_library" label="${tool.name} on ${on_string} (output gene summary library)" >
|
|
|
595 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
596 <filter>input_calculate_coverage_over_genes is not None and 'library' in partition_type or not partition_type</filter>
|
|
|
597 <actions>
|
|
|
598 <conditional name="output_format">
|
|
|
599 <when value="rtable">
|
|
|
600 <action type="format">
|
|
|
601 <option type="from_param" name="output_format" />
|
|
|
602 </action>
|
|
|
603 </when>
|
|
|
604 <when value="csv">
|
|
|
605 <action type="format">
|
|
|
606 <option type="from_param" name="output_format" />
|
|
|
607 </action>
|
|
|
608 </when>
|
|
|
609 </conditional>
|
|
|
610 </actions>
|
|
|
611 </data>
|
|
|
612 <data format="tabular" name="output_gene_statistics_library" label="${tool.name} on ${on_string} (output gene statistics library)" >
|
|
|
613 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
614 <filter>input_calculate_coverage_over_genes is not None and 'library' in partition_type or not partition_type</filter>
|
|
|
615 <actions>
|
|
|
616 <conditional name="output_format">
|
|
|
617 <when value="rtable">
|
|
|
618 <action type="format">
|
|
|
619 <option type="from_param" name="output_format" />
|
|
|
620 </action>
|
|
|
621 </when>
|
|
|
622 <when value="csv">
|
|
|
623 <action type="format">
|
|
|
624 <option type="from_param" name="output_format" />
|
|
|
625 </action>
|
|
|
626 </when>
|
|
|
627 </conditional>
|
|
|
628 </actions>
|
|
|
629 </data>
|
|
|
630 <data format="tabular" name="output_cumulative_coverage_counts_library" label="${tool.name} on ${on_string} (output cumulative coverage counts library)" >
|
|
|
631 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
632 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
633 <filter>'library' in partition_type</filter>
|
|
|
634 <actions>
|
|
|
635 <conditional name="output_format">
|
|
|
636 <when value="rtable">
|
|
|
637 <action type="format">
|
|
|
638 <option type="from_param" name="output_format" />
|
|
|
639 </action>
|
|
|
640 </when>
|
|
|
641 <when value="csv">
|
|
|
642 <action type="format">
|
|
|
643 <option type="from_param" name="output_format" />
|
|
|
644 </action>
|
|
|
645 </when>
|
|
|
646 </conditional>
|
|
|
647 </actions>
|
|
|
648 </data>
|
|
|
649 <data format="tabular" name="output_cumulative_coverage_proportions_library" label="${tool.name} on ${on_string} (output cumulative coverage proportions library)" >
|
|
|
650 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['omit_depth_output_at_each_base'] == False</filter>
|
|
|
651 <filter>analysis_param_type['analysis_param_type_selector'] == "basic" or analysis_param_type['print_bin_endpoints_and_exit'] == False</filter>
|
|
|
652 <filter>'library' in partition_type</filter>
|
|
|
653 <actions>
|
|
|
654 <conditional name="output_format">
|
|
|
655 <when value="rtable">
|
|
|
656 <action type="format">
|
|
|
657 <option type="from_param" name="output_format" />
|
|
|
658 </action>
|
|
|
659 </when>
|
|
|
660 <when value="csv">
|
|
|
661 <action type="format">
|
|
|
662 <option type="from_param" name="output_format" />
|
|
|
663 </action>
|
|
|
664 </when>
|
|
|
665 </conditional>
|
|
|
666 </actions>
|
|
|
667 </data>
|
|
|
668
|
|
|
669 <data format="tabular" name="output_log" label="${tool.name} on ${on_string} (log)" />
|
|
|
670 </outputs>
|
|
|
671 <trackster_conf/>
|
|
|
672 <tests>
|
|
|
673 <test>
|
|
|
674 <param name="reference_source_selector" value="history" />
|
|
|
675 <param name="ref_file" value="phiX.fasta" ftype="fasta" />
|
|
|
676 <param name="input_bam" value="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.bam" ftype="bam" />
|
|
|
677 <param name="input_calculate_coverage_over_genes" />
|
|
|
678 <param name="partition_type" value="sample" />
|
|
|
679 <param name="summary_coverage_threshold_group" value="0" />
|
|
|
680 <param name="output_format" value="rtable" />
|
|
|
681 <param name="gatk_param_type_selector" value="basic" />
|
|
|
682 <param name="analysis_param_type_selector" value="basic" />
|
|
|
683 <output name="output_per_locus_coverage" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_per_locus_coverage.tabular" />
|
|
|
684 <output name="output_summary_sample" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_summary_sample.tabular" />
|
|
|
685 <output name="output_statistics_sample" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_statistics_sample.tabular" />
|
|
|
686 <output name="output_cumulative_coverage_counts_sample" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_cumulative_coverage_counts_sample.tabular" />
|
|
|
687 <output name="output_cumulative_coverage_proportions_sample" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1_output_output_cumulative_coverage_proportions_sample.tabular" />
|
|
|
688 <output name="output_log" file="gatk/gatk_depth_of_coverage/gatk_depth_of_coverage_out_1.log.contains" compare="contains" />
|
|
|
689 </test>
|
|
|
690 </tests>
|
|
|
691 <help>
|
|
|
692 **What it does**
|
|
|
693
|
|
|
694 DepthOfCoverage processes a set of bam files to determine coverage at different levels of partitioning and aggregation. Coverage can be analyzed per locus, per interval, per gene, or in total; can be partitioned by sample, by read group, by technology, by center, or by library; and can be summarized by mean, median, quartiles, and/or percentage of bases covered to or beyond a threshold. Additionally, reads and bases can be filtered by mapping or base quality score.
|
|
|
695
|
|
6
|
696 For more information on the GATK Depth of Coverage, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_coverage_DepthOfCoverage.html>`_.
|
|
0
|
697
|
|
|
698 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_.
|
|
|
699
|
|
|
700 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_.
|
|
|
701
|
|
|
702 ------
|
|
|
703
|
|
|
704 **Inputs**
|
|
|
705
|
|
|
706 GenomeAnalysisTK: DepthOfCoverage accepts aligned BAM input files.
|
|
|
707
|
|
|
708
|
|
|
709 **Outputs**
|
|
|
710
|
|
|
711 The output is in various table formats.
|
|
|
712
|
|
|
713
|
|
|
714 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats.
|
|
|
715
|
|
|
716 -------
|
|
|
717
|
|
|
718 **Settings**::
|
|
|
719
|
|
|
720 calculateCoverageOverGenes File NA Calculate the coverage statistics over this list of genes. Currently accepts RefSeq.
|
|
|
721 ignoreDeletionSites boolean false Ignore sites consisting only of deletions
|
|
|
722 includeDeletions boolean false Include information on deletions
|
|
|
723 maxBaseQuality byte 127 Maximum quality of bases to count towards depth. Defaults to 127 (Byte.MAX_VALUE).
|
|
|
724 maxMappingQuality int 2147483647 Maximum mapping quality of reads to count towards depth. Defaults to 2^31-1 (Integer.MAX_VALUE).
|
|
|
725 minBaseQuality byte -1 Minimum quality of bases to count towards depth. Defaults to -1.
|
|
|
726 minMappingQuality int -1 Minimum mapping quality of reads to count towards depth. Defaults to -1.
|
|
|
727 nBins int 499 Number of bins to use for granular binning
|
|
|
728 omitDepthOutputAtEachBase boolean false Will omit the output of the depth of coverage at each base, which should result in speedup
|
|
|
729 omitIntervalStatistics boolean false Will omit the per-interval statistics section, which should result in speedup
|
|
|
730 omitLocusTable boolean false Will not calculate the per-sample per-depth counts of loci, which should result in speedup
|
|
|
731 omitPerSampleStats boolean false Omits the summary files per-sample. These statistics are still calculated, so this argument will not improve runtime.
|
|
|
732 outputFormat String rtable the format of the output file (e.g. csv, table, rtable); defaults to r-readable table
|
|
|
733 partitionType Set[Partition] [sample] Partition type for depth of coverage. Defaults to sample. Can be any combination of sample, readgroup, library.
|
|
|
734 printBaseCounts boolean false Will add base counts to per-locus output.
|
|
|
735 printBinEndpointsAndExit boolean false Prints the bin values and exits immediately. Use to calibrate what bins you want before running on data.
|
|
|
736 start int 1 Starting (left endpoint) for granular binning
|
|
|
737 stop int 500 Ending (right endpoint) for granular binning
|
|
|
738 summaryCoverageThreshold int[] [15] for summary file outputs, report the % of bases coverd to >= this number. Defaults to 15; can take multiple arguments.
|
|
|
739
|
|
|
740 @CITATION_SECTION@
|
|
|
741 </help>
|
|
6
|
742 <expand macro="citations" />
|
|
0
|
743 </tool>
|