Mercurial > repos > iuc > mlst
view mlst_list.xml @ 6:7eb5e58d2263 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
| author | iuc |
|---|---|
| date | Wed, 01 Sep 2021 07:41:48 +0000 |
| parents | 022dc4bbc27e |
| children |
line wrap: on
line source
<tool id="mlst_list" name="MLST List" version="@VERSION@"> <description>Lists available schemes for the MLST tool</description> <xrefs> <xref type="bio.tools">mlst</xref> </xrefs> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="version_command" /> <command detect_errors="exit_code"><![CDATA[ mlst $list_type > '$report' ]]></command> <inputs> <param name="list_type" type="boolean" label="Output allele information" truevalue="--longlist" falsevalue="--list" help="Selecting 'Yes' will provide the alleles for all MLST schemes" optional="false" /> </inputs> <outputs> <data format="txt" name="report" label="${tool.name} - list of schemes"/> </outputs> <tests> <!-- Test the longlist option --> <test> <param name="list_type" value="true" /> <output name="report" ftype="txt" > <assert_contents> <has_text text="saureus" /> </assert_contents> </output> </test> <!-- Test the list option --> <test> <param name="list_type" value="false" /> <output name="report" ftype="txt" > <assert_contents> <has_text text="saureus" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ **What it does** MLST List will list all the scheme names used by MLST. Selecting the long list option will also provide the alleles for all MLST schemes. ]]></help> <expand macro="citations" /> </tool>
