view retip_descriptors.xml @ 8:29aaad80929f 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:12 +0000
parents 63b2c4cfaa48
children
line wrap: on
line source

<tool id="retip_descriptors" name="Retip chemical descriptors" version="@TOOL_VERSION@+galaxy3">
    <description>for retention time prediction</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="creator"/>

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

        This tool **computes chemical descriptors** with CDK a JAVA based open source project aimed at cheminformatics.

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