Mercurial > repos > iuc > macs2
annotate macs2_bdgpeakcall.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 |
rev | line source |
---|---|
0 | 1 <tool id="macs2_bdgpeakcall" name="MACS2 bdgpeakcall" version="@VERSION_STRING@.0"> |
2 <description>Call peaks from bedGraph output</description> | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
3 <macros> |
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
4 <import>macs2_macros.xml</import> |
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
5 </macros> |
0 | 6 <expand macro="requirements"> |
7 <requirement type="package" version="4.1.0">gnu_awk</requirement> | |
8 </expand> | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
9 <expand macro="stdio" /> |
0 | 10 <expand macro="version_command" /> |
11 <command> | |
12 macs2 bdgpeakcall | |
13 --ifile "${ infile }" | |
14 --cutoff "${ cutoff }" | |
15 --min-length "${ minlen }" | |
16 --max-gap "${ maxgap }" | |
17 ${ callsummits } | |
18 ${ notrackline } | |
19 --ofile "macs2_bdgpeakcall.bdg" | |
20 && | |
21 awk '!/^track name/' "macs2_bdgpeakcall.bdg" > "${ outfile }" | |
22 </command> | |
23 <inputs> | |
24 <param name="infile" type="data" format="bedgraph" label="MACS score in bedGraph" /> | |
25 | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
26 <param name="cutoff" type="float" label="Cutoff for peaks" value="5.0" |
0 | 27 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)"/> |
28 <param name="minlen" type="integer" value="200" label="Minimum length of peak" help="better to set it as d value (--min-length)"/> | |
29 <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)"/> | |
30 | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
31 <param name="callsummits" type="boolean" truevalue="--call-summits" falsevalue="" checked="False" |
0 | 32 label="If set, MACS will use a more sophisticated approach to find all summits in each enriched peak region." |
33 help="(-call-summits)"/> | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
34 <param name="notrackline" type="boolean" truevalue="" falsevalue="--no-trackline" checked="False" |
0 | 35 label="Include trackline into bedGraph output" |
36 help="required by USCS (--no-trackline)"/> | |
37 </inputs> | |
38 <outputs> | |
39 <data name="outfile" format="tabular" label="${tool.name} on ${on_string}" /> | |
40 </outputs> | |
41 <tests> | |
42 <test> | |
43 <param name="infile" value="callpeak_treatment_part.bdg" ftype="bedgraph" /> | |
44 <param name="cutoff" value="5.0"/> | |
45 <param name="minlen" value="200"/> | |
46 <param name="maxgap" value="30"/> | |
47 <output name="outfile" file="bdgpeakcall_on_callpeak_treatment.tabular"/> | |
48 </test> | |
49 </tests> | |
50 <help> | |
51 **What it does** | |
52 | |
53 Call peaks from bedGraph output. | |
54 bdgpeakcall from macs2 | |
55 | |
56 | |
57 @citation@ | |
58 </help> | |
59 <expand macro="citations" /> | |
60 </tool> |