annotate unionBedGraphs.xml @ 4:607c0576c6ab draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
author iuc
date Wed, 27 Jan 2016 15:15:59 -0500
parents 82aac94b06c3
children c78cf6fe3018
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
1 <tool id="bedtools_unionbedgraph" name="Merge BedGraph files" version="@WRAPPER_VERSION@.0">
4
607c0576c6ab planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents: 1
diff changeset
2 <description>combines coverage intervals from multiple BEDGRAPH files</description>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
4 <import>macros.xml</import>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
8 <command>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
9 <![CDATA[
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
10 unionBedGraphs
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 $header
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
12 -filler "${filler}"
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 #if $zero.value == True:
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 -empty
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
15 -g $genome
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
18 #if str($tag.tag_select) == "tag":
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
19 #set files = '" "'.join( [ str( $file ) for $file in $tag.inputs ] )
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
20 -i "${files}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
21 #else:
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
22 -i
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
23 #for $bg in $tag.bedgraphs:
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
24 "${bg.input}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
25 #end for
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
26 -names
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
27 #for $bg in $tag.bedgraphs:
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
28 "${bg.custom_name}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 #end for
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 #end if
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
31 > "${output}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 <inputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
35 <conditional name="tag">
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
36 <param name="tag_select" type="select" label="Sample name">
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 <option value="tag" selected="true">Use input's tag</option>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
38 <option value="custom">Enter custom name per file</option>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
40 <when value="tag">
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
41 <param name="inputs" format="bedgraph" type="data" multiple="True" label="BedGraph files" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 <when value="custom">
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
44 <repeat name="bedgraphs" title="Add BedGraph files" min="2" >
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
45 <param name="input" format="bedgraph" type="data" multiple="True" label="BedGraph file" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
46 <param name="custom_name" type="text" area="false" label="Custom sample name"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
47 </repeat>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
48 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
49 </conditional>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
50 <expand macro="genome" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
51 <param name="zero" type="boolean" checked="true"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
52 label="Report regions with zero coverage"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
53 help="If set, regions without any coverage will also be reported. Requires a valid organism key for all input datasets" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
54 <param name="filler" type="text" value="N/A"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
55 label="Text to use for no-coverage value"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
56 help="Can be 0.0, N/A, - or any other value. (-filler)" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
57 <expand macro="print_header" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
58 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
59 <outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
60 <data name="output" format="bedgraph" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
61 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
62 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
63 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
64 <param name="tag_select" value="tag"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
65 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
66 <param name="zero" value="False"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
67 <output name="output" file="unionBedGraphs_result1.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
68 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
69 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
70 <param name="tag_select" value="tag"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
71 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
72 <param name="header" value="True"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
73 <param name="zero" value="False"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
74 <output name="output" file="unionBedGraphs_result2.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
75 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
76 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
77 <param name="tag_select" value="tag"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
78 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
79 <param name="zero" value="True"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
80 <param name="genome" value="unionBedGraphs1.len"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
81 <output name="output" file="unionBedGraphs_result3.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
82 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
83 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
84 <param name="tag_select" value="custom"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
85 <repeat name="bedgraphs">
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
86 <param name="input" value="unionBedGraphs1.bg" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
87 <param name="custom_name" value="first" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
88 </repeat>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
89 <repeat name="bedgraphs">
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
90 <param name="input" value="unionBedGraphs2.bg" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
91 <param name="custom_name" value="second" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
92 </repeat>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
93 <repeat name="bedgraphs">
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
94 <param name="input" value="unionBedGraphs3.bg" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
95 <param name="custom_name" value="third" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
96 </repeat>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
97 <param name="zero" value="True"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
98 <param name="genome" value="unionBedGraphs1.len"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
99 <output name="output" file="unionBedGraphs_result4.bg" ftype="bedgraph" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
100 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
101 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
102 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
103 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
104 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
105
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
106 This tool merges multiple BedGraph files, allowing direct and fine-scale coverage comparisons among many samples/files. The BedGraph files need not represent the same intervals; the tool will identify both common and file-specific intervals. In addition, the BedGraph values need not be numeric: one can use any text as the BedGraph value and the tool will compare the values from multiple files.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
107
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
108 .. image:: http://people.virginia.edu/~arq5x/files/bedtools-galaxy/ubg.png
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
109
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
110
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
111 .. class:: warningmark
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
112
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
113 This tool requires that each BedGraph file is reference-sorted (chrom, then start) and contains non-overlapping intervals (within a given file).
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
114
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
115
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
116 ------
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
117
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
118 **Example input**::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
119
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
120 # 1.bedgraph
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
121 chr1 1000 1500 10
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
122 chr1 2000 2100 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
123
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
124 # 2.bedgraph
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
125 chr1 900 1600 60
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
126 chr1 1700 2050 50
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
127
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
128 # 3.bedgraph
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
129 chr1 1980 2070 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
130 chr1 2090 2100 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
131
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
132
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
133 ------
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
134
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
135 **Examples using the Zero Coverage checkbox**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
136
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
137 Output example (*without* checking "Report regions with zero coverage")::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
138
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
139 chr1 900 1000 0 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
140 chr1 1000 1500 10 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
141 chr1 1500 1600 0 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
142 chr1 1700 1980 0 50 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
143 chr1 1980 2000 0 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
144 chr1 2000 2050 20 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
145 chr1 2050 2070 20 0 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
146 chr1 2070 2090 20 0 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
147 chr1 2090 2100 20 0 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
148
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
149
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
150 Output example (*with* checking "Report regions with zero coverage"). The lines marked with (*) are not covered in any input file, but are still reported (The asterisk marking does not appear in the file).::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
151
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
152 chr1 0 900 0 0 0 (*)
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
153 chr1 900 1000 0 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
154 chr1 1000 1500 10 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
155 chr1 1500 1600 0 60 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
156 chr1 1600 1700 0 0 0 (*)
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
157 chr1 1700 1980 0 50 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
158 chr1 1980 2000 0 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
159 chr1 2000 2050 20 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
160 chr1 2050 2070 20 0 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
161 chr1 2070 2090 20 0 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
162 chr1 2090 2100 20 0 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
163 chr1 2100 247249719 0 0 0 (*)
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
164
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
165
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
166 ------
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
167
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
168 **Examples adjusting the "Filler value" for no-covered intervals**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
169
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
170 The default value is '0', but you can use any other value.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
171
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
172 Output example with **filler = N/A**::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
173
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
174 chr1 900 1000 N/A 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
175 chr1 1000 1500 10 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
176 chr1 1500 1600 N/A 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
177 chr1 1600 1700 N/A N/A N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
178 chr1 1700 1980 N/A 50 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
179 chr1 1980 2000 N/A 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
180 chr1 2000 2050 20 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
181 chr1 2050 2070 20 N/A 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
182 chr1 2070 2090 20 N/A N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
183 chr1 2090 2100 20 N/A 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
184
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
185
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
186 ------
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
187
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
188 **Examples using the "sample name" labels**::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
189
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
190 chrom start end WT-1 WT-2 KO-1
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
191 chr1 900 1000 N/A 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
192 chr1 1000 1500 10 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
193 chr1 1500 1600 N/A 60 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
194 chr1 1600 1700 N/A N/A N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
195 chr1 1700 1980 N/A 50 N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
196 chr1 1980 2000 N/A 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
197 chr1 2000 2050 20 50 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
198 chr1 2050 2070 20 N/A 80
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
199 chr1 2070 2090 20 N/A N/A
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
200 chr1 2090 2100 20 N/A 20
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
201
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
202
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
203 ------
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
204
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
205 **Non-numeric values**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
206
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
207 The input BedGraph files can contain any kind of value in the fourth column, not necessarily a numeric value.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
208
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
209 Input Example::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
210
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
211 File-1 File-2
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
212 chr1 200 300 Sample1 chr1 100 240 0.75
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
213 chr1 400 450 Sample1 chr1 250 700 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
214 chr1 530 600 Sample2
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
215
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
216 Output Example::
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
217
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
218 chr1 100 200 0 0.75
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
219 chr1 200 240 Sample1 0.75
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
220 chr1 240 250 Sample1 0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
221 chr1 250 300 Sample1 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
222 chr1 300 400 0 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
223 chr1 400 450 Sample1 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
224 chr1 450 530 0 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
225 chr1 530 600 Sample2 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
226 chr1 600 700 0 0.43
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
227
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
228 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
229 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
230 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
231 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
232 </tool>