Mercurial > repos > iuc > gatk2
comparison variant_validate.xml @ 11:0d369d08ad6e draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk2 commit 344140b8df53b8b7024618bb04594607a045c03a
| author | iuc |
|---|---|
| date | Mon, 04 May 2015 22:47:06 -0400 |
| parents | b80301676614 |
| children |
comparison
equal
deleted
inserted
replaced
| 10:5db8d6815cf3 | 11:0d369d08ad6e |
|---|---|
| 1 <tool id="gatk2_variant_validate" name="Validate Variants" version="@VERSION@.0"> | 1 <tool id="gatk2_variant_validate" name="Validate Variants" version="@VERSION@.0"> |
| 2 <description></description> | 2 <description></description> |
| 3 <expand macro="requirements" /> | |
| 4 <expand macro="version_command" /> | |
| 5 <macros> | 3 <macros> |
| 6 <import>gatk2_macros.xml</import> | 4 <import>gatk2_macros.xml</import> |
| 7 </macros> | 5 </macros> |
| 6 <expand macro="requirements" /> | |
| 7 <expand macro="version_command" /> | |
| 8 <command interpreter="python"> | 8 <command interpreter="python"> |
| 9 gatk2_wrapper.py | 9 gatk2_wrapper.py |
| 10 --stdout "${output_log}" | 10 --stdout "${output_log}" |
| 11 -d "--variant:variant,%(file_type)s" "${reference_source.input_variant}" "${reference_source.input_variant.ext}" "input_variant" | 11 -d "--variant:variant,%(file_type)s" "${reference_source.input_variant}" "${reference_source.input_variant.ext}" "input_variant" |
| 12 -p ' | 12 -p ' |
| 13 @JAR_PATH@ | 13 @JAR_PATH@ |
| 14 -T "ValidateVariants" | 14 -T "ValidateVariants" |
| 15 | 15 |
| 16 \$GATK2_SITE_OPTIONS | 16 \$GATK2_SITE_OPTIONS |
| 17 | 17 |
| 18 #if $reference_source.reference_source_selector != "history": | 18 #if $reference_source.reference_source_selector != "history": |
| 19 -R "${reference_source.ref_file.fields.path}" | 19 -R "${reference_source.ref_file.fields.path}" |
| 20 #end if | 20 #end if |
| 21 ${warn_on_errors} | 21 ${warn_on_errors} |
| 22 ${do_not_validate_filtered_records} | 22 ${do_not_validate_filtered_records} |
| 23 ' | 23 ' |
| 24 @DBSNP_OPTIONS@ | 24 @DBSNP_OPTIONS@ |
| 25 | 25 |
| 26 #include source=$standard_gatk_options# | 26 #include source=$standard_gatk_options# |
| 27 </command> | 27 </command> |
| 28 <inputs> | 28 <inputs> |
| 29 | 29 |
| 30 <conditional name="reference_source"> | 30 <conditional name="reference_source"> |
| 31 <expand macro="reference_source_selector_param" /> | 31 <expand macro="reference_source_selector_param" /> |
| 32 <when value="cached"> | 32 <when value="cached"> |
| 33 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> | 33 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> |
| 34 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;"> | 34 <param name="ref_file" type="select" label="Using reference genome" help="-R,--reference_sequence &lt;reference_sequence&gt;"> |
| 42 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> | 42 <param name="input_variant" type="data" format="vcf" label="Input variant file" help="-V,--variant &lt;variant&gt;" /> |
| 43 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> | 43 <param name="ref_file" type="data" format="fasta" label="Using reference file" help="-R,--reference_sequence &lt;reference_sequence&gt;" /> |
| 44 </when> | 44 </when> |
| 45 </conditional> | 45 </conditional> |
| 46 <expand macro="dbsnp_param" /> | 46 <expand macro="dbsnp_param" /> |
| 47 | 47 |
| 48 <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"/> | 48 <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"/> |
| 49 <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"/> | 49 <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"/> |
| 50 | 50 |
| 51 <expand macro="gatk_param_type_conditional" /> | 51 <expand macro="gatk_param_type_conditional" /> |
| 52 | 52 |
| 53 </inputs> | 53 </inputs> |
| 54 <outputs> | 54 <outputs> |
| 55 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | 55 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> |
| 56 </outputs> | 56 </outputs> |
| 57 <tests> | 57 <tests> |
