Mercurial > repos > iuc > macs2
annotate macs2_bdgdiff.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_bdgdiff" name="MACS2 bdgdiff" version="@VERSION_STRING@.0"> |
2 <description>Differential peak detection based on paired four bedgraph files</description> | |
3 <macros> | |
4 <import>macs2_macros.xml</import> | |
5 </macros> | |
2
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
6 <expand macro="requirements" /> |
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
7 <expand macro="stdio" /> |
bfe57d6e0c4c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 63955994af5090ec444c03c221df0012d5ae4e74
iuc
parents:
0
diff
changeset
|
8 <expand macro="version_command" /> |
0 | 9 <command> |
10 macs2 bdgdiff | |
11 --t1 "${ infile_pileup_cond1 }" | |
12 --t2 "${ infile_pileup_cond2 }" | |
13 --c1 "${ infile_control_cond1 }" | |
14 --c2 "${ infile_control_cond2 }" | |
15 --cutoff "${ cutoff }" | |
16 --min-len "${ minlen }" | |
17 --depth1 "${ depth1 }" | |
18 --depth2 "${ depth2 }" | |
19 --max-gap "${ maxgap }" | |
20 --o-prefix MACS2 | |
21 | |
22 </command> | |
23 <inputs> | |
24 <param name="infile_pileup_cond1" type="data" format="bedgraph" label="MACS pileup bedGraph for condition 1" /> | |
25 <param name="infile_pileup_cond2" type="data" format="bedgraph" label="MACS pileup bedGraph for condition 2" /> | |
26 | |
27 <param name="infile_control_cond1" type="data" format="bedgraph" label="MACS control lambda bedGraph for condition 1" /> | |
28 <param name="infile_control_cond2" type="data" format="bedgraph" label="MACS control lambda bedGraph for condition 2" /> | |
29 | |
30 <param name="cutoff" type="float" label="Cutoff of log10 likelihood ratio cutoff" value="1.0" help="Default: 1.0 (likelihood ratio=10) (--cutoff)"/> | |
31 <param name="minlen" type="integer" label="Minimum length of differential region" value="200"/> | |
32 <param name="depth1" type="integer" value="1" label="Sequence depth of condition 1 in million reads" help="default: 1 (--depth1)" /> | |
33 <param name="depth2" type="integer" value="1" label="Sequence depth of condition 2 in million reads" help="default: 1 (--depth2)" /> | |
34 <param name="maxgap" type="integer" value="100" label="Maximum gap to merge nearby differential regions" help="Consider a wider gap for broad marks. Maximum gap should be smaller than minimum length. Default: 100 (-g)." /> | |
35 | |
4
56e104999978
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 9df9b52baf62b70fbcfc3fbe965d7197d4e8738e
iuc
parents:
2
diff
changeset
|
36 <param name="outputs" type="select" display="checkboxes" multiple="True" optional="false" label="Outputs"> |
0 | 37 <option value="--ofile-cond1">Unique regions in condition 1</option> |
38 <option value="--ofile-cond2">Unique regions in condition 2</option> | |
39 <option value="--ofile-both-conditions" selected="true">Common regions in both conditions</option> | |
40 </param> | |
41 </inputs> | |
42 <outputs> | |
43 <data name="output_cond1" format="bed" from_work_dir="MACS2_cond1.bed" label="${tool.name} on ${on_string} (cond 1)"> | |
44 <filter>'--ofile-cond1' in outputs</filter> | |
45 </data> | |
46 <data name="output_cond2" format="bed" from_work_dir="MACS2_cond1.bed" label="${tool.name} on ${on_string} (cond 2)"> | |
47 <filter>'--ofile-cond2' in outputs</filter> | |
48 </data> | |
49 <data name="output_both" format="bed" from_work_dir="MACS2_common.bed" label="${tool.name} on ${on_string} (both)"> | |
50 <filter>'--ofile-both-conditions' in outputs</filter> | |
51 </data> | |
52 </outputs> | |
53 <tests> | |
54 <!-- we need a second condition here --> | |
55 <!-- | |
56 <test> | |
57 | |
58 <param name="infile_control_cond1" value="Control_200K.bed" ftype="bed"/> | |
59 <param name="infile_control_cond2" value="Control_200K.bed" ftype="bed"/> | |
60 <param name="infile_pileup_cond1" value="ChIP_200K.bed" ftype="bed"/> | |
61 <param name="infile_pileup_cond2" value="ChIP_200K.bed" ftype="bed"/> | |
62 <param name="cutoff" value="1.0"/> | |
63 <param name="minlen" value="200"/> | |
64 <param name="depth1" value="1"/> | |
65 <param name="depth2" value="1"/> | |
66 <param name="maxgap" value="100"/> | |
67 <param name="outputs" value="-ofile-cond1,-ofile-cond2,-ofile-both-conditions"/> | |
68 <output name="output_cond1" file=""/> | |
69 <output name="output_cond2" file=""/> | |
70 <output name="output_both" file=""/> | |
71 </test> | |
72 --> | |
73 </tests> | |
74 <help> | |
75 **What it does** | |
76 | |
77 bdgdiff from macs2 | |
78 | |
79 | |
80 @citation@ | |
81 </help> | |
82 <expand macro="citations" /> | |
83 </tool> |