Mercurial > repos > jjohnson > gatk2
annotate print_reads.xml @ 31:a5c55503d196 draft
variant_recalibrator Omit --read_filter for MalformedReadFilter since it included by default, allows --filter_mismatching_base_and_quals to be set
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Thu, 28 Feb 2013 12:44:55 -0600 |
parents | 6ef8eb568700 |
children | 76f8ca47b810 |
rev | line source |
---|---|
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
1 <tool id="gatk2_print_reads" name="Print Reads" version="0.0.5"> |
0 | 2 <description>on BAM files</description> |
3 <requirements> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
4 <requirement type="package" version="2.3">gatk</requirement> |
0 | 5 <requirement type="package" version="0.1.18">samtools</requirement> |
6 </requirements> | |
7 <command interpreter="python">gatk2_wrapper.py | |
8 --max_jvm_heap_fraction "1" | |
9 --stdout "${output_log}" | |
10 -d "-I" "${reference_source.input_bam}" "${reference_source.input_bam.ext}" "gatk_input" | |
11 #if str( $reference_source.input_bam.metadata.bam_index ) != "None": | |
12 -d "" "${reference_source.input_bam.metadata.bam_index}" "bam_index" "gatk_input" ##hardcode galaxy ext type as bam_index | |
13 #end if | |
14 -p 'java | |
15 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" | |
16 -T "PrintReads" | |
17 -o "${output_bam}" | |
18 \$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
|
19 \$GATK2_NUM_CPU_THREADS |
0 | 20 ##-et "NO_ET" -K "/data/galaxy/appList/GenomeAnalysisTK-2.0-36-gf5c1c1a/gatk2_key_file" ##ET no phone home |
21 ##--num_threads 4 ##not supported yet | |
22 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout | |
23 #if $reference_source.reference_source_selector != "history": | |
24 -R "${reference_source.ref_file.fields.path}" | |
25 #end if | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
26 #if str($input_recal) != 'None': |
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
27 --BQSR "${input_recal}" |
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
28 #end if |
0 | 29 --disable_bam_indexing |
30 ' | |
31 ##start standard gatk options | |
32 #if $gatk_param_type.gatk_param_type_selector == "advanced": | |
33 #for $pedigree in $gatk_param_type.pedigree: | |
34 -p '--pedigree "${pedigree.pedigree_file}"' | |
35 #end for | |
36 #for $pedigree_string in $gatk_param_type.pedigree_string_repeat: | |
37 -p '--pedigreeString "${pedigree_string.pedigree_string}"' | |
38 #end for | |
39 -p '--pedigreeValidationType "${gatk_param_type.pedigree_validation_type}"' | |
40 #for $read_filter in $gatk_param_type.read_filter: | |
41 -p '--read_filter "${read_filter.read_filter_type.read_filter_type_selector}" | |
42 ###raise Exception( str( dir( $read_filter ) ) ) | |
43 #for $name, $param in $read_filter.read_filter_type.iteritems(): | |
44 #if $name not in [ "__current_case__", "read_filter_type_selector" ]: | |
45 #if hasattr( $param.input, 'truevalue' ): | |
46 ${param} | |
47 #else: | |
48 --${name} "${param}" | |
49 #end if | |
50 #end if | |
51 #end for | |
52 ' | |
53 #end for | |
54 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_interval_repeat ): | |
55 -d "--intervals" "${input_intervals.input_intervals}" "${input_intervals.input_intervals.ext}" "input_intervals_${interval_count}" | |
56 #end for | |
57 | |
58 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_exclude_interval_repeat ): | |
59 -d "--excludeIntervals" "${input_intervals.input_exclude_intervals}" "${input_intervals.input_exclude_intervals.ext}" "input_exlude_intervals_${interval_count}" | |
60 #end for | |
61 | |
62 -p '--interval_set_rule "${gatk_param_type.interval_set_rule}"' | |
63 | |
64 -p '--downsampling_type "${gatk_param_type.downsampling_type.downsampling_type_selector}"' | |
65 #if str( $gatk_param_type.downsampling_type.downsampling_type_selector ) != "NONE": | |
66 -p '--${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_type_selector} "${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_value}"' | |
67 #end if | |
68 -p ' | |
69 --baq "${gatk_param_type.baq}" | |
70 --baqGapOpenPenalty "${gatk_param_type.baq_gap_open_penalty}" | |
71 ${gatk_param_type.use_original_qualities} | |
72 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" | |
73 --validation_strictness "${gatk_param_type.validation_strictness}" | |
74 --interval_merging "${gatk_param_type.interval_merging}" | |
75 ${gatk_param_type.disable_experimental_low_memory_sharding} | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
6
diff
changeset
|
76 ${gatk_param_type.fix_misencoded_quality_scores} |
0 | 77 ${gatk_param_type.non_deterministic_random_seed} |
78 ' | |
79 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): | |
80 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": | |
81 -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}" | |
82 #else | |
83 -p '--read_group_black_list "${rg_black_list.read_group_black_list_type.read_group_black_list}"' | |
84 #end if | |
85 #end for | |
86 #end if | |
87 | |
88 #if str( $reference_source.reference_source_selector ) == "history": | |
89 -d "-R" "${reference_source.ref_file}" "${reference_source.ref_file.ext}" "gatk_input" | |
90 #end if | |
91 ##end standard gatk options | |
92 | |
93 ##start analysis specific options | |
94 #if $analysis_param_type.analysis_param_type_selector == "advanced": | |
95 -p ' | |
96 #if $analysis_param_type.default_read_group_type.default_read_group_type_selector == "set": | |
97 --default_read_group "${analysis_param_type.default_read_group_type.default_read_group}" | |
98 #end if | |
99 #if str( $analysis_param_type.default_platform ) != "default": | |
100 --default_platform "${analysis_param_type.default_platform}" | |
101 #end if | |
102 #if str( $analysis_param_type.force_read_group_type.force_read_group_type_selector ) == "set": | |
103 --force_read_group "${analysis_param_type.force_read_group_type.force_read_group}" | |
104 #end if | |
105 #if str( $analysis_param_type.force_platform ) != "default": | |
106 --force_platform "${analysis_param_type.force_platform}" | |
107 #end if | |
108 ${analysis_param_type.exception_if_no_tile} | |
109 #if str( $analysis_param_type.solid_options_type.solid_options_type_selector ) == "set": | |
110 #if str( $analysis_param_type.solid_options_type.solid_recal_mode ) != "default": | |
111 --solid_recal_mode "${analysis_param_type.solid_options_type.solid_recal_mode}" | |
112 #end if | |
113 #if str( $analysis_param_type.solid_options_type.solid_nocall_strategy ) != "default": | |
114 --solid_nocall_strategy "${analysis_param_type.solid_options_type.solid_nocall_strategy}" | |
115 #end if | |
116 #end if | |
117 ${analysis_param_type.simplify_bam} | |
118 --preserve_qscores_less_than "${analysis_param_type.preserve_qscores_less_than}" | |
119 --smoothing "${analysis_param_type.smoothing}" | |
120 --max_quality_score "${analysis_param_type.max_quality_score}" | |
121 --window_size_nqs "${analysis_param_type.window_size_nqs}" | |
122 --homopolymer_nback "${analysis_param_type.homopolymer_nback}" | |
123 ${analysis_param_type.do_not_write_original_quals} | |
124 ' | |
125 #end if | |
126 </command> | |
127 <inputs> | |
6 | 128 <param name="input_recal" type="data" format="csv" optional="true" label="Covariates table recalibration file" help="-BQSR,--BQSR &lt;recal_file&gt;" /> |
0 | 129 <conditional name="reference_source"> |
130 <param name="reference_source_selector" type="select" label="Choose the source for the reference list"> | |
131 <option value="cached">Locally cached</option> | |
132 <option value="history">History</option> | |
133 </param> | |
134 <when value="cached"> | |
135 <param name="input_bam" type="data" format="bam" label="BAM file" help="-I,--input_file &lt;input_file&gt;"> | |
136 <validator type="unspecified_build" /> | |
137 <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 --> | |
138 </param> | |
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"/> | |
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"> | |
147 <param name="input_bam" type="data" format="bam" label="BAM file" help="-I,--input_file &lt;input_file&gt;" /> | |
148 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;"> | |
149 <options> | |
150 <filter type="data_meta" key="dbkey" ref="input_bam" /> | |
151 </options> | |
152 </param> | |
153 </when> | |
154 </conditional> | |
155 | |
156 <conditional name="gatk_param_type"> | |
157 <param name="gatk_param_type_selector" type="select" label="Basic or Advanced GATK options"> | |
158 <option value="basic" selected="True">Basic</option> | |
159 <option value="advanced">Advanced</option> | |
160 </param> | |
161 <when value="basic"> | |
162 <!-- Do nothing here --> | |
163 </when> | |
164 <when value="advanced"> | |
165 <repeat name="pedigree" title="Pedigree file" help="-ped,--pedigree &lt;pedigree&gt;"> | |
166 <param name="pedigree_file" type="data" format="txt" label="Pedigree files for samples"/> | |
167 </repeat> | |
168 <repeat name="pedigree_string_repeat" title="Pedigree string" help="-pedString,--pedigreeString &lt;pedigreeString&gt;"> | |
169 <param name="pedigree_string" type="text" value="" label="Pedigree string for samples"/> | |
170 </repeat> | |
171 <param name="pedigree_validation_type" type="select" label="How strict should we be in validating the pedigree information" help="-pedValidationType,--pedigreeValidationType &lt;pedigreeValidationType&gt;"> | |
172 <option value="STRICT" selected="True">STRICT</option> | |
173 <option value="SILENT">SILENT</option> | |
174 </param> | |
175 <repeat name="read_filter" title="Read Filter" help="-rf,--read_filter &lt;read_filter&gt;"> | |
176 <conditional name="read_filter_type"> | |
177 <param name="read_filter_type_selector" type="select" label="Read Filter Type"> | |
178 <option value="BadCigar">BadCigar</option> | |
179 <option value="BadMate">BadMate</option> | |
180 <option value="DuplicateRead">DuplicateRead</option> | |
181 <option value="FailsVendorQualityCheck">FailsVendorQualityCheck</option> | |
182 <option value="MalformedRead">MalformedRead</option> | |
183 <option value="MappingQuality">MappingQuality</option> | |
184 <option value="MappingQualityUnavailable">MappingQualityUnavailable</option> | |
185 <option value="MappingQualityZero">MappingQualityZero</option> | |
186 <option value="MateSameStrand">MateSameStrand</option> | |
187 <option value="MaxInsertSize">MaxInsertSize</option> | |
188 <option value="MaxReadLength" selected="True">MaxReadLength</option> | |
189 <option value="MissingReadGroup">MissingReadGroup</option> | |
190 <option value="NoOriginalQualityScores">NoOriginalQualityScores</option> | |
191 <option value="NotPrimaryAlignment">NotPrimaryAlignment</option> | |
192 <option value="Platform454">Platform454</option> | |
193 <option value="Platform">Platform</option> | |
194 <option value="PlatformUnit">PlatformUnit</option> | |
195 <option value="ReadGroupBlackList">ReadGroupBlackList</option> | |
196 <option value="ReadName">ReadName</option> | |
197 <option value="ReadStrand">ReadStrand</option> | |
198 <option value="ReassignMappingQuality">ReassignMappingQuality</option> | |
199 <option value="Sample">Sample</option> | |
200 <option value="SingleReadGroup">SingleReadGroup</option> | |
201 <option value="UnmappedRead">UnmappedRead</option> | |
202 </param> | |
203 <when value="BadCigar"> | |
204 <!-- no extra options --> | |
205 </when> | |
206 <when value="BadMate"> | |
207 <!-- no extra options --> | |
208 </when> | |
209 <when value="DuplicateRead"> | |
210 <!-- no extra options --> | |
211 </when> | |
212 <when value="FailsVendorQualityCheck"> | |
213 <!-- no extra options --> | |
214 </when> | |
215 <when value="MalformedRead"> | |
216 <!-- no extra options --> | |
217 </when> | |
218 <when value="MappingQuality"> | |
219 <param name="min_mapping_quality_score" type="integer" value="10" label="Minimum read mapping quality required to consider a read for calling"/> | |
220 </when> | |
221 <when value="MappingQualityUnavailable"> | |
222 <!-- no extra options --> | |
223 </when> | |
224 <when value="MappingQualityZero"> | |
225 <!-- no extra options --> | |
226 </when> | |
227 <when value="MateSameStrand"> | |
228 <!-- no extra options --> | |
229 </when> | |
230 <when value="MaxInsertSize"> | |
231 <param name="maxInsertSize" type="integer" value="1000000" label="Discard reads with insert size greater than the specified value"/> | |
232 </when> | |
233 <when value="MaxReadLength"> | |
234 <param name="maxReadLength" type="integer" value="76" label="Max Read Length"/> | |
235 </when> | |
236 <when value="MissingReadGroup"> | |
237 <!-- no extra options --> | |
238 </when> | |
239 <when value="NoOriginalQualityScores"> | |
240 <!-- no extra options --> | |
241 </when> | |
242 <when value="NotPrimaryAlignment"> | |
243 <!-- no extra options --> | |
244 </when> | |
245 <when value="Platform454"> | |
246 <!-- no extra options --> | |
247 </when> | |
248 <when value="Platform"> | |
249 <param name="PLFilterName" type="text" value="" label="Discard reads with RG:PL attribute containing this string"/> | |
250 </when> | |
251 <when value="PlatformUnit"> | |
252 <!-- no extra options --> | |
253 </when> | |
254 <when value="ReadGroupBlackList"> | |
255 <!-- no extra options --> | |
256 </when> | |
257 <when value="ReadName"> | |
258 <param name="readName" type="text" value="" label="Filter out all reads except those with this read name"/> | |
259 </when> | |
260 <when value="ReadStrand"> | |
261 <param name="filterPositive" type="boolean" truevalue="--filterPositive" falsevalue="" label="Discard reads on the forward strand"/> | |
262 </when> | |
263 <when value="ReassignMappingQuality"> | |
264 <param name="default_mapping_quality" type="integer" value="60" label="Default read mapping quality to assign to all reads"/> | |
265 </when> | |
266 <when value="Sample"> | |
267 <param name="sample_to_keep" type="text" value="" label="The name of the sample(s) to keep, filtering out all others"/> | |
268 </when> | |
269 <when value="SingleReadGroup"> | |
270 <param name="read_group_to_keep" type="integer" value="76" label="The name of the read group to keep, filtering out all others"/> | |
271 </when> | |
272 <when value="UnmappedRead"> | |
273 <!-- no extra options --> | |
274 </when> | |
275 </conditional> | |
276 </repeat> | |
277 <repeat name="input_interval_repeat" title="Operate on Genomic intervals" help="-L,--intervals &lt;intervals&gt;"> | |
278 <param name="input_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
279 </repeat> | |
280 <repeat name="input_exclude_interval_repeat" title="Exclude Genomic intervals" help="-XL,--excludeIntervals &lt;excludeIntervals&gt;"> | |
281 <param name="input_exclude_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
282 </repeat> | |
283 | |
284 <param name="interval_set_rule" type="select" label="Interval set rule" help="-isr,--interval_set_rule &lt;interval_set_rule&gt;"> | |
285 <option value="UNION" selected="True">UNION</option> | |
286 <option value="INTERSECTION">INTERSECTION</option> | |
287 </param> | |
288 | |
289 <conditional name="downsampling_type"> | |
290 <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;"> | |
291 <option value="NONE" selected="True">NONE</option> | |
292 <option value="ALL_READS">ALL_READS</option> | |
293 <option value="BY_SAMPLE">BY_SAMPLE</option> | |
294 </param> | |
295 <when value="NONE"> | |
296 <!-- no more options here --> | |
297 </when> | |
298 <when value="ALL_READS"> | |
299 <conditional name="downsample_to_type"> | |
300 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
301 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
302 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
303 </param> | |
304 <when value="downsample_to_fraction"> | |
305 <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;"/> | |
306 </when> | |
307 <when value="downsample_to_coverage"> | |
308 <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;"/> | |
309 </when> | |
310 </conditional> | |
311 </when> | |
312 <when value="BY_SAMPLE"> | |
313 <conditional name="downsample_to_type"> | |
314 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
315 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
316 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
317 </param> | |
318 <when value="downsample_to_fraction"> | |
319 <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;"/> | |
320 </when> | |
321 <when value="downsample_to_coverage"> | |
322 <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;"/> | |
323 </when> | |
324 </conditional> | |
325 </when> | |
326 </conditional> | |
327 <param name="baq" type="select" label="Type of BAQ calculation to apply in the engine" help="-baq,--baq &lt;baq&gt;"> | |
328 <option value="OFF" selected="True">OFF</option> | |
329 <option value="CALCULATE_AS_NECESSARY">CALCULATE_AS_NECESSARY</option> | |
330 <option value="RECALCULATE">RECALCULATE</option> | |
331 </param> | |
332 <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;" /> | |
333 <param name="use_original_qualities" type="boolean" truevalue="--useOriginalQualities" falsevalue="" label="Use the original base quality scores from the OQ tag" help="-OQ,--useOriginalQualities" /> | |
334 <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;"/> | |
335 <param name="validation_strictness" type="select" label="How strict should we be with validation" help="-S,--validation_strictness &lt;validation_strictness&gt;"> | |
336 <option value="STRICT" selected="True">STRICT</option> | |
337 <option value="LENIENT">LENIENT</option> | |
338 <option value="SILENT">SILENT</option> | |
339 <!-- <option value="DEFAULT_STRINGENCY">DEFAULT_STRINGENCY</option> listed in docs, but not valid value...--> | |
340 </param> | |
341 <param name="interval_merging" type="select" label="Interval merging rule" help="-im,--interval_merging &lt;interval_merging&gt;"> | |
342 <option value="ALL" selected="True">ALL</option> | |
343 <option value="OVERLAPPING_ONLY">OVERLAPPING_ONLY</option> | |
344 </param> | |
345 | |
346 <repeat name="read_group_black_list_repeat" title="Read group black list" help="-rgbl,--read_group_black_list &lt;read_group_black_list&gt;"> | |
347 <conditional name="read_group_black_list_type"> | |
348 <param name="read_group_black_list_type_selector" type="select" label="Type of reads read group black list"> | |
349 <option value="file" selected="True">Filters in file</option> | |
350 <option value="text">Specify filters as a string</option> | |
351 </param> | |
352 <when value="file"> | |
353 <param name="read_group_black_list" type="data" format="txt" label="Read group black list file" /> | |
354 </when> | |
355 <when value="text"> | |
356 <param name="read_group_black_list" type="text" value="tag:string" label="Read group black list tag:string" /> | |
357 </when> | |
358 </conditional> | |
359 </repeat> | |
360 | |
361 <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"/> | |
362 <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:
6
diff
changeset
|
363 <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 | 364 |
365 </when> | |
366 </conditional> | |
367 | |
368 | |
369 <conditional name="analysis_param_type"> | |
370 <param name="analysis_param_type_selector" type="select" label="Basic or Advanced Analysis options"> | |
371 <option value="basic" selected="True">Basic</option> | |
372 <option value="advanced">Advanced</option> | |
373 </param> | |
374 <when value="basic"> | |
375 <!-- Do nothing here --> | |
376 </when> | |
377 <when value="advanced"> | |
378 <conditional name="default_read_group_type"> | |
379 <param name="default_read_group_type_selector" type="select" label="Set default Read Group" help="--default_read_group"> | |
380 <option value="default" selected="True">Don't Set</option> | |
381 <option value="set">Set</option> | |
382 </param> | |
383 <when value="default"> | |
384 <!-- do nothing here --> | |
385 </when> | |
386 <when value="set"> | |
387 <param name="default_read_group" type="text" value="Unknown" label="If a read has no read group then default to the provided String"/> | |
388 </when> | |
389 </conditional> | |
390 <param name="default_platform" type="select" label="Set default Platform" help="--default_platform"> | |
391 <option value="default" selected="True">Don't Set</option> | |
392 <option value="illumina">illumina</option> | |
393 <option value="454">454</option> | |
394 <option value="solid">solid</option> | |
395 </param> | |
396 <conditional name="force_read_group_type"> | |
397 <param name="force_read_group_type_selector" type="select" label="Force Read Group" help="--force_read_group"> | |
398 <option value="default" selected="True">Don't Force</option> | |
399 <option value="set">Force</option> | |
400 </param> | |
401 <when value="default"> | |
402 <!-- do nothing here --> | |
403 </when> | |
404 <when value="set"> | |
405 <param name="force_read_group" type="text" value="Unknown" label="If provided, the read group ID of EVERY read will be forced to be the provided String."/> | |
406 </when> | |
407 </conditional> | |
408 <param name="force_platform" type="select" label="Force Platform" help="--force_platform"> | |
409 <option value="default" selected="True">Don't Force</option> | |
410 <option value="illumina">illumina</option> | |
411 <option value="454">454</option> | |
412 <option value="solid">solid</option> | |
413 </param> | |
414 <param name="exception_if_no_tile" type="boolean" checked="False" truevalue="--exception_if_no_tile" falsevalue="" label="Throw an exception when no tile can be found" help="--exception_if_no_tile"/> | |
415 <conditional name="solid_options_type"> | |
416 <param name="solid_options_type_selector" type="select" label="Set SOLiD specific options"> | |
417 <option value="default" selected="True">Don't Set</option> | |
418 <option value="set">Set</option> | |
419 </param> | |
420 <when value="default"> | |
421 <!-- do nothing here --> | |
422 </when> | |
423 <when value="set"> | |
424 <param name="solid_recal_mode" type="select" label="How should we recalibrate solid bases in which the reference was inserted" help="-sMode,--solid_recal_mode &lt;solid_recal_mode&gt;"> | |
425 <option value="default" selected="True">Don't set</option> | |
426 <option value="DO_NOTHING">DO_NOTHING</option> | |
427 <option value="SET_Q_ZERO">SET_Q_ZERO</option> | |
428 <option value="SET_Q_ZERO_BASE_N">SET_Q_ZERO_BASE_N</option> | |
429 <option value="REMOVE_REF_BIAS">REMOVE_REF_BIAS</option> | |
430 </param> | |
431 <param name="solid_nocall_strategy" type="select" label="Behavior of the recalibrator when it encounters no calls" help="-solid_nocall_strategy,--solid_nocall_strategy &lt;solid_nocall_strategy&gt;"> | |
432 <option value="default" selected="True">Don't set</option> | |
433 <option value="THROW_EXCEPTION">THROW_EXCEPTION</option> | |
434 <option value="LEAVE_READ_UNRECALIBRATED">LEAVE_READ_UNRECALIBRATED</option> | |
435 <option value="PURGE_READ">PURGE_READ</option> | |
436 </param> | |
437 </when> | |
438 </conditional> | |
439 <param name="simplify_bam" type="boolean" checked="False" truevalue="-simplifyBAM" falsevalue="" label="Simplify BAM" help="-simplifyBAM,--simplifyBAM"/> | |
440 <param name="window_size_nqs" type="integer" value="5" label="Window size used by MinimumNQSCovariate" help="--window_size_nqs"/> | |
441 <param name="homopolymer_nback" type="integer" value="7" label="Number of previous bases to look at in HomopolymerCovariate" help="-nback,--homopolymer_nback &lt;homopolymer_nback&gt;" /> | |
442 <param name="preserve_qscores_less_than" type="integer" value="5" label="Bases with quality scores less than this threshold won't be recalibrated" help="-pQ,--preserve_qscores_less_than &lt;preserve_qscores_less_than&gt;"/> | |
443 <param name="smoothing" type="integer" value="1" label="smoothing" help="-sm,--smoothing &lt;smoothing&gt;"/> | |
444 <param name="max_quality_score" type="integer" value="50" label="Max quality score" help="-maxQ,--max_quality_score &lt;max_quality_score&gt;"/> | |
445 <param name="do_not_write_original_quals" type="boolean" checked="False" truevalue="--doNotWriteOriginalQuals" falsevalue="" label="Do Not Write Original Quality tag" help="-noOQs,--doNotWriteOriginalQuals"/> | |
446 </when> | |
447 </conditional> | |
448 </inputs> | |
449 <outputs> | |
450 <data format="bam" name="output_bam" label="${tool.name} on ${on_string} (BAM)" /> | |
451 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | |
452 </outputs> | |
453 <tests> | |
454 <test> | |
455 <param name="input_recal" value="gatk/gatk_count_covariates/gatk_count_covariates_out_1.csv" ftype="csv" /> | |
456 <param name="reference_source_selector" value="history" /> | |
457 <param name="ref_file" value="phiX.fasta" ftype="fasta" /> | |
458 <param name="input_bam" value="gatk/gatk_indel_realigner/gatk_indel_realigner_out_1.bam" ftype="bam" /> | |
459 <param name="gatk_param_type_selector" value="basic" /> | |
460 <param name="analysis_param_type_selector" value="basic" /> | |
461 <output name="output_bam" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.bam" ftype="bam" lines_diff="4" /> | |
462 <output name="output_log" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.log.contains" compare="contains" /> | |
463 </test> | |
464 </tests> | |
465 <help> | |
466 **What it does** | |
467 | |
468 This walker is designed to work as the second pass in a two-pass processing step, doing a by-read traversal. For each base in each read this walker calculates various user-specified covariates (such as read group, reported quality score, cycle, and dinuc) Using these values as a key in a large hashmap the walker calculates an empirical base quality score and overwrites the quality score currently in the read. This walker then outputs a new bam file with these updated (recalibrated) reads. Note: This walker expects as input the recalibration table file generated previously by CovariateCounterWalker. Note: This walker is designed to be used in conjunction with CovariateCounterWalker. | |
469 | |
470 For more information on base quality score recalibration using the GATK, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_PrintReads.html>`_. | |
471 | |
472 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_. | |
473 | |
474 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_. | |
475 | |
476 ------ | |
477 | |
478 **Inputs** | |
479 | |
480 GenomeAnalysisTK: PrintReads accepts an aligned BAM and a recalibration CSV input files. | |
481 | |
482 | |
483 **Outputs** | |
484 | |
485 The output is in BAM format. | |
486 | |
487 | |
488 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats. | |
489 | |
490 ------- | |
491 | |
492 **Settings**:: | |
493 | |
494 default_read_group If a read has no read group then default to the provided String. | |
495 default_platform If a read has no platform then default to the provided String. Valid options are illumina, 454, and solid. | |
496 force_read_group If provided, the read group ID of EVERY read will be forced to be the provided String. This is useful to collapse all data into a single read group. | |
497 force_platform If provided, the platform of EVERY read will be forced to be the provided String. Valid options are illumina, 454, and solid. | |
498 window_size_nqs The window size used by MinimumNQSCovariate for its calculation | |
499 homopolymer_nback The number of previous bases to look at in HomopolymerCovariate | |
500 exception_if_no_tile If provided, TileCovariate will throw an exception when no tile can be found. The default behavior is to use tile = -1 | |
501 solid_recal_mode How should we recalibrate solid bases in whichthe reference was inserted? Options = DO_NOTHING, SET_Q_ZERO, SET_Q_ZERO_BASE_N, or REMOVE_REF_BIAS (DO_NOTHING|SET_Q_ZERO|SET_Q_ZERO_BASE_N|REMOVE_REF_BIAS) | |
502 solid_nocall_strategy Defines the behavior of the recalibrator when it encounters no calls in the color space. Options = THROW_EXCEPTION, LEAVE_READ_UNRECALIBRATED, or PURGE_READ (THROW_EXCEPTION|LEAVE_READ_UNRECALIBRATED|PURGE_READ) | |
503 recal_file Filename for the input covariates table recalibration .csv file | |
504 out The output BAM file | |
505 bam_compression Compression level to use for writing BAM files | |
506 disable_bam_indexing Turn off on-the-fly creation of indices for output BAM files. | |
507 simplifyBAM If provided, output BAM files will be simplified to include just key reads for downstream variation discovery analyses (removing duplicates, PF-, non-primary reads), as well stripping all extended tags from the kept reads except the read group identifier | |
508 preserve_qscores_less_than Bases with quality scores less than this threshold won't be recalibrated, default=5. In general it's unsafe to change qualities scores below < 5, since base callers use these values to indicate random or bad bases | |
509 smoothing Number of imaginary counts to add to each bin bin order to smooth out bins with few data points, default=1 | |
510 max_quality_score The integer value at which to cap the quality scores, default=50 | |
511 doNotWriteOriginalQuals If true, we will not write the original quality (OQ) tag for each read | |
512 | |
513 ------ | |
514 | |
515 **Citation** | |
516 | |
517 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>`_ | |
518 | |
519 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>`_ | |
520 | |
521 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>`_ | |
522 | |
523 </help> | |
524 </tool> |