view abundance-dist.xml @ 4:5a2da133262a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/khmer/ commit f30bc6f7e10409dfa0dd65688e60da8b59f12464
author iuc
date Mon, 14 Nov 2016 17:49:52 -0500
parents be929aa4e152
children e0de12ae3fc2
line wrap: on
line source

<tool id="khmer_abundance_distribution" name="Abundance Distribution" version="@WRAPPER_VERSION@.0">
    <description>
        Calculate abundance distribution of k-mers using pre-made k-mer countgraphs
    </description>
    <macros>
        <token name="@BINARY@">abundance-dist.py</token>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <expand macro="version" />
    <command><![CDATA[
set -xu &&
mkdir output && cd output &&
@BINARY@
--squash
${zero}
${bigcount}
${input_countgraph_filename}
${input_sequence_filename}
${output_histogram_filename}
]]>
    </command>
    <inputs>
        <expand macro="input_countgraph_filename" />
        <expand macro="input_sequence_filename" />
        <expand macro="input_zero" />
        <expand macro="input_bigcount" />
    </inputs>
    <outputs>
        <expand macro="abundance-histogram-output" />
    </outputs>
    <tests>
        <test>
            <param name="input_sequence_filename" value="test-abund-read-2.fa" />
            <param name="input_countgraph_filename" value="test-abund-read-2.oxlicg" ftype="oxlicg" />
            <param name="zero" value="false" />
            <output name="output_histogram_filename">
                <assert_contents>
                    <has_text text="1,96,96,0.98" />
                    <has_text text="1001,2,98,1.0" />
                </assert_contents>
            </output>
        </test>
        <test>
            <param name="input_sequence_filename" value="test-abund-read-2.fa" />
            <param name="input_countgraph_filename" value="test-abund-read-2.oxlicg" ftype="oxlicg" />
            <param name="zero" value="false" />
            <param name="bigcount" value="false" />
            <output name="output_histogram_filename">
                <assert_contents>
                    <has_text text="1,96,96,0.98" />
                    <has_text text="255,2,98,1.0" />
                    </assert_contents>
            </output>
        </test>
    </tests>
    <help><![CDATA[
Calculate abundance distribution of the k-mers in the sequence file using a
pre-made k-mer countgraph.

@HELP_FOOTER@
]]>
    </help>
    <citations>
        <expand macro="software-citation" />
        <expand macro="counting-citation" />
    </citations>
</tool>