Mercurial > repos > iuc > snpeff
view snpEff_download.xml @ 11:bfa6c1b8a03c draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff commit 7893b133799b60e1b787262f4649d216adad1fc5
author | iuc |
---|---|
date | Tue, 27 Mar 2018 14:56:29 -0400 |
parents | 5b4ac70948d2 |
children | 5a29ab10dba6 |
line wrap: on
line source
<tool id="snpEff_download" name="SnpEff download:" version="@wrapper_version@.1"> <description> download a pre-built database</description> <macros> <import>snpEff_macros.xml</import> </macros> <requirements> <expand macro="requirement" /> </requirements> <expand macro="stdio" /> <expand macro="version_command" /> <command><![CDATA[ snpEff download -dataDir '$snpeff_db.files_path' -v '$genome_version' ]]></command> <inputs> <param name="genome_version" type="text" value="" label="Select the annotation database you want to download (e.g. GRCh38.86, mm10 etc.)" help="The list of available databases can be obtained with 'SnpEff databases' tool"> <help>@snpeff_database_url@</help> <validator type="regex" message="A genome version name is required">\S+</validator> </param> </inputs> <outputs> <data format="snpeffdb" name="snpeff_db" label="${tool.name} @snpeff_version@ ${genome_version}"/> </outputs> <tests> <test> <param name="genome_version" value="ebola_zaire"/> <output name="snpeff_db"> <assert_contents> <has_text text="ebola_zaire" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ **What it does** This tool downloads a specified database from @snpeff_database_url@. It deposits it into the history. ------- .. class:: infomark **The usage scenario** Suppose you want to annoate a VCF file containing variants within mm10 version of the Mouse genome. To do this you can: #. Download mm10 snpEff database by typing *mm10* into **Select the annotation database...** text box. #. Use **SnpEff eff** by choosing the downloaded database from the history using *Downloaded snpEff database in your history* option of the **Genome source** parameter. @snpeff_in_galaxy_info@ @external_documentation@ ]]></help> <expand macro="citations" /> </tool>