Mercurial > repos > bvalot > pymlst
view wgmlst_create.xml @ 2:4394da33d837 draft default tip
planemo upload for repository https://github.com/bvalot/pyMLST commit 142042a3856f8886031cacaa4fb28743a1bcd540
author | bvalot |
---|---|
date | Wed, 15 Nov 2023 12:22:07 +0000 |
parents | 5b2c48fa0175 |
children |
line wrap: on
line source
<tool id="wgmlst_create_wrapper" name="Create cg/wgMLST database" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.05"> <description></description> <macros> <import>macro.xml</import> </macros> <expand macro="requirements" /> <stdio> <exit_code range="1:" level="fatal" /> </stdio> <version_command>wgMLST -v</version_command> <command> wgMLST create --force #if $concatenate -c #end if #if $remove -r #end if '${database}' '${coregene}' &> '${logfile}' </command> <inputs> <param name="coregene" type="data" format="fasta" label="Multiple fasta with GENES sequence" help="Fasta format" /> <param name="concatenate" type="boolean" checked="false" label="Automatically concatenate GENES with duplicated sequences" /> <param name="remove" type="boolean" checked="false" label="Automatically remove GENES with duplicated sequences" /> </inputs> <outputs> <data name="logfile" format="txt" label="${tool.name} on ${coregene.name}: log" /> <data name="database" format="sqlite" label="cg/wgMLST database on ${coregene.name}" /> </outputs> <tests> <test expect_num_outputs="2"> <param name="coregene" ftype="fasta" value="EHSB-021_gene.fasta" /> <param name="remove" value="true" /> <output name="logfile" ftype="txt"> <assert_contents> <has_text text="Skipped invalid genes: 99" /> <has_text text="Database initialized" /> </assert_contents> </output> </test> </tests> <help> **What it does** Create a cg/wgMLST DATABASE from a template COREGENE. Options: -c, --concatenate Automatically concatenate GENES with duplicated sequences. -r, --remove Automatically remove GENES with duplicated sequences. **License and citation** This Galaxy tool is Copyright © 2022 `B. Valot` and is released under the `GPL3 license`. </help> <citations> </citations> </tool>