view pyprophet_merge.xml @ 0:73736112135d draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet commit a83d231286a8df67483df46e76b4b3a2ef90b251"
author galaxyp
date Wed, 26 Feb 2020 04:16:39 -0500
parents
children
line wrap: on
line source

<tool id="pyprophet_merge" name="PyProphet merge" version="@VERSION@.0">
    <description>
    Merge multiple osw files
    </description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="aggressive">
    <![CDATA[
        pyprophet merge
        --template='$template'
        $same_run
        --out='./output.osw'

        #echo ' '.join(["'%s'" % $input for $input in $inputs])#
    ]]>
    </command>
    <inputs>
        <param name="inputs" type="data" format="osw" multiple="true" label="Input file" help="This file needs to be in OSW format, an SQLite variant." />
        <param argument="--template" type="data" format="sqlite" label="Template osw file" />
        <param name="same_run" type="boolean" truevalue="--same_run" falsevalue="--no-same_run"
            label="Input files are from same run (deletes run information)" help="(--same_run/--no-same_run)"/>
    </inputs>
    <outputs>
        <data name="output" format="osw" label="${tool.name} on ${on_string}: merged.osw" from_work_dir="output.osw" />
    </outputs>
    <tests>
        <test>
            <param name="inputs" value="open_swath_output1.osw,open_swath_output2.osw" ftype="osw"/>
            <param name="template_file" ftype="pqp" value="patient_specific_OSW_optimized_decoys.pqp"/>
            <param name="same_run" value="False"/>
            <output name="output" file="merged.osw" compare="sim_size" />
        </test>
    </tests>
    <help>
<![CDATA[
**What it does**

PyProphet: Semi-supervised learning and scoring of OpenSWATH results.

Merge function of PyProphet: Takes several osw input files and merges them. For large experiments, it is recommended to subsample first.

PyProphet is a Python re-implementation of the mProphet algorithm (Reiter 2010 Nature Methods) optimized for SWATH-MS data acquired by data-independent acquisition (DIA). The algorithm was originally published in (Telemann 2014 Bioinformatics) and has since been extended to support new data types and analysis modes (Rosenberger 2017, Nature biotechnology and Nature methods).

For more information, visit @link@

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