view salmonquantmerge.xml @ 8:ee72e302b6a3 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/salmon commit 363aead8810baedaff299537616cebdab36a8664
author bgruening
date Wed, 07 Dec 2022 19:32:29 +0000
parents 7e50e8d920db
children a896b8b7d264
line wrap: on
line source

<tool id="salmonquantmerge" name="Salmon quantmerge" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE_VERSION@">
    <description>Merge multiple quantification results into a single file</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
        @qmerge@
    ]]></command>
    <inputs>
        <expand macro="quantmerge"/>
    </inputs>
    <outputs>
        <data name="mergedfile" format="tabular" label="${tool.name} on ${on_string}" from_work_dir="qmergeout.tab"/>
    </outputs>
    <tests>
        <test expect_num_outputs="1">
            <repeat name="quantfiles">
                <param name="quants" value="quant2.sf"/>
                <param name="names" value="asdf"/>
            </repeat>
            <repeat name="quantfiles">
                <param name="quants" value="quant1.sf"/>
                <param name="names" value="qwerty"/>
            </repeat>
            <output name="mergedfile" ftype="tabular">
                <assert_contents>
                    <has_text text="qwerty"/>
                    <has_text text="NM_014621"/>
                    <has_n_columns n="3"/>
                </assert_contents>
            </output>
        </test>
    </tests>
    <help><![CDATA[
        @salmonhelp@
    ]]></help>
    <expand macro="citations"/>
</tool>