Mercurial > repos > iuc > macs2
view macs2_refinepeak.xml @ 4:56e104999978 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 9df9b52baf62b70fbcfc3fbe965d7197d4e8738e
author | iuc |
---|---|
date | Mon, 06 Feb 2017 02:30:37 -0500 |
parents | bfe57d6e0c4c |
children | beb902da6e5f |
line wrap: on
line source
<tool id="macs2_refinepeak" name="MACS2 refinepeak" version="@VERSION_STRING@.0"> <description>Refine peak summits and give scores measuring balance of forward- backward tags (Experimental)</description> <macros> <import>macs2_macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="stdio" /> <expand macro="version_command" /> <command> macs2 refinepeak -b "${ bed_infile }" -i "${ infile }" --format '${ infile.extension.upper() }' --cutoff "${ cutoff }" --window-size "${ winsize }" --ofile "${ outfile }" </command> <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="outfile" format="bed" label="${tool.name} on ${on_string}" /> </outputs> <tests> <test> <param name="infile" value="ChIP_200K.bed" ftype="bed"/> <param name="bed_infile" value="callpeak_summits_part.bed" ftype="bed"/> <param name="cutoff" value="5.0"/> <param name="winsize" value="200"/> <output name="outfile" file="refinepeak_ChIP_and_summits.bed"/> </test> </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> <expand macro="citations" /> </tool>