Mercurial > repos > jjohnson > gatk2
annotate unified_genotyper.xml @ 39:fab099dde911 draft default tip
VariantFiltration should not have -nt option since it does not implemnt TreeReducible
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Tue, 05 Mar 2013 11:15:13 -0600 |
parents | 1061731ba6ed |
children |
rev | line source |
---|---|
34 | 1 <tool id="gatk2_unified_genotyper" name="Unified Genotyper" version="0.0.7"> |
0 | 2 <description>SNP and indel caller</description> |
3 <requirements> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
1
diff
changeset
|
4 <requirement type="package" version="2.3">gatk</requirement> |
1
9b8e2a158073
Fix typo in unified_genotyper.xml, add dir path in tool_dependencies.xml
Jim Johnson <jj@umn.edu>
parents:
0
diff
changeset
|
5 <requirement type="package" version="0.1.18">samtools</requirement> |
0 | 6 </requirements> |
7 <command interpreter="python">gatk2_wrapper.py | |
8 --max_jvm_heap_fraction "1" | |
9 --stdout "${output_log}" | |
10 #for $i, $input_bam in enumerate( $reference_source.input_bams ): | |
11 -d "-I" "${input_bam.input_bam}" "${input_bam.input_bam.ext}" "gatk_input_${i}" | |
12 #if str( $input_bam.input_bam.metadata.bam_index ) != "None": | |
13 -d "" "${input_bam.input_bam.metadata.bam_index}" "bam_index" "gatk_input_${i}" ##hardcode galaxy ext type as bam_index | |
14 #end if | |
15 #end for | |
16 -p 'java | |
17 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" | |
18 -T "UnifiedGenotyper" | |
19 ##--num_threads 4 ##hard coded, for now | |
20 --out "${output_vcf}" | |
21 --metrics_file "${output_metrics}" | |
22 \$GATK2_SITE_OPTIONS | |
28
6ef8eb568700
Move GATK tool_dependency to a repository dependency, use 2 env vars: GATK2_NUM_THREADS and GATK2_NUM_CPU_THREADS for site threading values
Jim Johnson <jj@umn.edu>
parents:
18
diff
changeset
|
23 \$GATK2_NUM_THREADS |
6ef8eb568700
Move GATK tool_dependency to a repository dependency, use 2 env vars: GATK2_NUM_THREADS and GATK2_NUM_CPU_THREADS for site threading values
Jim Johnson <jj@umn.edu>
parents:
18
diff
changeset
|
24 \$GATK2_NUM_CPU_THREADS |
0 | 25 ##-et "NO_ET" -K "\$GATK2_BASE/gatk2_key_file" ##ET no phone home |
26 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout | |
27 #if $reference_source.reference_source_selector != "history": | |
28 -R "${reference_source.ref_file.fields.path}" | |
29 #end if | |
30 --genotype_likelihoods_model "${genotype_likelihoods_model}" | |
31 --standard_min_confidence_threshold_for_calling "${standard_min_confidence_threshold_for_calling}" | |
32 --standard_min_confidence_threshold_for_emitting "${standard_min_confidence_threshold_for_emitting}" | |
33 ' | |
34 #set $rod_binding_names = dict() | |
35 #for $rod_binding in $rod_bind: | |
36 #if str( $rod_binding.rod_bind_type.rod_bind_type_selector ) == 'custom': | |
37 #set $rod_bind_name = $rod_binding.rod_bind_type.custom_rod_name | |
38 #else | |
39 #set $rod_bind_name = $rod_binding.rod_bind_type.rod_bind_type_selector | |
40 #end if | |
41 #set $rod_binding_names[$rod_bind_name] = $rod_binding_names.get( $rod_bind_name, -1 ) + 1 | |
42 -d "--dbsnp:${rod_bind_name},%(file_type)s" "${rod_binding.rod_bind_type.input_rod}" "${rod_binding.rod_bind_type.input_rod.ext}" "input_${rod_bind_name}_${rod_binding_names[$rod_bind_name]}" | |
43 #end for | |
44 | |
45 ##start standard gatk options | |
46 #if $gatk_param_type.gatk_param_type_selector == "advanced": | |
47 #for $pedigree in $gatk_param_type.pedigree: | |
48 -p '--pedigree "${pedigree.pedigree_file}"' | |
49 #end for | |
50 #for $pedigree_string in $gatk_param_type.pedigree_string_repeat: | |
51 -p '--pedigreeString "${pedigree_string.pedigree_string}"' | |
52 #end for | |
53 -p '--pedigreeValidationType "${gatk_param_type.pedigree_validation_type}"' | |
35 | 54 #set default_read_filters = ['DuplicateRead', 'FailsVendorQualityCheck', 'NotPrimaryAlignment', 'MalformedRead', 'BadMate', 'MappingQualityUnavailable', 'UnmappedRead'] |
0 | 55 #for $read_filter in $gatk_param_type.read_filter: |
32
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
56 -p ' |
35 | 57 #if $read_filter.read_filter_type.read_filter_type_selector not in $default_read_filters: |
33
76f8ca47b810
Omit --read_filter param included by default
Jim Johnson <jj@umn.edu>
parents:
32
diff
changeset
|
58 --read_filter "${read_filter.read_filter_type.read_filter_type_selector}" |
36 | 59 #end if |
0 | 60 #for $name, $param in $read_filter.read_filter_type.iteritems(): |
61 #if $name not in [ "__current_case__", "read_filter_type_selector" ]: | |
62 #if hasattr( $param.input, 'truevalue' ): | |
63 ${param} | |
64 #else: | |
65 --${name} "${param}" | |
66 #end if | |
67 #end if | |
68 #end for | |
69 ' | |
70 #end for | |
71 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_interval_repeat ): | |
72 -d "--intervals" "${input_intervals.input_intervals}" "${input_intervals.input_intervals.ext}" "input_intervals_${interval_count}" | |
73 #end for | |
74 | |
75 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_exclude_interval_repeat ): | |
76 -d "--excludeIntervals" "${input_intervals.input_exclude_intervals}" "${input_intervals.input_exclude_intervals.ext}" "input_exlude_intervals_${interval_count}" | |
77 #end for | |
78 | |
79 -p '--interval_set_rule "${gatk_param_type.interval_set_rule}"' | |
80 | |
81 -p '--downsampling_type "${gatk_param_type.downsampling_type.downsampling_type_selector}"' | |
82 #if str( $gatk_param_type.downsampling_type.downsampling_type_selector ) != "NONE": | |
83 -p '--${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_type_selector} "${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_value}"' | |
84 #end if | |
85 -p ' | |
86 --baq "${gatk_param_type.baq}" | |
87 --baqGapOpenPenalty "${gatk_param_type.baq_gap_open_penalty}" | |
88 ${gatk_param_type.use_original_qualities} | |
89 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" | |
90 --validation_strictness "${gatk_param_type.validation_strictness}" | |
91 --interval_merging "${gatk_param_type.interval_merging}" | |
92 ${gatk_param_type.disable_experimental_low_memory_sharding} | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
1
diff
changeset
|
93 ${gatk_param_type.fix_misencoded_quality_scores} |
0 | 94 ${gatk_param_type.non_deterministic_random_seed} |
95 ' | |
96 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): | |
97 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": | |
98 -d "--read_group_black_list" "${rg_black_list.read_group_black_list_type.read_group_black_list}" "txt" "input_read_group_black_list_${rg_black_list_count}" | |
99 #else | |
100 -p '--read_group_black_list "${rg_black_list.read_group_black_list_type.read_group_black_list}"' | |
101 #end if | |
102 #end for | |
103 #end if | |
104 | |
105 #if $reference_source.reference_source_selector == "history": | |
106 -d "-R" "${reference_source.ref_file}" "${reference_source.ref_file.ext}" "gatk_input" | |
107 #end if | |
108 ##end standard gatk options | |
109 ##start analysis specific options | |
110 #if $analysis_param_type.analysis_param_type_selector == "advanced": | |
111 -p ' | |
112 --p_nonref_model "${analysis_param_type.p_nonref_model}" | |
113 --heterozygosity "${analysis_param_type.heterozygosity}" | |
114 --pcr_error_rate "${analysis_param_type.pcr_error_rate}" | |
115 --genotyping_mode "${analysis_param_type.genotyping_mode_type.genotyping_mode}" | |
116 #if str( $analysis_param_type.genotyping_mode_type.genotyping_mode ) == 'GENOTYPE_GIVEN_ALLELES': | |
117 --alleles "${analysis_param_type.genotyping_mode_type.input_alleles_rod}" | |
118 #end if | |
119 --output_mode "${analysis_param_type.output_mode}" | |
120 ${analysis_param_type.compute_SLOD} | |
121 --min_base_quality_score "${analysis_param_type.min_base_quality_score}" | |
122 --max_deletion_fraction "${analysis_param_type.max_deletion_fraction}" | |
123 --max_alternate_alleles "${analysis_param_type.max_alternate_alleles}" | |
124 --min_indel_count_for_genotyping "${analysis_param_type.min_indel_count_for_genotyping}" | |
125 --indel_heterozygosity "${analysis_param_type.indel_heterozygosity}" | |
126 --indelGapContinuationPenalty "${analysis_param_type.indelGapContinuationPenalty}" | |
127 --indelGapOpenPenalty "${analysis_param_type.indelGapOpenPenalty}" | |
128 --indelHaplotypeSize "${analysis_param_type.indelHaplotypeSize}" | |
129 ${analysis_param_type.doContextDependentGapPenalties} | |
130 #if str( $analysis_param_type.annotation ) != "None": | |
131 #for $annotation in str( $analysis_param_type.annotation.fields.gatk_value ).split( ','): | |
132 --annotation "${annotation}" | |
133 #end for | |
134 #end if | |
135 #for $additional_annotation in $analysis_param_type.additional_annotations: | |
136 --annotation "${additional_annotation.additional_annotation_name}" | |
137 #end for | |
138 #if str( $analysis_param_type.group ) != "None": | |
139 #for $group in str( $analysis_param_type.group ).split( ','): | |
140 --group "${group}" | |
141 #end for | |
142 #end if | |
143 #if str( $analysis_param_type.exclude_annotations ) != "None": | |
144 #for $annotation in str( $analysis_param_type.exclude_annotations.fields.gatk_value ).split( ','): | |
145 --excludeAnnotation "${annotation}" | |
146 #end for | |
147 #end if | |
148 ${analysis_param_type.multiallelic} | |
32
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
149 #if str( $analysis_param_type.sample_ploidy ) != '': |
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
150 --sample_ploidy "$analysis_param_type.sample_ploidy" |
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
151 #end if |
0 | 152 ' |
153 ## #if str( $analysis_param_type.snpEff_rod_bind_type.snpEff_rod_bind_type_selector ) == 'set_snpEff': | |
154 ## -p '--annotation "SnpEff"' | |
155 ## -d "--snpEffFile:${analysis_param_type.snpEff_rod_bind_type.snpEff_rod_name},%(file_type)s" "${analysis_param_type.snpEff_rod_bind_type.snpEff_input_rod}" "${analysis_param_type.snpEff_rod_bind_type.snpEff_input_rod.ext}" "input_snpEff_${analysis_param_type.snpEff_rod_bind_type.snpEff_rod_name}" | |
156 ## #else: | |
157 ## -p '--excludeAnnotation "SnpEff"' | |
158 ## #end if | |
159 #end if | |
160 </command> | |
161 <inputs> | |
162 <conditional name="reference_source"> | |
163 <param name="reference_source_selector" type="select" label="Choose the source for the reference list"> | |
164 <option value="cached">Locally cached</option> | |
165 <option value="history">History</option> | |
166 </param> | |
167 <when value="cached"> | |
168 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;"> | |
169 <param name="input_bam" type="data" format="bam" label="BAM file"> | |
170 <validator type="unspecified_build" /> | |
171 <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 --> | |
172 </param> | |
173 </repeat> | |
174 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;"> | |
175 <options from_data_table="gatk2_picard_indexes"> | |
176 <!-- <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> does not yet work in a repeat...--> | |
177 </options> | |
178 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
179 </param> | |
180 </when> | |
181 <when value="history"> <!-- FIX ME!!!! --> | |
182 <repeat name="input_bams" title="BAM file" min="1" help="-I,--input_file &lt;input_file&gt;"> | |
183 <param name="input_bam" type="data" format="bam" label="BAM file" > | |
184 </param> | |
185 </repeat> | |
186 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> | |
187 </when> | |
188 </conditional> | |
189 | |
190 <repeat name="rod_bind" title="Binding for reference-ordered data" help="-D,--dbsnp &lt;dbsnp&gt;"> | |
191 <conditional name="rod_bind_type"> | |
192 <param name="rod_bind_type_selector" type="select" label="Binding Type"> | |
193 <option value="dbsnp" selected="True">dbSNP</option> | |
194 <option value="snps">SNPs</option> | |
195 <option value="indels">INDELs</option> | |
196 <option value="custom">Custom</option> | |
197 </param> | |
198 <when value="dbsnp"> | |
199 <param name="input_rod" type="data" format="vcf" label="ROD file" /> | |
200 </when> | |
201 <when value="snps"> | |
202 <param name="input_rod" type="data" format="vcf" label="ROD file" /> | |
203 </when> | |
204 <when value="indels"> | |
205 <param name="input_rod" type="data" format="vcf" label="ROD file" /> | |
206 </when> | |
207 <when value="custom"> | |
208 <param name="custom_rod_name" type="text" value="Unknown" label="ROD Name"/> | |
209 <param name="input_rod" type="data" format="vcf" label="ROD file" /> | |
210 </when> | |
211 </conditional> | |
212 </repeat> | |
213 | |
214 <param name="genotype_likelihoods_model" type="select" label="Genotype likelihoods calculation model to employ" help="-glm,--genotype_likelihoods_model &lt;genotype_likelihoods_model&gt;"> | |
215 <option value="BOTH" selected="True">BOTH</option> | |
216 <option value="SNP">SNP</option> | |
217 <option value="INDEL">INDEL</option> | |
218 </param> | |
219 | |
220 <param name="standard_min_confidence_threshold_for_calling" type="float" value="30.0" label="The minimum phred-scaled confidence threshold at which variants not at 'trigger' track sites should be called" help="-stand_call_conf,--standard_min_confidence_threshold_for_calling &lt;standard_min_confidence_threshold_for_calling&gt;" /> | |
221 <param name="standard_min_confidence_threshold_for_emitting" type="float" value="30.0" label="The minimum phred-scaled confidence threshold at which variants not at 'trigger' track sites should be emitted (and filtered if less than the calling threshold)" help="-stand_emit_conf,--standard_min_confidence_threshold_for_emitting &lt;standard_min_confidence_threshold_for_emitting&gt;" /> | |
222 | |
223 | |
224 <conditional name="gatk_param_type"> | |
225 <param name="gatk_param_type_selector" type="select" label="Basic or Advanced GATK options"> | |
226 <option value="basic" selected="True">Basic</option> | |
227 <option value="advanced">Advanced</option> | |
228 </param> | |
229 <when value="basic"> | |
230 <!-- Do nothing here --> | |
231 </when> | |
232 <when value="advanced"> | |
233 <repeat name="pedigree" title="Pedigree file" help="-ped,--pedigree &lt;pedigree&gt;"> | |
234 <param name="pedigree_file" type="data" format="txt" label="Pedigree files for samples"/> | |
235 </repeat> | |
236 <repeat name="pedigree_string_repeat" title="Pedigree string" help="-pedString,--pedigreeString &lt;pedigreeString&gt;"> | |
237 <param name="pedigree_string" type="text" value="" label="Pedigree string for samples"/> | |
238 </repeat> | |
239 <param name="pedigree_validation_type" type="select" label="How strict should we be in validating the pedigree information" help="-pedValidationType,--pedigreeValidationType &lt;pedigreeValidationType&gt;"> | |
240 <option value="STRICT" selected="True">STRICT</option> | |
241 <option value="SILENT">SILENT</option> | |
242 </param> | |
243 <repeat name="read_filter" title="Read Filter" help="-rf,--read_filter &lt;read_filter&gt;"> | |
244 <conditional name="read_filter_type"> | |
245 <param name="read_filter_type_selector" type="select" label="Read Filter Type"> | |
246 <option value="BadCigar">BadCigar</option> | |
247 <option value="BadMate">BadMate</option> | |
248 <option value="DuplicateRead">DuplicateRead</option> | |
249 <option value="FailsVendorQualityCheck">FailsVendorQualityCheck</option> | |
250 <option value="MalformedRead">MalformedRead</option> | |
251 <option value="MappingQuality">MappingQuality</option> | |
252 <option value="MappingQualityUnavailable">MappingQualityUnavailable</option> | |
253 <option value="MappingQualityZero">MappingQualityZero</option> | |
254 <option value="MateSameStrand">MateSameStrand</option> | |
255 <option value="MaxInsertSize">MaxInsertSize</option> | |
256 <option value="MaxReadLength" selected="True">MaxReadLength</option> | |
257 <option value="MissingReadGroup">MissingReadGroup</option> | |
258 <option value="NoOriginalQualityScores">NoOriginalQualityScores</option> | |
259 <option value="NotPrimaryAlignment">NotPrimaryAlignment</option> | |
260 <option value="Platform454">Platform454</option> | |
261 <option value="Platform">Platform</option> | |
262 <option value="PlatformUnit">PlatformUnit</option> | |
263 <option value="ReadGroupBlackList">ReadGroupBlackList</option> | |
264 <option value="ReadName">ReadName</option> | |
265 <option value="ReadStrand">ReadStrand</option> | |
266 <option value="ReassignMappingQuality">ReassignMappingQuality</option> | |
267 <option value="Sample">Sample</option> | |
268 <option value="SingleReadGroup">SingleReadGroup</option> | |
269 <option value="UnmappedRead">UnmappedRead</option> | |
270 </param> | |
271 <when value="BadCigar"> | |
272 <!-- no extra options --> | |
273 </when> | |
274 <when value="BadMate"> | |
275 <!-- no extra options --> | |
276 </when> | |
277 <when value="DuplicateRead"> | |
278 <!-- no extra options --> | |
279 </when> | |
280 <when value="FailsVendorQualityCheck"> | |
281 <!-- no extra options --> | |
282 </when> | |
283 <when value="MalformedRead"> | |
35 | 284 <param name="filter_mismatching_base_and_quals" type="boolean" truevalue="--filter_mismatching_base_and_quals" falsevalue="" checked="false" label="filter out the reads with mismatching number of bases and base qualities" help="filter out the mismatch reads instead of quitting with an error"/> |
0 | 285 </when> |
286 <when value="MappingQuality"> | |
287 <param name="min_mapping_quality_score" type="integer" value="10" label="Minimum read mapping quality required to consider a read for calling"/> | |
288 </when> | |
289 <when value="MappingQualityUnavailable"> | |
290 <!-- no extra options --> | |
291 </when> | |
292 <when value="MappingQualityZero"> | |
293 <!-- no extra options --> | |
294 </when> | |
295 <when value="MateSameStrand"> | |
296 <!-- no extra options --> | |
297 </when> | |
298 <when value="MaxInsertSize"> | |
299 <param name="maxInsertSize" type="integer" value="1000000" label="Discard reads with insert size greater than the specified value"/> | |
300 </when> | |
301 <when value="MaxReadLength"> | |
302 <param name="maxReadLength" type="integer" value="76" label="Max Read Length"/> | |
303 </when> | |
304 <when value="MissingReadGroup"> | |
305 <!-- no extra options --> | |
306 </when> | |
307 <when value="NoOriginalQualityScores"> | |
308 <!-- no extra options --> | |
309 </when> | |
310 <when value="NotPrimaryAlignment"> | |
311 <!-- no extra options --> | |
312 </when> | |
313 <when value="Platform454"> | |
314 <!-- no extra options --> | |
315 </when> | |
316 <when value="Platform"> | |
317 <param name="PLFilterName" type="text" value="" label="Discard reads with RG:PL attribute containing this string"/> | |
318 </when> | |
319 <when value="PlatformUnit"> | |
320 <!-- no extra options --> | |
321 </when> | |
322 <when value="ReadGroupBlackList"> | |
323 <!-- no extra options --> | |
324 </when> | |
325 <when value="ReadName"> | |
326 <param name="readName" type="text" value="" label="Filter out all reads except those with this read name"/> | |
327 </when> | |
328 <when value="ReadStrand"> | |
329 <param name="filterPositive" type="boolean" truevalue="--filterPositive" falsevalue="" label="Discard reads on the forward strand"/> | |
330 </when> | |
331 <when value="ReassignMappingQuality"> | |
332 <param name="default_mapping_quality" type="integer" value="60" label="Default read mapping quality to assign to all reads"/> | |
333 </when> | |
334 <when value="Sample"> | |
335 <param name="sample_to_keep" type="text" value="" label="The name of the sample(s) to keep, filtering out all others"/> | |
336 </when> | |
337 <when value="SingleReadGroup"> | |
338 <param name="read_group_to_keep" type="integer" value="76" label="The name of the read group to keep, filtering out all others"/> | |
339 </when> | |
340 <when value="UnmappedRead"> | |
341 <!-- no extra options --> | |
342 </when> | |
343 </conditional> | |
344 </repeat> | |
345 <repeat name="input_interval_repeat" title="Operate on Genomic intervals" help="-L,--intervals &lt;intervals&gt;"> | |
346 <param name="input_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
347 </repeat> | |
348 <repeat name="input_exclude_interval_repeat" title="Exclude Genomic intervals" help="-XL,--excludeIntervals &lt;excludeIntervals&gt;"> | |
349 <param name="input_exclude_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
350 </repeat> | |
351 | |
352 <param name="interval_set_rule" type="select" label="Interval set rule" help="-isr,--interval_set_rule &lt;interval_set_rule&gt;"> | |
353 <option value="UNION" selected="True">UNION</option> | |
354 <option value="INTERSECTION">INTERSECTION</option> | |
355 </param> | |
356 | |
357 <conditional name="downsampling_type"> | |
358 <param name="downsampling_type_selector" type="select" label="Type of reads downsampling to employ at a given locus" help="-dt,--downsampling_type &lt;downsampling_type&gt;"> | |
359 <option value="NONE" selected="True">NONE</option> | |
360 <option value="ALL_READS">ALL_READS</option> | |
361 <option value="BY_SAMPLE">BY_SAMPLE</option> | |
362 </param> | |
363 <when value="NONE"> | |
364 <!-- no more options here --> | |
365 </when> | |
366 <when value="ALL_READS"> | |
367 <conditional name="downsample_to_type"> | |
368 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
369 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
370 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
371 </param> | |
372 <when value="downsample_to_fraction"> | |
373 <param name="downsample_to_value" type="float" label="Fraction [0.0-1.0] of reads to downsample to" value="1" min="0" max="1" help="-dfrac,--downsample_to_fraction &lt;downsample_to_fraction&gt;"/> | |
374 </when> | |
375 <when value="downsample_to_coverage"> | |
376 <param name="downsample_to_value" type="integer" label="Coverage to downsample to at any given locus" value="0" help="-dcov,--downsample_to_coverage &lt;downsample_to_coverage&gt;"/> | |
377 </when> | |
378 </conditional> | |
379 </when> | |
380 <when value="BY_SAMPLE"> | |
381 <conditional name="downsample_to_type"> | |
382 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
383 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
384 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
385 </param> | |
386 <when value="downsample_to_fraction"> | |
387 <param name="downsample_to_value" type="float" label="Fraction [0.0-1.0] of reads to downsample to" value="1" min="0" max="1" help="-dfrac,--downsample_to_fraction &lt;downsample_to_fraction&gt;"/> | |
388 </when> | |
389 <when value="downsample_to_coverage"> | |
390 <param name="downsample_to_value" type="integer" label="Coverage to downsample to at any given locus" value="0" help="-dcov,--downsample_to_coverage &lt;downsample_to_coverage&gt;"/> | |
391 </when> | |
392 </conditional> | |
393 </when> | |
394 </conditional> | |
395 <param name="baq" type="select" label="Type of BAQ calculation to apply in the engine" help="-baq,--baq &lt;baq&gt;"> | |
396 <option value="OFF" selected="True">OFF</option> | |
397 <option value="CALCULATE_AS_NECESSARY">CALCULATE_AS_NECESSARY</option> | |
398 <option value="RECALCULATE">RECALCULATE</option> | |
399 </param> | |
400 <param name="baq_gap_open_penalty" type="float" label="BAQ gap open penalty (Phred Scaled)" value="40" help="Default value is 40. 30 is perhaps better for whole genome call sets. -baqGOP,--baqGapOpenPenalty &lt;baqGapOpenPenalty&gt;" /> | |
401 <param name="use_original_qualities" type="boolean" truevalue="--useOriginalQualities" falsevalue="" label="Use the original base quality scores from the OQ tag" help="-OQ,--useOriginalQualities" /> | |
402 <param name="default_base_qualities" type="integer" label="Value to be used for all base quality scores, when some are missing" value="-1" help="-DBQ,--defaultBaseQualities &lt;defaultBaseQualities&gt;"/> | |
403 <param name="validation_strictness" type="select" label="How strict should we be with validation" help="-S,--validation_strictness &lt;validation_strictness&gt;"> | |
404 <option value="STRICT" selected="True">STRICT</option> | |
405 <option value="LENIENT">LENIENT</option> | |
406 <option value="SILENT">SILENT</option> | |
407 <!-- <option value="DEFAULT_STRINGENCY">DEFAULT_STRINGENCY</option> listed in docs, but not valid value...--> | |
408 </param> | |
409 <param name="interval_merging" type="select" label="Interval merging rule" help="-im,--interval_merging &lt;interval_merging&gt;"> | |
410 <option value="ALL" selected="True">ALL</option> | |
411 <option value="OVERLAPPING_ONLY">OVERLAPPING_ONLY</option> | |
412 </param> | |
413 | |
414 <repeat name="read_group_black_list_repeat" title="Read group black list" help="-rgbl,--read_group_black_list &lt;read_group_black_list&gt;"> | |
415 <conditional name="read_group_black_list_type"> | |
416 <param name="read_group_black_list_type_selector" type="select" label="Type of reads read group black list"> | |
417 <option value="file" selected="True">Filters in file</option> | |
418 <option value="text">Specify filters as a string</option> | |
419 </param> | |
420 <when value="file"> | |
421 <param name="read_group_black_list" type="data" format="txt" label="Read group black list file" /> | |
422 </when> | |
423 <when value="text"> | |
424 <param name="read_group_black_list" type="text" value="tag:string" label="Read group black list tag:string" /> | |
425 </when> | |
426 </conditional> | |
427 </repeat> | |
428 | |
429 <param name="disable_experimental_low_memory_sharding" type="boolean" truevalue="--disable_experimental_low_memory_sharding" falsevalue="" label="Disable experimental low-memory sharding functionality." checked="False" help="--disable_experimental_low_memory_sharding"/> | |
430 <param name="non_deterministic_random_seed" type="boolean" truevalue="--nonDeterministicRandomSeed" falsevalue="" label="Makes the GATK behave non deterministically, that is, the random numbers generated will be different in every run" checked="False" help="-ndrs,--nonDeterministicRandomSeed"/> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
1
diff
changeset
|
431 <param name="fix_misencoded_quality_scores" type="boolean" truevalue="--fix_misencoded_quality_scores" falsevalue="" label="Fix mis-encoded base quality scores. Q0 == ASCII 33 according to the SAM specification, whereas Illumina encoding starts at Q64. The idea here is simple: we just iterate over all reads and subtract 31 from every quality score." checked="False" help="-fixMisencodedQuals / --fix_misencoded_quality_scores"/> |
0 | 432 |
433 </when> | |
434 </conditional> | |
435 | |
436 <conditional name="analysis_param_type"> | |
437 <param name="analysis_param_type_selector" type="select" label="Basic or Advanced Analysis options"> | |
438 <option value="basic" selected="True">Basic</option> | |
439 <option value="advanced">Advanced</option> | |
440 </param> | |
441 <when value="basic"> | |
442 <!-- Do nothing here --> | |
443 </when> | |
444 <when value="advanced"> | |
445 <param name="p_nonref_model" type="select" label="Non-reference probability calculation model to employ" help="-pnrm,--p_nonref_model &lt;p_nonref_model&gt;"> | |
38
1061731ba6ed
Update options for UnifiedGenotyper p_nonref_model for version 2.3
Jim Johnson <jj@umn.edu>
parents:
37
diff
changeset
|
446 <option value="EXACT_GENERAL_PLOIDY" selected="True">EXACT_GENERAL_PLOIDY (supports any sample ploidy)</option> |
1061731ba6ed
Update options for UnifiedGenotyper p_nonref_model for version 2.3
Jim Johnson <jj@umn.edu>
parents:
37
diff
changeset
|
447 <option value="EXACT_REFERENCE">EXACT_REFERENCE (multi-allelic EXACT model. Extremely slow for many alternate alleles)</option> |
0 | 448 </param> |
449 <param name="heterozygosity" type="float" value="1e-3" label="Heterozygosity value used to compute prior likelihoods for any locus" help="-hets,--heterozygosity &lt;heterozygosity&gt;" /> | |
450 <param name="pcr_error_rate" type="float" value="1e-4" label="The PCR error rate to be used for computing fragment-based likelihoods" help="-pcr_error,--pcr_error_rate &lt;pcr_error_rate&gt;" /> | |
451 <conditional name="genotyping_mode_type"> | |
452 <param name="genotyping_mode" type="select" label="How to determine the alternate allele to use for genotyping" help="-gt_mode,--genotyping_mode &lt;genotyping_mode&gt;"> | |
453 <option value="DISCOVERY" selected="True">DISCOVERY</option> | |
454 <option value="GENOTYPE_GIVEN_ALLELES">GENOTYPE_GIVEN_ALLELES</option> | |
455 </param> | |
456 <when value="DISCOVERY"> | |
457 <!-- Do nothing here --> | |
458 </when> | |
459 <when value="GENOTYPE_GIVEN_ALLELES"> | |
460 <param name="input_alleles_rod" type="data" format="vcf" label="Alleles ROD file" help="-alleles,--alleles &lt;alleles&gt;" /> | |
461 </when> | |
462 </conditional> | |
463 <param name="output_mode" type="select" label="Should we output confident genotypes (i.e. including ref calls) or just the variants?" help="-out_mode,--output_mode &lt;output_mode&gt;"> | |
464 <option value="EMIT_VARIANTS_ONLY" selected="True">EMIT_VARIANTS_ONLY</option> | |
465 <option value="EMIT_ALL_CONFIDENT_SITES">EMIT_ALL_CONFIDENT_SITES</option> | |
466 <option value="EMIT_ALL_SITES">EMIT_ALL_SITES</option> | |
467 </param> | |
468 <param name="compute_SLOD" type="boolean" truevalue="--computeSLOD" falsevalue="" label="Compute the SLOD" help="--computeSLOD" /> | |
469 <param name="min_base_quality_score" type="integer" value="17" label="Minimum base quality required to consider a base for calling" help="-mbq,--min_base_quality_score &lt;min_base_quality_score&gt;" /> | |
470 <param name="max_deletion_fraction" type="float" value="0.05" label="Maximum fraction of reads with deletions spanning this locus for it to be callable" help="to disable, set to < 0 or > 1 (-deletions,--max_deletion_fraction &lt;max_deletion_fraction&gt;)" /> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
1
diff
changeset
|
471 <param name="max_alternate_alleles" type="integer" value="6" label="Maximum number of alternate alleles to genotype" help="-maxAlleles,--max_alternate_alleles &lt;max_alternate_alleles&gt;" /> |
0 | 472 <param name="min_indel_count_for_genotyping" type="integer" value="5" label="Minimum number of consensus indels required to trigger genotyping run" help="-minIndelCnt,--min_indel_count_for_genotyping &lt;min_indel_count_for_genotyping&gt;" /> |
473 <param name="indel_heterozygosity" type="float" value="0.000125" label="Heterozygosity for indel calling" help="1.0/8000==0.000125 (-indelHeterozygosity,--indel_heterozygosity &lt;indel_heterozygosity&gt;)"/> | |
37
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
474 <param name="indelGapContinuationPenalty" type="integer" value="10" label="Indel gap continuation penalty" help="--indelGapContinuationPenalty"> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
475 <help>Indel gap continuation penalty, as Phred-scaled probability. I.e., 30 => 10^-30/10.</help> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
476 <validator type="in_range" message="value between 0 and 255" min="0" max="255"/> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
477 </param> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
478 <param name="indelGapOpenPenalty" type="integer" value="45" label="Indel gap open penalty" help="--indelGapOpenPenalty" > |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
479 <help>Indel gap open penalty, as Phred-scaled probability. I.e., 30 => 10^-30/10.</help> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
480 <validator type="in_range" message="value between 0 and 255" min="0" max="255"/> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
481 </param> |
dd9f8ea2b718
unified_genotyper - indelGap penalty param need to be integer values
Jim Johnson <jj@umn.edu>
parents:
36
diff
changeset
|
482 <!-- indelHaplotypeSize - Gone in GATK 2.4? --> |
0 | 483 <param name="indelHaplotypeSize" type="integer" value="80" label="Indel haplotype size" help="--indelHaplotypeSize" /> |
484 <param name="doContextDependentGapPenalties" type="boolean" truevalue="--doContextDependentGapPenalties" falsevalue="" label="Vary gap penalties by context" help="--doContextDependentGapPenalties" /> | |
485 <param name="annotation" type="select" multiple="True" display="checkboxes" label="Annotation Types" help="-A,--annotation &lt;annotation&gt;"> | |
486 <!-- load the available annotations from an external configuration file, since additional ones can be added to local installs --> | |
487 <options from_data_table="gatk2_annotations"> | |
488 <filter type="multiple_splitter" column="tools_valid_for" separator=","/> | |
489 <filter type="static_value" value="UnifiedGenotyper" column="tools_valid_for"/> | |
490 </options> | |
491 </param> | |
492 <repeat name="additional_annotations" title="Additional annotation" help="-A,--annotation &lt;annotation&gt;"> | |
493 <param name="additional_annotation_name" type="text" value="" label="Annotation name" /> | |
494 </repeat> | |
495 <!-- | |
496 <conditional name="snpEff_rod_bind_type"> | |
497 <param name="snpEff_rod_bind_type_selector" type="select" label="Provide a snpEff reference-ordered data file"> | |
498 <option value="set_snpEff">Set snpEff</option> | |
499 <option value="exclude_snpEff" selected="True">Don't set snpEff</option> | |
500 </param> | |
501 <when value="exclude_snpEff"> | |
502 </when> | |
503 <when value="set_snpEff"> | |
504 <param name="snpEff_input_rod" type="data" format="vcf" label="ROD file" /> | |
505 <param name="snpEff_rod_name" type="hidden" value="snpEff" label="ROD Name"/> | |
506 </when> | |
507 </conditional> | |
508 --> | |
509 <param name="group" type="select" multiple="True" display="checkboxes" label="Annotation Interfaces/Groups" help="-G,--group &lt;group&gt;"> | |
510 <option value="RodRequiringAnnotation">RodRequiringAnnotation</option> | |
511 <option value="Standard">Standard</option> | |
512 <option value="Experimental">Experimental</option> | |
513 <option value="WorkInProgress">WorkInProgress</option> | |
514 <option value="RankSumTest">RankSumTest</option> | |
515 <!-- <option value="none">none</option> --> | |
516 </param> | |
517 <!-- <param name="family_string" type="text" value="" label="Family String"/> --> | |
518 <param name="exclude_annotations" type="select" multiple="True" display="checkboxes" label="Annotations to exclude" help="-XA,--excludeAnnotation &lt;excludeAnnotation&gt;" > | |
519 <!-- load the available annotations from an external configuration file, since additional ones can be added to local installs --> | |
520 <options from_data_table="gatk2_annotations"> | |
521 <filter type="multiple_splitter" column="tools_valid_for" separator=","/> | |
522 <filter type="static_value" value="UnifiedGenotyper" column="tools_valid_for"/> | |
523 </options> | |
524 </param> | |
525 <param name="multiallelic" type="boolean" truevalue="--multiallelic" falsevalue="" label="Allow the discovery of multiple alleles (SNPs only)" help="--multiallelic" /> | |
32
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
526 <param name="sample_ploidy" type="integer" value="" optional="true" label="Ploidy (number of chromosomes) per sample." help="--sample_ploidy / -ploidy (default value 2 ). For pooled data, set to (Number of samples in each pool * Sample Ploidy)."> |
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
527 <validator type="in_range" message="Ploidy must be at least 1" min="1" /> |
fd9d089a9ff4
unified_genotyper - add sample_poidy param
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
528 </param> |
0 | 529 </when> |
530 </conditional> | |
531 </inputs> | |
532 <outputs> | |
533 <data format="vcf" name="output_vcf" label="${tool.name} on ${on_string} (VCF)" /> | |
534 <data format="txt" name="output_metrics" label="${tool.name} on ${on_string} (metrics)" /> | |
535 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | |
536 </outputs> | |
537 <trackster_conf/> | |
538 <tests> | |
539 <test> | |
540 <param name="reference_source_selector" value="history" /> | |
541 <param name="ref_file" value="phiX.fasta" ftype="fasta" /> | |
542 <param name="input_bam" value="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.bam" ftype="bam" /> | |
543 <param name="rod_bind_type_selector" value="dbsnp" /> | |
544 <param name="input_rod" value="gatk/fake_phiX_variant_locations.vcf" ftype="vcf" /> | |
545 <param name="standard_min_confidence_threshold_for_calling" value="0" /> | |
546 <param name="standard_min_confidence_threshold_for_emitting" value="4" /> | |
547 <param name="gatk_param_type_selector" value="basic" /> | |
548 <param name="analysis_param_type_selector" value="advanced" /> | |
549 <param name="genotype_likelihoods_model" value="BOTH" /> | |
550 <param name="p_nonref_model" value="EXACT" /> | |
551 <param name="heterozygosity" value="0.001" /> | |
552 <param name="pcr_error_rate" value="0.0001" /> | |
553 <param name="genotyping_mode" value="DISCOVERY" /> | |
554 <param name="output_mode" value="EMIT_ALL_CONFIDENT_SITES" /> | |
555 <param name="compute_SLOD" /> | |
556 <param name="min_base_quality_score" value="17" /> | |
557 <param name="max_deletion_fraction" value="-1" /> | |
558 <param name="min_indel_count_for_genotyping" value="2" /> | |
559 <param name="indel_heterozygosity" value="0.000125" /> | |
560 <param name="indelGapContinuationPenalty" value="10" /> | |
561 <param name="indelGapOpenPenalty" value="3" /> | |
562 <param name="indelHaplotypeSize" value="80" /> | |
563 <param name="doContextDependentGapPenalties" /> | |
564 <!-- <param name="annotation" value="" /> | |
565 <param name="group" value="" /> --> | |
566 <output name="output_vcf" file="gatk/gatk_unified_genotyper/gatk_unified_genotyper_out_1.vcf" lines_diff="4" /> | |
567 <output name="output_metrics" file="gatk/gatk_unified_genotyper/gatk_unified_genotyper_out_1.metrics" /> | |
568 <output name="output_log" file="gatk/gatk_unified_genotyper/gatk_unified_genotyper_out_1.log.contains" compare="contains" /> | |
569 </test> | |
570 </tests> | |
571 <help> | |
572 **What it does** | |
573 | |
574 A variant caller which unifies the approaches of several disparate callers. Works for single-sample and multi-sample data. The user can choose from several different incorporated calculation models. | |
575 | |
576 For more information on the GATK Unified Genotyper, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_genotyper_UnifiedGenotyper.html>`_. | |
577 | |
578 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_. | |
579 | |
580 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_. | |
581 | |
582 ------ | |
583 | |
584 **Inputs** | |
585 | |
586 GenomeAnalysisTK: UnifiedGenotyper accepts an aligned BAM input file. | |
587 | |
588 | |
589 **Outputs** | |
590 | |
591 The output is in VCF format. | |
592 | |
593 | |
594 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats. | |
595 | |
596 ------- | |
597 | |
598 **Settings**:: | |
599 | |
600 genotype_likelihoods_model Genotype likelihoods calculation model to employ -- BOTH is the default option, while INDEL is also available for calling indels and SNP is available for calling SNPs only (SNP|INDEL|BOTH) | |
38
1061731ba6ed
Update options for UnifiedGenotyper p_nonref_model for version 2.3
Jim Johnson <jj@umn.edu>
parents:
37
diff
changeset
|
601 p_nonref_model Non-reference probability calculation model to employ -- EXACT_GENERAL_PLOIDY is the default option, while EXACT_REFERENCE is also available. (EXACT_INDEPENDENT,EXACT_REFERENCE,EXACT_ORIGINAL,EXACT_GENERAL_PLOIDY) |
0 | 602 heterozygosity Heterozygosity value used to compute prior likelihoods for any locus |
603 pcr_error_rate The PCR error rate to be used for computing fragment-based likelihoods | |
604 genotyping_mode Should we output confident genotypes (i.e. including ref calls) or just the variants? (DISCOVERY|GENOTYPE_GIVEN_ALLELES) | |
605 output_mode Should we output confident genotypes (i.e. including ref calls) or just the variants? (EMIT_VARIANTS_ONLY|EMIT_ALL_CONFIDENT_SITES|EMIT_ALL_SITES) | |
606 standard_min_confidence_threshold_for_calling The minimum phred-scaled confidence threshold at which variants not at 'trigger' track sites should be called | |
607 standard_min_confidence_threshold_for_emitting The minimum phred-scaled confidence threshold at which variants not at 'trigger' track sites should be emitted (and filtered if less than the calling threshold) | |
608 noSLOD If provided, we will not calculate the SLOD | |
609 min_base_quality_score Minimum base quality required to consider a base for calling | |
610 max_deletion_fraction Maximum fraction of reads with deletions spanning this locus for it to be callable [to disable, set to < 0 or > 1; default:0.05] | |
611 min_indel_count_for_genotyping Minimum number of consensus indels required to trigger genotyping run | |
612 indel_heterozygosity Heterozygosity for indel calling | |
613 indelGapContinuationPenalty Indel gap continuation penalty | |
614 indelGapOpenPenalty Indel gap open penalty | |
615 indelHaplotypeSize Indel haplotype size | |
616 doContextDependentGapPenalties Vary gap penalties by context | |
617 indel_recal_file Filename for the input covariates table recalibration .csv file - EXPERIMENTAL, DO NO USE | |
618 indelDebug Output indel debug info | |
619 out File to which variants should be written | |
620 annotation One or more specific annotations to apply to variant calls | |
621 group One or more classes/groups of annotations to apply to variant calls | |
622 | |
623 ------ | |
624 | |
625 **Citation** | |
626 | |
627 For the underlying tool, please cite `DePristo MA, Banks E, Poplin R, Garimella KV, Maguire JR, Hartl C, Philippakis AA, del Angel G, Rivas MA, Hanna M, McKenna A, Fennell TJ, Kernytsky AM, Sivachenko AY, Cibulskis K, Gabriel SB, Altshuler D, Daly MJ. A framework for variation discovery and genotyping using next-generation DNA sequencing data. Nat Genet. 2011 May;43(5):491-8. <http://www.ncbi.nlm.nih.gov/pubmed/21478889>`_ | |
628 | |
629 Please also site `McKenna A, Hanna M, Banks E, Sivachenko A, Cibulskis K, Kernytsky A, Garimella K, Altshuler D, Gabriel S, Daly M, DePristo MA (2010). The Genome Analysis Toolkit: a MapReduce framework for analyzing next-generation DNA sequencing data. Genome Res. 20:1297-303. Epub 2010 Jul 19. <http://www.ncbi.nlm.nih.gov/pubmed/20644199>`_ | |
630 | |
631 If you use this tool in Galaxy, please cite `Blankenberg D, Von Kuster G, Coraor N, Ananda G, Lazarus R, Mangan M, Nekrutenko A, Taylor J. Galaxy: a web-based genome analysis tool for experimentalists. Curr Protoc Mol Biol. 2010 Jan;Chapter 19:Unit 19.10.1-21. <http://www.ncbi.nlm.nih.gov/pubmed/20069535>`_ | |
632 | |
633 </help> | |
634 </tool> |