view retip_train.xml @ 8:e7771b3d6a40 draft default tip

"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 9bc547872c98a9c13c561d15e8990fe82bdc0e72"
author recetox
date Fri, 28 Jan 2022 16:29:45 +0000
parents 9012a9dba1db
children
line wrap: on
line source

<tool id="retip_train" name="Retip training" version="@TOOL_VERSION@+galaxy3">
    <description>the Keras model to predict retention times</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="creator"/>

    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
            /run.sh trainKeras.R '$descr_train' 'model.h5'
      ]]>
    </command>
    <inputs>
        <param name="descr_train" label="Select Descriptors.h5 Dataset" type="data" format="h5"
               optional="false"/>
    </inputs>
    <outputs>
        <data format="h5" name="output1" label="Model.h5 Dataset" from_work_dir="model.h5"/>
    </outputs>
    <tests>
        <test expect_num_outputs="1">
            <param name="descr_train" value="descriptors.h5"/>
            <output name="output1" file="model.h5" ftype="h5" compare="sim_size" delta="1000"/>
        </test>
    </tests>
    <help>
        <![CDATA[
        .. class:: infomark

        This tool uses ALMA mater: Advanced Learning Machine Algorithms to **train models**.

        @HELP@
        ]]>
    </help>
    <expand macro="citations"/>
</tool>