comparison macs2_bdgpeakcall.xml @ 17:35a80f8dda5c draft

Uploaded
author iuc
date Sat, 15 Feb 2014 15:43:39 -0500
parents
children ab352bb83cb2
comparison
equal deleted inserted replaced
16:d9a0a017896a 17:35a80f8dda5c
1 <tool id="macs2_bdgpeakcall" name="MACS2 bdgpeakcall" version="2.0.10.0">
2 <description>Call peaks from bedGraph output</description>
3 <expand macro="requirements">
4 <requirement type="package" version="4.1.0">awk</requirement>
5 </expand>
6 <expand macro="version_command" />
7 <macros>
8 <import>macs2_macros.xml</import>
9 </macros>
10 <command>
11 macs2 bdgpeakcall
12 --ifile $infile
13 --cutoff $cutoff
14 --min-length $minlen
15 --max-gap $maxgap
16 $callsummits
17 $notrackline
18 --ofile "macs2_bdgpeakcall.bdg";
19 awk '!/^track name/' "macs2_bdgpeakcall.bdg" > $outfile
20 </command>
21 <expand macro="stdio" />
22 <inputs>
23 <param name="infile" type="data" format="bedgraph" label="MACS score in bedGraph" />
24
25 <param name="cutoff" type="float" label="Cutoff for peaks" value="5.0"
26 help="Cutoff depends on which method you used for score track. If the file contains pvalue scores from MACS2, score 5 means pvalue 1e-5. DEFAULT: 5.0 (--cutoff)"/>
27 <param name="minlen" type="integer" value="200" label="Minimum length of peak" help="better to set it as d value (--min-length)"/>
28 <param name="maxgap" type="integer" value="30" label="Maximum gap between significant points in a peak" help="better to set it as tag size DEFAULT: 30 (--max-gap)"/>
29
30 <param name="callsummits" type="boolean" truevalue="--call-summits" falsevalue="" checked="False"
31 label="If set, MACS will use a more sophisticated approach to find all summits in each enriched peak region."
32 help="(-call-summits)"/>
33 <param name="notrackline" type="boolean" truevalue="" falsevalue="--no-trackline" checked="False"
34 label="Include trackline into bedGraph output"
35 help="required by USCS (--no-trackline)"/>
36 </inputs>
37 <outputs>
38 <data name="outfile" format="tabular" label="${tool.name} on ${on_string}" />
39 </outputs>
40 <tests>
41 <test>
42 <param name="infile" value="callpeak_treatment_part.bdg" ftype="bedgraph" />
43 <param name="cutoff" value="5.0"/>
44 <param name="minlen" value="200"/>
45 <param name="maxgap" value="30"/>
46 <output name="outfile" file="bdgpeakcall_on_callpeak_treatment.tabular"/>
47 </test>
48 </tests>
49 <help>
50 **What it does**
51
52 Call peaks from bedGraph output.
53 bdgpeakcall from macs2
54
55
56 @citation@
57 </help>
58 </tool>