view msmetaenhancer.xml @ 9:90745ecc5e9f draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer commit f470da888622cd1e85ed10edb06d00c953b46fca
author recetox
date Thu, 22 Jun 2023 14:10:43 +0000
parents 2ada1099f42e
children 3e2cb0bc6959
line wrap: on
line source

<tool id="msmetaenhancer" name="MSMetaEnhancer" version="@TOOL_VERSION@+galaxy1">
    <description>annotate MS data</description>

    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="creator"/>
    <xrefs>
        <xref type="bio.tools">msmetaenhancer</xref>
    </xrefs>

    <requirements>
        <requirement type="package" version="@TOOL_VERSION@">msmetaenhancer</requirement>
    </requirements>

    <environment_variables>
        <environment_variable name="MPLCONFIGDIR">\$_GALAXY_JOB_TMP_DIR</environment_variable>
        <environment_variable name="XDG_CACHE_HOME">\$_GALAXY_JOB_TMP_DIR</environment_variable>
    </environment_variables>

    <command detect_errors="exit_code"><![CDATA[
        sh ${msmetaenhancer_python_cli}
    ]]> </command>

    <configfiles>
        <configfile name="msmetaenhancer_python_cli">
            python3 ${__tool_directory__}/msmetaenhancer_wrapper.py \
            --input_file "$input_file" \
            --file_format "$input_file.ext" \
            --output_file "$output_file" \
            #if $options.logging.output_log:
            --log_file "$log_file" \
            --log_level "$options.logging.log_level" \
            #end if
            #if len($ordered_jobs) != 0:
                #set ordered_jobs = ",".join([str($job.ordered_jobs_select) for $job in $ordered_jobs]) + ","
            #else:
                #set ordered_jobs = ""
            #end if
            #if $jobs != 'None':
                #set random_jobs = str($jobs)
            #else:
                #set random_jobs = ""
            #end if
            #set all_jobs = str($ordered_jobs) + str($random_jobs)
            --jobs "$all_jobs"
        </configfile>
    </configfiles>

    <inputs>
        <param label="Input spectra dataset" name="input_file" type="data" format="msp,mgf,json,csv,tsv,xlsx" />

        <repeat name="ordered_jobs" title="Ordered conversions">
            <param name="ordered_jobs_select" type="select" label="Available conversions" multiple="false" optional="true">
                <expand macro="job_options" />
            </param>
        </repeat>

        <param name="jobs" type="select" label="Other conversions" multiple="true" optional="true">
            <expand macro="job_options" />
        </param>

        <section name="options" title="Options">
            <conditional name="logging">
                <param label="Save the log file" name="output_log" type="boolean" truevalue="TRUE" falsevalue="FALSE"
                       checked="false" help="Preserve a log with details about the annotation process."/>
                <when value="TRUE">
                    <param name="log_level" type="select" label="Log level"
                           help="Severity of log messages  present in the log file.">
                        <option value="error">ERROR</option>
                        <option value="warning">WARNING</option>
                        <option value="info" selected="true">INFO</option>
                    </param>
                </when>
            </conditional>
        </section>
    </inputs>

    <outputs>
        <data label="MSMetaEnhancer on ${on_string}" name="output_file" format="msp">
            <change_format>
                <when input="input_file.ext" value="mgf" format="mgf" />
                <when input="input_file.ext" value="json" format="json" />
                <when input="input_file.ext" value="csv" format="csv" />
                <when input="input_file.ext" value="tsv" format="tsv" />
                <when input="input_file.ext" value="xlsx" format="xlsx" />
            </change_format>
        </data>    
        <data label="Log of MSMetaEnhancer on ${on_string}" name="log_file" format="txt">
           <filter>options['logging']['output_log']</filter>
       </data>
    </outputs>

    <tests>
        <test>
            <param name="input_file" value="sample.msp" ftype="msp" />
            <param name="jobs" value="compound_name inchi PubChem,inchi canonical_smiles PubChem"/>
            <output name="output_file" file="sample_out.msp" ftype="msp"/>
        </test>
    </tests>

    <help>
        <![CDATA[
        @HELP@
        ]]>
    </help>

</tool>