Mercurial > repos > jjohnson > gatk2
annotate variants_validate.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_validate_variants" name="Validate Variants" version="0.0.7"> |
0 | 2 <description></description> |
3 <requirements> | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
0
diff
changeset
|
4 <requirement type="package" version="2.3">gatk</requirement> |
0 | 5 </requirements> |
6 <command interpreter="python">gatk2_wrapper.py | |
7 --max_jvm_heap_fraction "1" | |
8 --stdout "${output_log}" | |
9 -d "--variant:variant,%(file_type)s" "${reference_source.input_variant}" "${reference_source.input_variant.ext}" "input_variant" | |
10 -p 'java | |
11 -jar "\$GATK2_PATH/GenomeAnalysisTK.jar" | |
12 -T "ValidateVariants" | |
13 | |
14 \$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
|
15 \$GATK2_NUM_THREADS |
0 | 16 ##-et "NO_ET" -K "\$GATK2_BASE/gatk2_key_file" ##ET no phone home |
17 ##--num_threads 4 ##hard coded, for now | |
18 ##-log "${output_log}" ##don't use this to log to file, instead directly capture stdout | |
19 #if $reference_source.reference_source_selector != "history": | |
20 -R "${reference_source.ref_file.fields.path}" | |
21 #end if | |
22 ${warn_on_errors} | |
23 ${do_not_validate_filtered_records} | |
24 ' | |
25 | |
26 #if str( $dbsnp_rod_bind_type.dbsnp_rod_bind_type_selector ) == 'set_dbsnp': | |
27 -d "--dbsnp:${dbsnp_rod_bind_type.dbsnp_rod_name},%(file_type)s" "${dbsnp_rod_bind_type.dbsnp_input_rod}" "${dbsnp_rod_bind_type.dbsnp_input_rod.ext}" "input_dbsnp_${dbsnp_rod_bind_type.dbsnp_rod_name}" | |
28 #end if | |
29 | |
30 ##start standard gatk options | |
31 #if $gatk_param_type.gatk_param_type_selector == "advanced": | |
32 #for $pedigree in $gatk_param_type.pedigree: | |
33 -p '--pedigree "${pedigree.pedigree_file}"' | |
34 #end for | |
35 #for $pedigree_string in $gatk_param_type.pedigree_string_repeat: | |
36 -p '--pedigreeString "${pedigree_string.pedigree_string}"' | |
37 #end for | |
38 -p '--pedigreeValidationType "${gatk_param_type.pedigree_validation_type}"' | |
35 | 39 #set default_read_filters = ['DuplicateRead','FailsVendorQualityCheck','NotPrimaryAlignment','MalformedRead','UnmappedRead'] |
0 | 40 #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
|
41 -p ' |
35 | 42 #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
|
43 --read_filter "${read_filter.read_filter_type.read_filter_type_selector}" |
36 | 44 #end if |
0 | 45 #for $name, $param in $read_filter.read_filter_type.iteritems(): |
46 #if $name not in [ "__current_case__", "read_filter_type_selector" ]: | |
47 #if hasattr( $param.input, 'truevalue' ): | |
48 ${param} | |
49 #else: | |
50 --${name} "${param}" | |
51 #end if | |
52 #end if | |
53 #end for | |
54 ' | |
55 #end for | |
56 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_interval_repeat ): | |
57 -d "--intervals" "${input_intervals.input_intervals}" "${input_intervals.input_intervals.ext}" "input_intervals_${interval_count}" | |
58 #end for | |
59 | |
60 #for $interval_count, $input_intervals in enumerate( $gatk_param_type.input_exclude_interval_repeat ): | |
61 -d "--excludeIntervals" "${input_intervals.input_exclude_intervals}" "${input_intervals.input_exclude_intervals.ext}" "input_exlude_intervals_${interval_count}" | |
62 #end for | |
63 | |
64 -p '--interval_set_rule "${gatk_param_type.interval_set_rule}"' | |
65 | |
66 -p '--downsampling_type "${gatk_param_type.downsampling_type.downsampling_type_selector}"' | |
67 #if str( $gatk_param_type.downsampling_type.downsampling_type_selector ) != "NONE": | |
68 -p '--${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_type_selector} "${gatk_param_type.downsampling_type.downsample_to_type.downsample_to_value}"' | |
69 #end if | |
70 -p ' | |
71 --baq "${gatk_param_type.baq}" | |
72 --baqGapOpenPenalty "${gatk_param_type.baq_gap_open_penalty}" | |
73 ${gatk_param_type.use_original_qualities} | |
74 --defaultBaseQualities "${gatk_param_type.default_base_qualities}" | |
75 --validation_strictness "${gatk_param_type.validation_strictness}" | |
76 --interval_merging "${gatk_param_type.interval_merging}" | |
77 ${gatk_param_type.disable_experimental_low_memory_sharding} | |
18
7533db8dfb5b
Update tool_dependencies to GATK v 2.3
Jim Johnson <jj@umn.edu>
parents:
0
diff
changeset
|
78 ${gatk_param_type.fix_misencoded_quality_scores} |
0 | 79 ${gatk_param_type.non_deterministic_random_seed} |
80 ' | |
81 #for $rg_black_list_count, $rg_black_list in enumerate( $gatk_param_type.read_group_black_list_repeat ): | |
82 #if $rg_black_list.read_group_black_list_type.read_group_black_list_type_selector == "file": | |
83 -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}" | |
84 #else | |
85 -p '--read_group_black_list "${rg_black_list.read_group_black_list_type.read_group_black_list}"' | |
86 #end if | |
87 #end for | |
88 #end if | |
89 | |
90 #if $reference_source.reference_source_selector == "history": | |
91 -d "-R" "${reference_source.ref_file}" "${reference_source.ref_file.ext}" "gatk_input" | |
92 #end if | |
93 ##end standard gatk options | |
94 | |
95 </command> | |
96 <inputs> | |
97 | |
98 <conditional name="reference_source"> | |
99 <param name="reference_source_selector" type="select" label="Choose the source for the reference list"> | |
100 <option value="cached">Locally cached</option> | |
101 <option value="history">History</option> | |
102 </param> | |
103 <when value="cached"> | |
104 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> | |
105 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;"> | |
106 <options from_data_table="gatk2_picard_indexes"> | |
107 <filter type="data_meta" key="dbkey" ref="input_variant" column="dbkey"/> | |
108 </options> | |
109 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> | |
110 </param> | |
111 </when> | |
112 <when value="history"> <!-- FIX ME!!!! --> | |
113 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> | |
114 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> | |
115 </when> | |
116 </conditional> | |
117 | |
118 <conditional name="dbsnp_rod_bind_type"> | |
119 <param name="dbsnp_rod_bind_type_selector" type="select" label="Provide a dbSNP reference-ordered data file" help="-D,--dbsnp &lt;dbsnp&gt;"> | |
120 <option value="set_dbsnp" selected="True">Set dbSNP</option> | |
121 <option value="exclude_dbsnp">Don't set dbSNP</option> | |
122 </param> | |
123 <when value="exclude_dbsnp"> | |
124 <!-- Do nothing here --> | |
125 </when> | |
126 <when value="set_dbsnp"> | |
127 <param name="dbsnp_input_rod" type="data" format="vcf" label="ROD file" /> | |
128 <param name="dbsnp_rod_name" type="hidden" value="dbsnp" label="ROD Name"/> | |
129 </when> | |
130 </conditional> | |
131 | |
132 <param name="warn_on_errors" type="boolean" checked="False" truevalue="-warnOnErrors" falsevalue="" label="instead of terminating the run at the first error, print warning messages for each error seen." help="-warnOnErrors,--warnOnErrors"/> | |
133 <param name="do_not_validate_filtered_records" type="boolean" checked="False" truevalue="-doNotValidateFilteredRecords" falsevalue="" label="do not try to validate records that are FILTERed." help="-doNotValidateFilteredRecords,--doNotValidateFilteredRecords"/> | |
134 | |
135 <conditional name="gatk_param_type"> | |
136 <param name="gatk_param_type_selector" type="select" label="Basic or Advanced GATK options"> | |
137 <option value="basic" selected="True">Basic</option> | |
138 <option value="advanced">Advanced</option> | |
139 </param> | |
140 <when value="basic"> | |
141 <!-- Do nothing here --> | |
142 </when> | |
143 <when value="advanced"> | |
144 <repeat name="pedigree" title="Pedigree file" help="-ped,--pedigree &lt;pedigree&gt;"> | |
145 <param name="pedigree_file" type="data" format="txt" label="Pedigree files for samples"/> | |
146 </repeat> | |
147 <repeat name="pedigree_string_repeat" title="Pedigree string" help="-pedString,--pedigreeString &lt;pedigreeString&gt;"> | |
148 <param name="pedigree_string" type="text" value="" label="Pedigree string for samples"/> | |
149 </repeat> | |
150 <param name="pedigree_validation_type" type="select" label="How strict should we be in validating the pedigree information" help="-pedValidationType,--pedigreeValidationType &lt;pedigreeValidationType&gt;"> | |
151 <option value="STRICT" selected="True">STRICT</option> | |
152 <option value="SILENT">SILENT</option> | |
153 </param> | |
154 <repeat name="read_filter" title="Read Filter" help="-rf,--read_filter &lt;read_filter&gt;"> | |
155 <conditional name="read_filter_type"> | |
156 <param name="read_filter_type_selector" type="select" label="Read Filter Type"> | |
157 <option value="BadCigar">BadCigar</option> | |
158 <option value="BadMate">BadMate</option> | |
159 <option value="DuplicateRead">DuplicateRead</option> | |
160 <option value="FailsVendorQualityCheck">FailsVendorQualityCheck</option> | |
161 <option value="MalformedRead">MalformedRead</option> | |
162 <option value="MappingQuality">MappingQuality</option> | |
163 <option value="MappingQualityUnavailable">MappingQualityUnavailable</option> | |
164 <option value="MappingQualityZero">MappingQualityZero</option> | |
165 <option value="MateSameStrand">MateSameStrand</option> | |
166 <option value="MaxInsertSize">MaxInsertSize</option> | |
167 <option value="MaxReadLength" selected="True">MaxReadLength</option> | |
168 <option value="MissingReadGroup">MissingReadGroup</option> | |
169 <option value="NoOriginalQualityScores">NoOriginalQualityScores</option> | |
170 <option value="NotPrimaryAlignment">NotPrimaryAlignment</option> | |
171 <option value="Platform454">Platform454</option> | |
172 <option value="Platform">Platform</option> | |
173 <option value="PlatformUnit">PlatformUnit</option> | |
174 <option value="ReadGroupBlackList">ReadGroupBlackList</option> | |
175 <option value="ReadName">ReadName</option> | |
176 <option value="ReadStrand">ReadStrand</option> | |
177 <option value="ReassignMappingQuality">ReassignMappingQuality</option> | |
178 <option value="Sample">Sample</option> | |
179 <option value="SingleReadGroup">SingleReadGroup</option> | |
180 <option value="UnmappedRead">UnmappedRead</option> | |
181 </param> | |
182 <when value="BadCigar"> | |
183 <!-- no extra options --> | |
184 </when> | |
185 <when value="BadMate"> | |
186 <!-- no extra options --> | |
187 </when> | |
188 <when value="DuplicateRead"> | |
189 <!-- no extra options --> | |
190 </when> | |
191 <when value="FailsVendorQualityCheck"> | |
192 <!-- no extra options --> | |
193 </when> | |
194 <when value="MalformedRead"> | |
35 | 195 <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 | 196 </when> |
197 <when value="MappingQuality"> | |
198 <param name="min_mapping_quality_score" type="integer" value="10" label="Minimum read mapping quality required to consider a read for calling"/> | |
199 </when> | |
200 <when value="MappingQualityUnavailable"> | |
201 <!-- no extra options --> | |
202 </when> | |
203 <when value="MappingQualityZero"> | |
204 <!-- no extra options --> | |
205 </when> | |
206 <when value="MateSameStrand"> | |
207 <!-- no extra options --> | |
208 </when> | |
209 <when value="MaxInsertSize"> | |
210 <param name="maxInsertSize" type="integer" value="1000000" label="Discard reads with insert size greater than the specified value"/> | |
211 </when> | |
212 <when value="MaxReadLength"> | |
213 <param name="maxReadLength" type="integer" value="76" label="Max Read Length"/> | |
214 </when> | |
215 <when value="MissingReadGroup"> | |
216 <!-- no extra options --> | |
217 </when> | |
218 <when value="NoOriginalQualityScores"> | |
219 <!-- no extra options --> | |
220 </when> | |
221 <when value="NotPrimaryAlignment"> | |
222 <!-- no extra options --> | |
223 </when> | |
224 <when value="Platform454"> | |
225 <!-- no extra options --> | |
226 </when> | |
227 <when value="Platform"> | |
228 <param name="PLFilterName" type="text" value="" label="Discard reads with RG:PL attribute containing this string"/> | |
229 </when> | |
230 <when value="PlatformUnit"> | |
231 <!-- no extra options --> | |
232 </when> | |
233 <when value="ReadGroupBlackList"> | |
234 <!-- no extra options --> | |
235 </when> | |
236 <when value="ReadName"> | |
237 <param name="readName" type="text" value="" label="Filter out all reads except those with this read name"/> | |
238 </when> | |
239 <when value="ReadStrand"> | |
240 <param name="filterPositive" type="boolean" truevalue="--filterPositive" falsevalue="" label="Discard reads on the forward strand"/> | |
241 </when> | |
242 <when value="ReassignMappingQuality"> | |
243 <param name="default_mapping_quality" type="integer" value="60" label="Default read mapping quality to assign to all reads"/> | |
244 </when> | |
245 <when value="Sample"> | |
246 <param name="sample_to_keep" type="text" value="" label="The name of the sample(s) to keep, filtering out all others"/> | |
247 </when> | |
248 <when value="SingleReadGroup"> | |
249 <param name="read_group_to_keep" type="integer" value="76" label="The name of the read group to keep, filtering out all others"/> | |
250 </when> | |
251 <when value="UnmappedRead"> | |
252 <!-- no extra options --> | |
253 </when> | |
254 </conditional> | |
255 </repeat> | |
256 <repeat name="input_interval_repeat" title="Operate on Genomic intervals" help="-L,--intervals &lt;intervals&gt;"> | |
257 <param name="input_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
258 </repeat> | |
259 <repeat name="input_exclude_interval_repeat" title="Exclude Genomic intervals" help="-XL,--excludeIntervals &lt;excludeIntervals&gt;"> | |
260 <param name="input_exclude_intervals" type="data" format="bed,gatk_interval,picard_interval_list,vcf" label="Genomic intervals" /> | |
261 </repeat> | |
262 | |
263 <param name="interval_set_rule" type="select" label="Interval set rule" help="-isr,--interval_set_rule &lt;interval_set_rule&gt;"> | |
264 <option value="UNION" selected="True">UNION</option> | |
265 <option value="INTERSECTION">INTERSECTION</option> | |
266 </param> | |
267 | |
268 <conditional name="downsampling_type"> | |
269 <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;"> | |
270 <option value="NONE" selected="True">NONE</option> | |
271 <option value="ALL_READS">ALL_READS</option> | |
272 <option value="BY_SAMPLE">BY_SAMPLE</option> | |
273 </param> | |
274 <when value="NONE"> | |
275 <!-- no more options here --> | |
276 </when> | |
277 <when value="ALL_READS"> | |
278 <conditional name="downsample_to_type"> | |
279 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
280 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
281 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
282 </param> | |
283 <when value="downsample_to_fraction"> | |
284 <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;"/> | |
285 </when> | |
286 <when value="downsample_to_coverage"> | |
287 <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;"/> | |
288 </when> | |
289 </conditional> | |
290 </when> | |
291 <when value="BY_SAMPLE"> | |
292 <conditional name="downsample_to_type"> | |
293 <param name="downsample_to_type_selector" type="select" label="Downsample method"> | |
294 <option value="downsample_to_fraction" selected="True">Downsample by Fraction</option> | |
295 <option value="downsample_to_coverage">Downsample by Coverage</option> | |
296 </param> | |
297 <when value="downsample_to_fraction"> | |
298 <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;"/> | |
299 </when> | |
300 <when value="downsample_to_coverage"> | |
301 <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;"/> | |
302 </when> | |
303 </conditional> | |
304 </when> | |
305 </conditional> | |
306 <param name="baq" type="select" label="Type of BAQ calculation to apply in the engine" help="-baq,--baq &lt;baq&gt;"> | |
307 <option value="OFF" selected="True">OFF</option> | |
308 <option value="CALCULATE_AS_NECESSARY">CALCULATE_AS_NECESSARY</option> | |
309 <option value="RECALCULATE">RECALCULATE</option> | |
310 </param> | |
311 <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;" /> | |
312 <param name="use_original_qualities" type="boolean" truevalue="--useOriginalQualities" falsevalue="" label="Use the original base quality scores from the OQ tag" help="-OQ,--useOriginalQualities" /> | |
313 <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;"/> | |
314 <param name="validation_strictness" type="select" label="How strict should we be with validation" help="-S,--validation_strictness &lt;validation_strictness&gt;"> | |
315 <option value="STRICT" selected="True">STRICT</option> | |
316 <option value="LENIENT">LENIENT</option> | |
317 <option value="SILENT">SILENT</option> | |
318 <!-- <option value="DEFAULT_STRINGENCY">DEFAULT_STRINGENCY</option> listed in docs, but not valid value...--> | |
319 </param> | |
320 <param name="interval_merging" type="select" label="Interval merging rule" help="-im,--interval_merging &lt;interval_merging&gt;"> | |
321 <option value="ALL" selected="True">ALL</option> | |
322 <option value="OVERLAPPING_ONLY">OVERLAPPING_ONLY</option> | |
323 </param> | |
324 | |
325 <repeat name="read_group_black_list_repeat" title="Read group black list" help="-rgbl,--read_group_black_list &lt;read_group_black_list&gt;"> | |
326 <conditional name="read_group_black_list_type"> | |
327 <param name="read_group_black_list_type_selector" type="select" label="Type of reads read group black list"> | |
328 <option value="file" selected="True">Filters in file</option> | |
329 <option value="text">Specify filters as a string</option> | |
330 </param> | |
331 <when value="file"> | |
332 <param name="read_group_black_list" type="data" format="txt" label="Read group black list file" /> | |
333 </when> | |
334 <when value="text"> | |
335 <param name="read_group_black_list" type="text" value="tag:string" label="Read group black list tag:string" /> | |
336 </when> | |
337 </conditional> | |
338 </repeat> | |
339 | |
340 <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"/> | |
341 <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:
0
diff
changeset
|
342 <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 | 343 |
344 </when> | |
345 </conditional> | |
346 | |
347 </inputs> | |
348 <outputs> | |
349 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | |
350 </outputs> | |
351 <tests> | |
352 <test> | |
353 <param name="reference_source_selector" value="history" /> | |
354 <param name="ref_file" value="phiX.fasta" ftype="fasta" /> | |
355 <param name="input_variant" value="gatk/gatk_variant_annotator/gatk_variant_annotator_out_1.vcf" ftype="vcf" /> | |
356 <param name="dbsnp_rod_bind_type_selector" value="set_dbsnp" /> | |
357 <param name="dbsnp_input_rod" value="gatk/fake_phiX_variant_locations.vcf" ftype="vcf" /> | |
358 <param name="warn_on_errors" value="True"/> | |
359 <param name="do_not_validate_filtered_records" /> | |
360 <param name="gatk_param_type_selector" value="basic" /> | |
361 <output name="output_log" file="gatk/gatk_validate_variants/gatk_validate_variants_out_1.log.contains" compare="contains" /> | |
362 </test> | |
363 </tests> | |
364 <help> | |
365 **What it does** | |
366 | |
367 Validates a variants file. | |
368 | |
369 For more information on using the ValidateVariants module, see this `tool specific page <http://www.broadinstitute.org/gatk/gatkdocs/org_broadinstitute_sting_gatk_walkers_variantutils_ValidateVariants.html>`_. | |
370 | |
371 To learn about best practices for variant detection using GATK, see this `overview <http://www.broadinstitute.org/gatk/guide/topic?name=best-practices>`_. | |
372 | |
373 If you encounter errors, please view the `GATK FAQ <http://www.broadinstitute.org/gatk/guide/topic?name=faqs>`_. | |
374 | |
375 ------ | |
376 | |
377 **Inputs** | |
378 | |
379 GenomeAnalysisTK: ValidateVariants accepts variant files as input. | |
380 | |
381 | |
382 **Outputs** | |
383 | |
384 The output is a log of variant validation. | |
385 | |
386 | |
387 Go `here <http://www.broadinstitute.org/gatk/guide/topic?name=intro>`_ for details on GATK file formats. | |
388 | |
389 ------- | |
390 | |
391 **Settings**:: | |
392 | |
393 doNotValidateFilteredRecords should we skip validation on filtered records? | |
394 warnOnErrors should we just emit warnings on errors instead of terminating the run? | |
395 | |
396 ------ | |
397 | |
398 **Citation** | |
399 | |
400 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>`_ | |
401 | |
402 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>`_ | |
403 | |
404 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>`_ | |
405 | |
406 </help> | |
407 </tool> |