view macs2_refinepeak.xml @ 11:ac24388a0fda draft

Uploaded
author iuc
date Thu, 23 Jan 2014 11:31:32 -0500
parents 8e2039b920bf
children
line wrap: on
line source

<tool id="macs2_refinepeak" name="MACS2 refinepeak" version="2.0.10.0">
    <description>Refine peak summits and give scores measuring balance of forward- backward tags (Experimental)</description>
    <expand macro="requirements" />
    <expand macro="version_command" />
    <macros>
        <import>macs2_macros.xml</import>
    </macros>
    <command>
        macs2 refinepeak
            -b $bed_infile
            -i $infile
            --format '$ifile.extension.upper()'
            --cutoff $cutoff
            --window-size $winsize
            --ofile $ofile
    </command>
    <expand macro="stdio" />
    <inputs>
        <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" />
        <param name="bed_infile" type="data" format="bed" label="Candidate peak file in BED format" />
        <param name="cutoff" type="float" label="Cutoff" value="5.0" help="DEFAULT: 5.0 (--cutoff)"/>
        <param name="winsize" type="integer" value="200" label="Scan window size on both side of the summit" help="default: 200bp (--window-size)" />
    </inputs>

    <outputs>
        <data name="ofile" format="bed" label="${tool.name} on ${on_string}" />
    </outputs>
    <tests>
        <!--none yet for macs2-->
    </tests>
    <help>
**What it does**

(Experimental) Take raw reads alignment, refine peak summits and give scores measuring balance of forward- backward tags. Inspired by SPP.

@citation@
    </help>
</tool>