Mercurial > repos > iuc > miniprot_index
view miniprot_index.xml @ 3:3ccb407501d8 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot commit 7686c033edb974379f855d2563149d56920f063e
author | iuc |
---|---|
date | Thu, 13 Jul 2023 09:37:48 +0000 |
parents | b7b6b8188999 |
children | 9e2772125405 |
line wrap: on
line source
<tool id="miniprot_index" name="Miniprot index" version="@TOOL_VERSION@+galaxy0" profile="21.05"> <description>build a genome index for miniprot</description> <macros> <import>macros.xml</import> </macros> <requirements> <requirement type="package" version="@TOOL_VERSION@">miniprot</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ miniprot -d '$output_index' '$input_genome' ]]></command> <inputs> <param name="input_genome" type="data" format="fasta,fasta.gz" label="Genomic sequence (FASTA)" help="Genomic contigs / scaffolds in FASTA format" /> </inputs> <outputs> <!-- refine this when miniprot index format is in Galaxy datatypes --> <data name="output_index" format="binary" label="Miniprot index on ${on_string}" /> </outputs> <tests> <test> <param name="input_genome" value="input_genome.fasta.gz" ftype="fasta" /> <output name="output_index" ftype="binary"> <assert_contents> <has_size value="69720149" delta="1000" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ Pre-index genomic sequences (contigs, scaffolds or chromosomes) for use in the miniprot_ protein to genome alignment tool. .. _miniprot: https://github.com/lh3/miniprot ]]></help> <expand macro="citation"></expand> </tool>