Mercurial > repos > wolma > mimodd_snpeff
changeset 0:01e09a4cacf7 draft
planemo upload for repository https://github.com/wm75/mimodd_galaxy_wrappers commit b36048cd608ede0ec6f6559648525c9350caae34-dirty
author | wolma |
---|---|
date | Sat, 11 Nov 2017 18:20:20 -0500 |
parents | |
children | 99dfde12ee53 |
files | annotate_variants.xml macros.xml snpeff_genomes.xml |
diffstat | 3 files changed, 224 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/annotate_variants.xml Sat Nov 11 18:20:20 2017 -0500 @@ -0,0 +1,145 @@ +<tool id="mimodd_annotate" name="MiModD Variant Annotation" +version="@MIMODD_WRAPPER_VERSION@"> + <description> + with functional effects on genes and transcripts + </description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements" /> + <expand macro="stdio" /> + <expand macro="version_command" /> + <command><![CDATA[ + mimodd annotate + '$inputfile' '$genome.annotation_source' + #if $snpeff_settings.stats: + --stats '$summary_file' + #end if + #if $codon_tables.genome_codon_table.strip() or len($codon_tables.table_specs) > 0: + --codon-tables + #if $codon_tables.genome_codon_table.strip(): + '$codon_tables.genome_codon_table' + #end if + #for $table_spec in $codon_tables.table_specs: + '$table_spec.contig:$table_spec.table' + #end for + #end if + #if $snpeff_settings.ud: + --ud ${snpeff_settings.ud} + #end if + #if $snpeff_settings.filter: + #echo ' '.join(str($snpeff_settings.filter).split(',')) + #end if + --ofile '$ofile' + --verbose + ]]></command> + + <inputs> + <param name="inputfile" type="data" format="vcf" + label="VCF input file to be annotated" /> + <conditional name="genome"> + <param name="selection_method" type="select" + label="Select SnpEff Genome Database"> + <option value="select_from_list">from a list of installed databases</option> + <option value="select_by_name">by name</option> + </param> + <when value="select_from_list"> + <param name="genome_list" type="data" format="tabular" optional="true" + label="List of available SnpEff Genomes" + help="Select a dataset generated with the MiModD List Installed SnpEff Genomes tool to be able to choose from the genome databases listed in it." /> + <param name="annotation_source" type="select" + label="SnpEff Genome to use" + help="Select a genome annotation database for your organism from the ones in the list."> + <options from_dataset="genome_list"> + <column name="name" index="0"/> + <column name="value" index="1"/> + <filter type="unique_value" name="unique_names" column="0"/> + </options> + </param> + </when> + <when value="select_by_name"> + <param name="annotation_source" type="text" + label="Name of an installed SnpEff genome" + help="Your input needs to exactly match the name of an installed SnpEff database."> + <validator type="expression" message="A SnpEff genome is required to run this tool.">value.strip()</validator> + </param> + </when> + </conditional> + <section name="codon_tables" title="Codon Table Configuration" expanded="false"> + <param name="genome_codon_table" type="text" + label="Genome codon table" + help="If this genome uses a non-standard codon table and this fact is not declared in the SnpEff config file, specify the table here. The name you provide must match exactly the name of a codon table known to SnpEff." /> + <repeat name="table_specs" default="0" min="0" + title="Codon tables to use for specific contigs" + help="Use if certain contigs in the reference genome use a distinct codon table. A typical example is a mitochondrial genome contained as a contig in the reference genome. Contig/codon table assignments declared here will take precedence over a genome codon table set above."> + <param name="contig" type="text" label="contig or chromosome name"> + <validator type="expression" message="This is a required field for a contig/codon table assignment.">value.strip()</validator> + </param> + <param name="table" type="text" label="uses codon table"> + <validator type="expression" message="This is a required field for a contig/codon table assignment.">value.strip()</validator> + </param> + </repeat> + </section> + <section name="snpeff_settings" title="More SnpEff options" expanded="false"> + <param name="stats" type="boolean" checked="false" + label="Have SnpEff produce a summary file of results" /> + <param name="ud" type="integer" optional="true" + label="upstream downstream interval length (default = 5000 bases)" + help="specify the upstream/downstream interval length. Variants more than INTERVAL nts from the next annotated gene will be considered intergenic"/> + <param name="filter" type="select" display="checkboxes" multiple="true" + label="Disable select types of annotations" + help="The corresponding variants will still be retained (without annotations) in the output"> + <option value="--no-downstream">Do not annotate DOWNSTREAM changes</option> + <option value="--no-upstream">Do not annotate UPSTREAM changes</option> + <option value="--no-intergenic">Do not annotate INTERGENIC changes</option> + <option value="--no-intron">Do not annotate INTRON changes</option> + <option value="--no-utr">Do not annotate 5_PRIME_UTR or 3_PRIME_UTR changes</option> + </param> + </section> + </inputs> + + <outputs> + <data name="ofile" format="vcf" + label="Variants annotated with MiModd from ${on_string}" /> + <data name="summary_file" format="html" + label="Summary of MiModD variant annotation of ${on_string}"> + <filter>snpeff_settings['stats']</filter> + </data> + </outputs> + + <help><![CDATA[ +.. class:: warningmark + +This tool requires the variant annotation software SnpEff, which is not part of +the MiModD package! It also needs the correct SnpEff genome database for your +organism and reference sequence version installed with SnpEff. + +.. class:: infomark + + **What it does** + +This tool uses SnpEff to annotate the variants in the VCF input dataset with +the effects that these variants have on known genomic features, i.e. on genes +and transcripts. + +To do its job, SnpEff requires a database of known genome annotations for your +organism of interest. If you know the exact name of the genome database that +you want to use, you can enter it directly. Otherwise, you should use the +MiModD *List Installed SnpEff Genomes* tool first to generate a new dataset in +your history that lists all SnpEff genome databases currently available to +SnpEff on the system, then when you select this dataset as the *List of +available SnpEff Genomes* above, you will be able to choose the SnpEff Genome +from a dropdown list. + +The tool will create a new dataset in VCF format with the annotations added to +the corresponding variant records. Do not expect this format to be very +readable, but use the *MiModD Variant Reports* tool to turn it into a human +friendly form. + +In addition, you can instruct the tool to produce an additional dataset with a +summary of the variants and their effects in html format. + +@HELP_FOOTER@ + ]]></help> + <expand macro="citations" /> +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/macros.xml Sat Nov 11 18:20:20 2017 -0500 @@ -0,0 +1,46 @@ +<macros> + <token name="@MIMODD_VERSION_REQUIRED@">0.1.8</token> + <token name="@MIMODD_REAL_VERSION@">0.1.8</token> + <token name="@MIMODD_WRAPPER_VERSION@">0.1.8_0</token> + <token name="@HELP_FOOTER@"><![CDATA[ +---- + +.. class:: infomark + + For **additional help** see these resources: + +- The complete `MiModD User Guide <http://mimodd.readthedocs.io/en/v0.1.8/usage_toc.html>`__ + +- The `MiModD help forum <https://groups.google.com/forum/#!forum/mimodd>`__ reachable also via `email <mailto:mimodd@googlegroups.com>`__ + + ]]></token> + <xml name="requirements"> + <requirements> + <requirement type="package" version="@MIMODD_VERSION_REQUIRED@">MiModD</requirement> + <yield /> + </requirements> + </xml> + <xml name="stdio"> + <stdio> + <exit_code range="1:" /> + </stdio> + </xml> + <xml name="version_command"> + <version_command><![CDATA[mimodd version -q]]></version_command> + </xml> + <xml name="citations"> + <citations> + <citation type="bibtex"> +@misc{ +maier_mimodd_2014, +title = {{MiModD} - {Mutation} {Identification} in {Model} {Organism} {Genomes}}, +shorttitle = {{MiModD}}, +url = {https://sourceforge.net/projects/mimodd/}, +author = {Maier, Wolfgang and Moos, Katharina and Seifert, Mark and Baumeister, Ralf}, +year = {2014}, publisher={SourceForge.net} } + </citation> + </citations> + </xml> +</macros> + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/snpeff_genomes.xml Sat Nov 11 18:20:20 2017 -0500 @@ -0,0 +1,33 @@ +<tool id="mimodd_snpeff_genomes" name="List Installed SnpEff Genomes" version="@MIMODD_WRAPPER_VERSION@"> + <description> + available for variant annotation with MiModD + </description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements" /> + <expand macro="stdio" /> + <expand macro="version_command" /> + <command><![CDATA[ + mimodd snpeff-genomes -o '$outputfile' + ]]></command> + + <inputs> + </inputs> + + <outputs> + <data name="outputfile" format="tabular" /> + </outputs> + + <help><![CDATA[ +.. class:: infomark + +**What it does** + +When executed this tool searches the host machine's SnpEff installation for properly registered and installed +genome annotation files. The resulting list is added as a plain text file to your history for use with the *Variant Annotation* Tool. + +@HELP_FOOTER@ + ]]></help> + <expand macro="citations" /> +</tool>