Mercurial > repos > jjohnson > gatk2
annotate reduce_reads.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 | 14d47237bb0a |
children |
rev | line source |
---|---|
34 | 1 <tool id="gatk2_reduce_reads" name="Reduce Reads" version="0.0.7"> |
6 | 2 <description>in BAM files</description> |
3 <requirements> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
14
diff
changeset
|
4 <requirement type="package" version="2.3">gatk</requirement> |
6 | 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 "ReduceReads" | |
17 -o "${output_bam}" | |
10
a14e79e7ac75
Comment out site options from reduce_reads.xml
Jim Johnson <jj@umn.edu>
parents:
7
diff
changeset
|
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_THREADS |
6 | 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 | |
26 #if str($input_recal) != 'None': | |
27 --BQSR "${input_recal}" | |
28 #end if | |
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}"' | |
35 | 40 #set default_read_filters = ['MalformedRead'] |
6 | 41 #for $read_filter in $gatk_param_type.read_filter: |
33
76f8ca47b810
Omit --read_filter param included by default
Jim Johnson <jj@umn.edu>
parents:
28
diff
changeset
|
42 -p ' |
35 | 43 #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:
28
diff
changeset
|
44 --read_filter "${read_filter.read_filter_type.read_filter_type_selector}" |
36 | 45 #end if |
6 | 46 #for $name, $param in $read_filter.read_filter_type.iteritems(): |
47 #if $name not in [ "__current_case__", "read_filter_type_selector" ]: | |
48 #if hasattr( $param.input, 'truevalue' ): | |
49 ${param} | |
50 #else: | |
51 --${name} "${param}" | |
52 #end if | |
53 #end if | |
54 #end for | |
55 ' | |
56 #end for | |
57 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_interval_repeat ): | |
58 -d "--intervals" "${input_intervals.input_intervals}" "${input_intervals.input_intervals.ext}" "input_intervals_${interval_count}" | |
59 #end for | |
60 | |
61 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_exclude_interval_repeat ): | |
62 -d "--excludeIntervals" "${input_intervals.input_exclude_intervals}" "${input_intervals.input_exclude_intervals.ext}" "input_exlude_intervals_${interval_count}" | |
63 #end for | |
64 | |
65 -p '--interval_set_rule "${gatk_param_type.interval_set_rule}"' | |
66 | |
67 -p '--downsampling_type "${gatk_param_type.downsampling_type.downsampling_type_selector}"' | |
68 #if str( $gatk_param_type.downsampling_type.downsampling_type_selector ) != "NONE": | |
69 -p '--${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_type_selector} "${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_value}"' | |
70 #end if | |
71 -p ' | |
72 --baq "${gatk_param_type.baq}" | |
73 --baqGapOpenPenalty "${gatk_param_type.baq_gap_open_penalty}" | |
74 ${gatk_param_type.use_original_qualities} | |
75 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" | |
76 --validation_strictness "${gatk_param_type.validation_strictness}" | |
77 --interval_merging "${gatk_param_type.interval_merging}" | |
78 ${gatk_param_type.disable_experimental_low_memory_sharding} | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
14
diff
changeset
|
79 ${gatk_param_type.fix_misencoded_quality_scores} |
6 | 80 ${gatk_param_type.non_deterministic_random_seed} |
81 ' | |
82 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): | |
83 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": | |
84 -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}" | |
85 #else | |
86 -p '--read_group_black_list "${rg_black_list.read_group_black_list_type.read_group_black_list}"' | |
87 #end if | |
88 #end for | |
89 #end if | |
90 | |
91 #if str( $reference_source.reference_source_selector ) == "history": | |
92 -d "-R" "${reference_source.ref_file}" "${reference_source.ref_file.ext}" "gatk_input" | |
93 #end if | |
94 ##end standard gatk options | |
95 | |
96 ##start analysis specific options | |
97 #if $analysis_param_type.analysis_param_type_selector == "advanced": | |
98 -p ' | |
99 #if $analysis_param_type.context_size.__str__.strip() != '': | |
100 --context_size $analysis_param_type.context_size | |
101 #end if | |
102 #if $analysis_param_type.downsample_coverage.__str__.strip() != '': | |
103 --downsample_coverage $analysis_param_type.downsample_coverage | |
104 #end if | |
105 #if $analysis_param_type.minimum_del_proportion_to_trigger_variant.__str__.strip() != '': | |
106 --minimum_del_proportion_to_trigger_variant $analysis_param_type.minimum_del_proportion_to_trigger_variant | |
107 #end if | |
108 #if $analysis_param_type.minimum_mapping_quality.__str__.strip() != '': | |
109 --minimum_mapping_quality $analysis_param_type.minimum_mapping_quality | |
110 #end if | |
111 #if $analysis_param_type.minimum_tail_qualities.__str__.strip() != '': | |
112 --minimum_tail_qualities $analysis_param_type.minimum_tail_qualities | |
113 #end if | |
114 #if $analysis_param_type.minimum_base_quality_to_consider.__str__.strip() != '': | |
115 --minimum_base_quality_to_consider $analysis_param_type.minimum_base_quality_to_consider | |
116 #end if | |
117 #if $analysis_param_type.minimum_alt_proportion_to_trigger_variant.__str__.strip() != '': | |
118 --minimum_alt_proportion_to_trigger_variant $analysis_param_type.minimum_alt_proportion_to_trigger_variant | |
119 #end if | |
120 $analysis_param_type.allow_polyploid_reduction | |
121 $analysis_param_type.dont_compress_read_names | |
122 $analysis_param_type.dont_hardclip_low_qual_tails | |
123 $analysis_param_type.dont_simplify_reads | |
124 $analysis_param_type.dont_use_softclipped_bases | |
125 $analysis_param_type.hard_clip_to_interval | |
126 $analysis_param_type.dont_hardclip_adaptor_sequences | |
127 ' | |
128 #end if | |
129 </command> | |
130 <inputs> | |
11 | 131 <param name="input_recal" type="data" format="csv" optional="true" label="Covariates table recalibration file" help="-BQSR,--BQSR &lt;recal_file&gt;" > |
132 <help>The input covariates table file which enables on-the-fly base quality score recalibration. | |
133 Enables on-the-fly recalibrate of base qualities. The covariates tables are produced by the BaseQualityScoreRecalibrator tool. | |
134 Please be aware that one should only run recalibration with the covariates file created on the same input bam(s). | |
135 </help> | |
136 </param> | |
6 | 137 <conditional name="reference_source"> |
138 <param name="reference_source_selector" type="select" label="Choose the source for the reference list"> | |
139 <option value="cached">Locally cached</option> | |
140 <option value="history">History</option> | |
141 </param> | |
142 <when value="cached"> | |
143 <param name="input_bam" type="data" format="bam" label="BAM file" help="-I,--input_file &lt;input_file&gt;"> | |
144 <validator type="unspecified_build" /> | |
145 <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 --> | |
146 </param> | |
147 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;" > | |
148 <options from_data_table="gatk2_picard_indexes"> | |
149 <filter type="data_meta" key="dbkey" ref="input_bam" column="dbkey"/> | |
150 </options> | |
151 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
152 </param> | |
153 </when> | |
154 <when value="history"> | |
155 <param name="input_bam" type="data" format="bam" label="BAM file" help="-I,--input_file &lt;input_file&gt;" /> | |
156 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;"> | |
157 <options> | |
158 <filter type="data_meta" key="dbkey" ref="input_bam" /> | |
159 </options> | |
160 </param> | |
161 </when> | |
162 </conditional> | |
163 | |
164 <conditional name="gatk_param_type"> | |
165 <param name="gatk_param_type_selector" type="select" label="Basic or Advanced GATK options"> | |
166 <option value="basic" selected="True">Basic</option> | |
167 <option value="advanced">Advanced</option> | |
168 </param> | |
169 <when value="basic"> | |
170 <!-- Do nothing here --> | |
171 </when> | |
172 <when value="advanced"> | |
173 <repeat name="pedigree" title="Pedigree file" help="-ped,--pedigree &lt;pedigree&gt;"> | |
174 <param name="pedigree_file" type="data" format="txt" label="Pedigree files for samples"/> | |
175 </repeat> | |
176 <repeat name="pedigree_string_repeat" title="Pedigree string" help="-pedString,--pedigreeString &lt;pedigreeString&gt;"> | |
177 <param name="pedigree_string" type="text" value="" label="Pedigree string for samples"/> | |
178 </repeat> | |
179 <param name="pedigree_validation_type" type="select" label="How strict should we be in validating the pedigree information" help="-pedValidationType,--pedigreeValidationType &lt;pedigreeValidationType&gt;"> | |
180 <option value="STRICT" selected="True">STRICT</option> | |
181 <option value="SILENT">SILENT</option> | |
182 </param> | |
183 <repeat name="read_filter" title="Read Filter" help="-rf,--read_filter &lt;read_filter&gt;"> | |
184 <conditional name="read_filter_type"> | |
185 <param name="read_filter_type_selector" type="select" label="Read Filter Type"> | |
186 <option value="BadCigar">BadCigar</option> | |
187 <option value="BadMate">BadMate</option> | |
188 <option value="DuplicateRead">DuplicateRead</option> | |
189 <option value="FailsVendorQualityCheck">FailsVendorQualityCheck</option> | |
190 <option value="MalformedRead">MalformedRead</option> | |
191 <option value="MappingQuality">MappingQuality</option> | |
192 <option value="MappingQualityUnavailable">MappingQualityUnavailable</option> | |
193 <option value="MappingQualityZero">MappingQualityZero</option> | |
194 <option value="MateSameStrand">MateSameStrand</option> | |
195 <option value="MaxInsertSize">MaxInsertSize</option> | |
196 <option value="MaxReadLength" selected="True">MaxReadLength</option> | |
197 <option value="MissingReadGroup">MissingReadGroup</option> | |
198 <option value="NoOriginalQualityScores">NoOriginalQualityScores</option> | |
199 <option value="NotPrimaryAlignment">NotPrimaryAlignment</option> | |
200 <option value="Platform454">Platform454</option> | |
201 <option value="Platform">Platform</option> | |
202 <option value="PlatformUnit">PlatformUnit</option> | |
203 <option value="ReadGroupBlackList">ReadGroupBlackList</option> | |
204 <option value="ReadName">ReadName</option> | |
205 <option value="ReadStrand">ReadStrand</option> | |
206 <option value="ReassignMappingQuality">ReassignMappingQuality</option> | |
207 <option value="Sample">Sample</option> | |
208 <option value="SingleReadGroup">SingleReadGroup</option> | |
209 <option value="UnmappedRead">UnmappedRead</option> | |
210 </param> | |
211 <when value="BadCigar"> | |
212 <!-- no extra options --> | |
213 </when> | |
214 <when value="BadMate"> | |
215 <!-- no extra options --> | |
216 </when> | |
217 <when value="DuplicateRead"> | |
218 <!-- no extra options --> | |
219 </when> | |
220 <when value="FailsVendorQualityCheck"> | |
221 <!-- no extra options --> | |
222 </when> | |
223 <when value="MalformedRead"> | |
35 | 224 <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"/> |
6 | 225 </when> |
226 <when value="MappingQuality"> | |
227 <param name="min_mapping_quality_score" type="integer" value="10" label="Minimum read mapping quality required to consider a read for calling"/> | |
228 </when> | |
229 <when value="MappingQualityUnavailable"> | |
230 <!-- no extra options --> | |
231 </when> | |
232 <when value="MappingQualityZero"> | |
233 <!-- no extra options --> | |
234 </when> | |
235 <when value="MateSameStrand"> | |
236 <!-- no extra options --> | |
237 </when> | |
238 <when value="MaxInsertSize"> | |
239 <param name="maxInsertSize" type="integer" value="1000000" label="Discard reads with insert size greater than the specified value"/> | |
240 </when> | |
241 <when value="MaxReadLength"> | |
242 <param name="maxReadLength" type="integer" value="76" label="Max Read Length"/> | |
243 </when> | |
244 <when value="MissingReadGroup"> | |
245 <!-- no extra options --> | |
246 </when> | |
247 <when value="NoOriginalQualityScores"> | |
248 <!-- no extra options --> | |
249 </when> | |
250 <when value="NotPrimaryAlignment"> | |
251 <!-- no extra options --> | |
252 </when> | |
253 <when value="Platform454"> | |
254 <!-- no extra options --> | |
255 </when> | |
256 <when value="Platform"> | |
257 <param name="PLFilterName" type="text" value="" label="Discard reads with RG:PL attribute containing this string"/> | |
258 </when> | |
259 <when value="PlatformUnit"> | |
260 <!-- no extra options --> | |
261 </when> | |
262 <when value="ReadGroupBlackList"> | |
263 <!-- no extra options --> | |
264 </when> | |
265 <when value="ReadName"> | |
266 <param name="readName" type="text" value="" label="Filter out all reads except those with this read name"/> | |
267 </when> | |
268 <when value="ReadStrand"> | |
269 <param name="filterPositive" type="boolean" truevalue="--filterPositive" falsevalue="" label="Discard reads on the forward strand"/> | |
270 </when> | |
271 <when value="ReassignMappingQuality"> | |
272 <param name="default_mapping_quality" type="integer" value="60" label="Default read mapping quality to assign to all reads"/> | |
273 </when> | |
274 <when value="Sample"> | |
275 <param name="sample_to_keep" type="text" value="" label="The name of the sample(s) to keep, filtering out all others"/> | |
276 </when> | |
277 <when value="SingleReadGroup"> | |
278 <param name="read_group_to_keep" type="integer" value="76" label="The name of the read group to keep, filtering out all others"/> | |
279 </when> | |
280 <when value="UnmappedRead"> | |
281 <!-- no extra options --> | |
282 </when> | |
283 </conditional> | |
284 </repeat> | |
285 <repeat name="input_interval_repeat" title="Operate on Genomic intervals" help="-L,--intervals &lt;intervals&gt;"> | |
286 <param name="input_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
287 </repeat> | |
288 <repeat name="input_exclude_interval_repeat" title="Exclude Genomic intervals" help="-XL,--excludeIntervals &lt;excludeIntervals&gt;"> | |
289 <param name="input_exclude_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
290 </repeat> | |
291 | |
292 <param name="interval_set_rule" type="select" label="Interval set rule" help="-isr,--interval_set_rule &lt;interval_set_rule&gt;"> | |
293 <option value="UNION" selected="True">UNION</option> | |
294 <option value="INTERSECTION">INTERSECTION</option> | |
295 </param> | |
296 | |
297 <conditional name="downsampling_type"> | |
298 <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;"> | |
299 <option value="NONE" selected="True">NONE</option> | |
300 <option value="ALL_READS">ALL_READS</option> | |
301 <option value="BY_SAMPLE">BY_SAMPLE</option> | |
302 </param> | |
303 <when value="NONE"> | |
304 <!-- no more options here --> | |
305 </when> | |
306 <when value="ALL_READS"> | |
307 <conditional name="downsample_to_type"> | |
308 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
309 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
310 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
311 </param> | |
312 <when value="downsample_to_fraction"> | |
313 <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;"/> | |
314 </when> | |
315 <when value="downsample_to_coverage"> | |
316 <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;"/> | |
317 </when> | |
318 </conditional> | |
319 </when> | |
320 <when value="BY_SAMPLE"> | |
321 <conditional name="downsample_to_type"> | |
322 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
323 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
324 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
325 </param> | |
326 <when value="downsample_to_fraction"> | |
327 <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;"/> | |
328 </when> | |
329 <when value="downsample_to_coverage"> | |
330 <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;"/> | |
331 </when> | |
332 </conditional> | |
333 </when> | |
334 </conditional> | |
335 <param name="baq" type="select" label="Type of BAQ calculation to apply in the engine" help="-baq,--baq &lt;baq&gt;"> | |
336 <option value="OFF" selected="True">OFF</option> | |
337 <option value="CALCULATE_AS_NECESSARY">CALCULATE_AS_NECESSARY</option> | |
338 <option value="RECALCULATE">RECALCULATE</option> | |
339 </param> | |
340 <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;" /> | |
341 <param name="use_original_qualities" type="boolean" truevalue="--useOriginalQualities" falsevalue="" label="Use the original base quality scores from the OQ tag" help="-OQ,--useOriginalQualities" /> | |
342 <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;"/> | |
343 <param name="validation_strictness" type="select" label="How strict should we be with validation" help="-S,--validation_strictness &lt;validation_strictness&gt;"> | |
344 <option value="STRICT" selected="True">STRICT</option> | |
345 <option value="LENIENT">LENIENT</option> | |
346 <option value="SILENT">SILENT</option> | |
347 <!-- <option value="DEFAULT_STRINGENCY">DEFAULT_STRINGENCY</option> listed in docs, but not valid value...--> | |
348 </param> | |
349 <param name="interval_merging" type="select" label="Interval merging rule" help="-im,--interval_merging &lt;interval_merging&gt;"> | |
350 <option value="ALL" selected="True">ALL</option> | |
351 <option value="OVERLAPPING_ONLY">OVERLAPPING_ONLY</option> | |
352 </param> | |
353 | |
354 <repeat name="read_group_black_list_repeat" title="Read group black list" help="-rgbl,--read_group_black_list &lt;read_group_black_list&gt;"> | |
355 <conditional name="read_group_black_list_type"> | |
356 <param name="read_group_black_list_type_selector" type="select" label="Type of reads read group black list"> | |
357 <option value="file" selected="True">Filters in file</option> | |
358 <option value="text">Specify filters as a string</option> | |
359 </param> | |
360 <when value="file"> | |
361 <param name="read_group_black_list" type="data" format="txt" label="Read group black list file" /> | |
362 </when> | |
363 <when value="text"> | |
364 <param name="read_group_black_list" type="text" value="tag:string" label="Read group black list tag:string" /> | |
365 </when> | |
366 </conditional> | |
367 </repeat> | |
368 | |
369 <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"/> | |
370 <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:
14
diff
changeset
|
371 <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"/> |
6 | 372 |
373 </when> | |
374 </conditional> | |
375 | |
376 <conditional name="analysis_param_type"> | |
377 <param name="analysis_param_type_selector" type="select" label="Basic or Advanced Analysis options"> | |
378 <option value="basic" selected="True">Basic</option> | |
379 <option value="advanced">Advanced</option> | |
380 </param> | |
381 <when value="basic"> | |
382 <!-- Do nothing here --> | |
383 </when> | |
384 <when value="advanced"> | |
385 <param name="allow_polyploid_reduction" type="boolean" checked="False" truevalue="-polyploid" falsevalue="" label="Allow polyploid-based reduction" help="--allow_polyploid_reduction / -polyploid Allow the experimental polyploid-based reduction capabilities"/> | |
386 <param name="context_size" type="integer" value="10" optional="true" label="context_size" help="The number of bases to keep around mismatches (potential variation)"> | |
387 </param> | |
388 <param name="dont_compress_read_names" type="boolean" checked="False" truevalue="-nocmp_names" falsevalue="" label="Do not compress read names." help="--dont_compress_read_names / -nocmp_names By default, ReduceReads will compress read names to numbers and guarantee uniqueness and reads with similar name will still have similar compressed names. Note: If you scatter/gather there is no guarantee that read name uniqueness will be maintained -- in this case we recommend not compressing."/> | |
389 <param name="dont_hardclip_low_qual_tails" type="boolean" checked="False" truevalue="-noclip_tail" falsevalue="" label="Do not hard clip the low quality tails of the reads" help="--dont_hardclip_low_qual_tails / -noclip_tail This option overrides the argument of minimum tail quality"/> | |
390 | |
391 <param name="dont_simplify_reads" type="boolean" checked="False" truevalue="-nosimplify" falsevalue="" label="Do not simplify read" help="--dont_simplify_reads / -nosimplify Do not simplify read (strip away all extra information of the read -- anything other than bases, quals and read group)."/> | |
392 <param name="dont_use_softclipped_bases" type="boolean" checked="False" truevalue="-no_soft" falsevalue="" label="Do not use high quality soft-clipped bases" help="--dont_use_softclipped_bases / -no_soft Do not use high quality soft-clipped bases. By default, ReduceReads will hard clip away any low quality soft clipped base left by the aligner and use the high quality soft clipped bases in it's traversal algorithm to identify variant regions. The minimum quality for soft clipped bases is the same as the minimum base quality to consider (minqual)"/> | |
393 <param name="downsample_coverage" type="integer" value="250" optional="true" label="Downsample the coverage of a variable region" help="Downsamples the coverage of a variable region approximately (guarantees the minimum to be equal to this). A value of 0 turns downsampling off."> | |
394 </param> | |
395 <param name="hard_clip_to_interval" type="boolean" checked="False" truevalue="-clip_int" falsevalue="" label="Hard clip all incoming reads" help="--hard_clip_to_interval / -clip_int Optionally hard clip all incoming reads to the desired intervals. The hard clips will happen exactly at the interval border."/> | |
396 <param name="minimum_del_proportion_to_trigger_variant" type="float" value="0.05" optional="true" label="Minimum proportion of indels in a site to trigger a variant region" help="--minimum_del_proportion_to_trigger_variant / -mindel Minimum proportion of indels in a site to trigger a variant region. Anything below this will be considered consensus. "> | |
397 </param> | |
398 <param name="minimum_mapping_quality" type="integer" value="20" optional="true" label="Minimum mapping quality for consensus read" help="--minimum_mapping_quality / -minmap The minimum mapping quality to be considered for the consensus synthetic read. Reads that have mapping quality below this threshold will not be counted towards consensus, but are still counted towards variable regions."> | |
399 </param> | |
400 <param name="minimum_tail_qualities" type="integer" value="2" optional="true" label="Minimum tail quality" help="--minimum_tail_qualities / -mintail Reads have notoriously low quality bases on the tails (left and right). Consecutive bases with quality lower than this threshold will be hard clipped off before entering the reduce reads algorithm."> | |
401 <validator type="in_range" message="value between 0 and 127" min="0" max="127"/> | |
402 </param> | |
403 <param name="minimum_base_quality_to_consider" type="integer" value="20" optional="true" label="Minimum mapping quality for consensus read" help="--minimum_mapping_quality / -minmap The minimum mapping quality to be considered for the consensus synthetic read. Reads that have mapping quality below this threshold will not be counted towards consensus, but are still counted towards variable regions."> | |
404 <validator type="in_range" message="value between 0 and 127" min="0" max="127"/> | |
405 </param> | |
406 <param name="minimum_alt_proportion_to_trigger_variant" type="float" value="0.05" optional="true" label="Minimum proportion of mismatches in a site to trigger a variant region" help="--minimum_alt_proportion_to_trigger_variant / -minvar Minimum proportion of mismatches in a site to trigger a variant region. Anything below this will be considered consensus."> | |
407 <validator type="in_range" message="value between 0.00 and 1.00" min="0.0" max="1.0"/> | |
408 </param> | |
409 <param name="dont_hardclip_adaptor_sequences" type="boolean" checked="False" truevalue="-noclip_ad" falsevalue="" label="Do not hard clip adaptor sequences" help="--dont_hardclip_adaptor_sequences / -noclip_ad Do not hard clip adaptor sequences. Note: You don't have to turn this on for reads that are not mate paired. The program will behave correctly in those cases."/> | |
410 </when> | |
411 </conditional> | |
412 </inputs> | |
413 <outputs> | |
414 <data format="bam" name="output_bam" label="${tool.name} on ${on_string} (BAM)" /> | |
415 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | |
416 </outputs> | |
417 <tests> | |
418 <test> | |
419 <param name="input_recal" value="gatk/gatk_count_covariates/gatk_count_covariates_out_1.csv" ftype="csv" /> | |
420 <param name="reference_source_selector" value="history" /> | |
421 <param name="ref_file" value="phiX.fasta" ftype="fasta" /> | |
422 <param name="input_bam" value="gatk/gatk_indel_realigner/gatk_indel_realigner_out_1.bam" ftype="bam" /> | |
423 <param name="gatk_param_type_selector" value="basic" /> | |
424 <param name="analysis_param_type_selector" value="basic" /> | |
425 <output name="output_bam" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.bam" ftype="bam" lines_diff="4" /> | |
426 <output name="output_log" file="gatk/gatk_table_recalibration/gatk_table_recalibration_out_1.log.contains" compare="contains" /> | |
427 </test> | |
428 </tests> | |
429 <help> | |
430 **What it does** | |
431 | |
432 ReduceReads | |
433 Reduces the BAM file using read based compression that keeps only essential information for variant calling | |
434 | |
435 This walker will generated reduced versions of the BAM files that still follow the BAM spec and contain all the information necessary for the GSA variant calling pipeline. Some options allow you to tune in how much compression you want to achieve. The default values have been shown to reduce a typical whole exome BAM file 100x. The higher the coverage, the bigger the savings in file size and performance of the downstream tools. | |
436 | |
437 For more information on using read based compression in the GATK, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_compression_reducereads_ReduceReads.html>`_. | |
438 | |
439 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_. | |
440 | |
441 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_. | |
442 | |
443 ------ | |
444 | |
445 **Inputs** | |
446 | |
447 GenomeAnalysisTK: PrintReads accepts an aligned BAM and a recalibration CSV input files. | |
448 | |
449 | |
450 **Outputs** | |
451 | |
452 The output is in BAM format. | |
453 | |
454 | |
455 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats. | |
456 | |
457 ------- | |
458 | |
459 **Settings**:: | |
460 | |
14 | 461 |
462 --allow_polyploid_reduction / -polyploid ( boolean with default value false ) | |
463 Allow the experimental polyploid-based reduction capabilities of this tool | |
464 | |
465 --context_size / -cs ( int with default value 10 ) | |
466 The number of bases to keep around mismatches (potential variation) | |
467 | |
468 --dont_compress_read_names / -nocmp_names ( boolean with default value false ) | |
469 Do not compress read names. By default, ReduceReads will compress read names to numbers and guarantee uniqueness and reads with similar name will still have similar compressed names. Note: If you scatter/gather there is no guarantee that read name uniqueness will be maintained -- in this case we recommend not compressing. | |
470 | |
471 --dont_hardclip_low_qual_tails / -noclip_tail ( boolean with default value false ) | |
472 Do not hard clip the low quality tails of the reads. This option overrides the argument of minimum tail quality. | |
473 | |
474 --dont_simplify_reads / -nosimplify ( boolean with default value false ) | |
475 Do not simplify read (strip away all extra information of the read -- anything other than bases, quals and read group). | |
476 | |
477 --dont_use_softclipped_bases / -no_soft ( boolean with default value false ) | |
478 Do not use high quality soft-clipped bases. By default, ReduceReads will hard clip away any low quality soft clipped base left by the aligner and use the high quality soft clipped bases in it's traversal algorithm to identify variant regions. The minimum quality for soft clipped bases is the same as the minimum base quality to consider (minqual) | |
479 | |
480 --downsample_coverage / -ds ( int with default value 250 ) | |
481 Downsamples the coverage of a variable region approximately (guarantees the minimum to be equal to this). A value of 0 turns downsampling off. | |
482 | |
483 --hard_clip_to_interval / -clip_int ( boolean with default value false ) | |
484 Optionally hard clip all incoming reads to the desired intervals. The hard clips will happen exactly at the interval border. | |
485 | |
486 -mindel / --minimum_del_proportion_to_trigger_variant ( double with default value 0.05 ) | |
487 Minimum proportion of indels in a site to trigger a variant region. Anything below this will be considered consensus. | |
488 | |
489 --minimum_mapping_quality / -minmap ( int with default value 20 ) | |
490 The minimum mapping quality to be considered for the consensus synthetic read. Reads that have mapping quality below this threshold will not be counted towards consensus, but are still counted towards variable regions. | |
491 | |
492 --minimum_tail_qualities / -mintail ( byte with default value 2 ) | |
493 Reads have notoriously low quality bases on the tails (left and right). Consecutive bases with quality lower than this threshold will be hard clipped off before entering the reduce reads algorithm. | |
494 | |
495 -minqual / --minimum_base_quality_to_consider ( byte with default value 20 ) | |
496 The minimum base quality to be considered for the consensus synthetic read. Reads that have base quality below this threshold will not be counted towards consensus, but are still counted towards variable regions. | |
497 | |
498 -minvar / --minimum_alt_proportion_to_trigger_variant ( double with default value 0.05 ) | |
499 Minimum proportion of mismatches in a site to trigger a variant region. Anything below this will be considered consensus. | |
500 | |
501 -noclip_ad / --dont_hardclip_adaptor_sequences ( boolean with default value false ) | |
502 Do not hard clip adaptor sequences. Note: You don't have to turn this on for reads that are not mate paired. The program will behave correctly in those cases. | |
6 | 503 |
504 ------ | |
505 | |
506 **Citation** | |
507 | |
508 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>`_ | |
509 | |
510 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>`_ | |
511 | |
512 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>`_ | |
513 | |
514 </help> | |
515 </tool> |