annotate unionBedGraphs.xml @ 0:b8348686a0b9 draft

Imported from capsule None
author iuc
date Tue, 04 Nov 2014 01:45:04 -0500
parents
children 82aac94b06c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
1 <tool id="bedtools_mergebedgraph" name="Merge BedGraph files" version="@WRAPPER_VERSION@.0">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
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" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
8 <command>unionBedGraphs
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
9 $header
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 -filler '$filler'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 #if $zero.value == True:
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -empty
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 -g ${chromInfo}
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 -i '$input1'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 '$input2'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 #for $q in $bedgraphs
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 '${q.input}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 #end for
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 -names
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 #if $name1.choice == "tag":
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 '${input1.name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 #else
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 '${name1.custom_name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29 #if $name2.choice == "tag":
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 '${input2.name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31 #else
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32 '${name2.custom_name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 #for $q in $bedgraphs
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36 #if $q.name.choice == "tag":
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 '${q.input.name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38 #else
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 '${q.input.custom_name}'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
40 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41 #end for
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42 &gt; '$output'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
45 <!-- Make it easy for the user, first two input files are always shown -->
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
46 <!-- INPUT 1 -->
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
47 <param name="input1" format="bedgraph" type="data" label="First BedGraph file" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
48
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
49 <conditional name="name1">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
50 <param name="choice" type="select" label="Sample name">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
51 <option value="tag" selected="true">Use input's tag</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
52 <option value="custom">Enter custom table name</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
53 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
54 <when value="tag">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
55 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
56 <when value="custom">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
57 <param name="custom_name" type="text" area="false" label="Custom sample name"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
58 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
59 </conditional>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
60
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
61 <!-- INPUT 2 -->
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
62 <param name="input2" format="bedgraph" type="data" label="Second BedGraph file" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
63
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
64 <conditional name="name2">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
65 <param name="choice" type="select" label="Sample name">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
66 <option value="tag" selected="true">Use input's tag</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
67 <option value="custom">Enter custom table name</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
68 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
69 <when value="tag">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
70 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
71 <when value="custom">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
72 <param name="custom_name" type="text" area="false" label="Custom sample name"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
73 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
74 </conditional>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
75
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
76 <!-- Additional files, if the user needs more -->
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
77 <repeat name="bedgraphs" title="Add'l BedGraph files" >
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
78 <param name="input" format="bedgraph" type="data" label="BedGraph file" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
79 <conditional name="name">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
80 <param name="choice" type="select" label="Sample name">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
81 <option value="tag" selected="true">Use input's tag</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
82 <option value="custom">Enter custom table name</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
83 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
84 <when value="tag">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
85 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
86 <when value="custom">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
87 <param name="custom_name" type="text" area="false" label="Custom sample name"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
88 </when>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
89 </conditional>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
90 </repeat>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
91
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
92 <param name="header" type="boolean" checked="true" truevalue="-header" falsevalue="" label="Print header line" help="The first line will include the name of each sample." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
93
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
94 <param name="zero" type="boolean" checked="true" label="Report regions with zero coverage" help="If set, regions without any coverage will also be reported. Requires a valid organism key for all input datasets" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
95
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
96 <param name="filler" type="text" value="0" label="Text to use for no-coverage value" help="Can be 0.0, N/A, - or any other value." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
97 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
98
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
99 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
100 <data format="tabular" name="output" metadata_source="input1" label="Merged BedGraphs of ${input1.name}, ${input2.name} and so on." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
101 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
102 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
103
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@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
229
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>