view do-partition.xml @ 8:5a0fa29951ae draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer commit 7599ef16dc8b83ee49236ed5bb229260c969b0ab
author iuc
date Mon, 17 Jun 2024 11:46:46 +0000
parents b7429b53be2a
children
line wrap: on
line source

<tool id="khmer_partition" name="khmer: Sequence partition all-in-one" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
    <description>Load, partition, and annotate sequences</description>
    <expand macro="bio_tools"/>
    <macros>
        <token name="@BINARY@">do-partition.py</token>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <expand macro="version" />
    <command><![CDATA[
set -u &&
@LINK_SEQUENCES@
mkdir -p output && cd output &&
@BINARY@
@TABLEPARAMS@
@THREADS@
output
@USE_SEQUENCES@
]]>
    </command>
    <inputs>
        <expand macro="input_sequences_filenames" />
        <expand macro="tableinputs" />
    </inputs>
    <outputs>
        <data name="information" format="txt" from_work_dir="output.info" label="${tool.name} on ${on_string}: summary." />
        <expand macro="output_sequences" extension="part"/>
    </outputs>
    <tests>
        <test>
            <param name="inputs" value="random-20-a.fa"/>
            <output_collection name="sequences" type="list">
                <element name="random-20-a.fa" file="random-20-a.fa.part" />
            </output_collection>
        </test>
    </tests>
    <help><![CDATA[
Load in a set of sequences, partition them, merge the partitions, and
annotate the original sequences files with the partition information.

This script combines the functionality of `load-graph.py`,
`partition-graph.py`, `merge-partitions.py`, and
`annotate-partitions.py` into one script. This is convenient
but should probably not be used for large data sets, because
`do-partition.py` doesn't provide save/resume functionality.

]]>
    </help>
    <citations>
        <expand macro="software-citation" />
        <expand macro="graph-citation" />
    </citations>
</tool>