view chap/chap.xml @ 127:d8baf7dafbd8 draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit dfe15e79689bca8ddcd843f9cf47eff29f6ee2e4-dirty
author ximgchess
date Thu, 15 Jun 2023 19:08:58 +0000
parents 47d2a1f087d1
children 0823bbfb0a78
line wrap: on
line source

<tool id="CHAP_test" name="CHESS Analysis Pipeline" version="0.1.0+galaxy0" python_template_version="3.5" profile="21.05">
    <macros>
        <import>../macros.xml</import>
    </macros>
    <requirements>
        <expand macro="chap-requirement" />
    </requirements>
    <command detect_errors="exit_code"><![CDATA[
        cp '$input' data.csv &&
        CHAP --config '$config' &&
    ]]></command>
    <inputs>
        <param type="data" name="config" format="yaml" />
        <param type="data" name="input" format="csv" />
    </inputs>
    <outputs>
        <data name="output" format="json" />
    </outputs>
    <tests>
        <test>
            <param name="config" value="config.yaml"/>
            <param name="input" value="data.csv"/>
        </test>
    </tests>
    <help><![CDATA[
        CHESS Analysis Pipeline (CHAP):

        To run it on command line you'll use:
        CHAP --config CONFIG

        To run it within galaxy you'll only need to upload your
        required configuration pipeline and necessary data.
    ]]></help>
    <citations>
        <expand macro="chap-citation" />
    </citations>
</tool>