Mercurial > repos > bgruening > deeptools
comparison heatmapper.xml @ 10:a68a771625d2 draft
Uploaded
author | bgruening |
---|---|
date | Tue, 29 Oct 2013 17:26:28 -0400 |
parents | 73761f33f198 |
children | e7cc2a55ff94 |
comparison
equal
deleted
inserted
replaced
9:73761f33f198 | 10:a68a771625d2 |
---|---|
1 <tool id="deeptools_heatmapper" name="heatmapper" version="1.0"> | 1 <tool id="deeptools_heatmapper" name="heatmapper" version="1.0"> |
2 <description>creates a heatmap for a score associated to genomic regions</description> | 2 <description>creates a heatmap for a score associated to genomic regions</description> |
3 | 3 <expand macro="requirements"> |
4 <requirements> | 4 <requirement type="package" version="0.1.18">samtools</requirement> |
5 <requirement type="package" version="0.1.18">samtools</requirement> | 5 <requirement type="package" version="1.7.1">numpy</requirement> |
6 <requirement type="package" version="1.7.1">numpy</requirement> | 6 <requirement type="package" version="1.2.1">matplotlib</requirement> |
7 <requirement type="package" version="1.2.1">matplotlib</requirement> | 7 <requirement type="package" version="0.12.0">scipy</requirement> |
8 <requirement type="package" version="0.12.0">scipy</requirement> | 8 </expand> |
9 <requirement type="package" version="0.1">ucsc_tools</requirement> | 9 <macros> |
10 <requirement type="package" version="1.5.1_3e13687c89e951476776b15afb4bbbc3b906f761">deepTools</requirement> | 10 <import>deepTools_macros.xml</import> |
11 <requirement type="package" >deepTools</requirement> | 11 </macros> |
12 </requirements> | |
13 | |
14 <command> | 12 <command> |
15 heatmapper | 13 heatmapper |
16 | 14 |
17 --matrixFile $matrixFile | 15 --matrixFile $matrixFile |
18 #if $output.showOutputSettings == "yes" | 16 #if $output.showOutputSettings == "yes" |
89 | 87 |
90 ; mv $newoutFileName $outFileName | 88 ; mv $newoutFileName $outFileName |
91 </command> | 89 </command> |
92 <inputs> | 90 <inputs> |
93 <param name="matrixFile" format="bgzip" type="data" label="Matrix file from the computeMatrix tool"/> | 91 <param name="matrixFile" format="bgzip" type="data" label="Matrix file from the computeMatrix tool"/> |
94 <conditional name="output" > | 92 |
95 <param name="showOutputSettings" type="select" label="Show advanced output settings" > | 93 <expand macro="graphic_output_settings" /> |
96 <option value="no" selected="true">no</option> | |
97 <option value="yes">yes</option> | |
98 </param> | |
99 <when value="no" /> | |
100 <when value="yes"> | |
101 <param name="outFileFormat" type="select" label="Image file format"> | |
102 <option value="png" selected="true">png</option> | |
103 <option value="pdf">pdf</option> | |
104 <option value="svg">svg</option> | |
105 <option value="eps">eps</option> | |
106 <option value="emf">emf</option> | |
107 </param> | |
108 <param name="saveData" type="boolean" label="Save the data underlying data for the average profile"/> | |
109 <param name="saveMatrix" type="boolean" label="Save the the matrix of values underlying the heatmap"/> | |
110 <param name="saveSortedRegions" type="boolean" label="Save the regions after skipping zeros or min/max threshold values" help="The order of the regions in the file follows the sorting order selected. This is useful, for example, to generate other heatmaps keeping the sorting of the first heatmap."/> | |
111 </when> | |
112 </conditional> | |
113 | 94 |
114 <conditional name="advancedOpt" > | 95 <conditional name="advancedOpt" > |
115 <param name="showAdvancedOpt" type="select" label="Show advanced options" > | 96 <param name="showAdvancedOpt" type="select" label="Show advanced options" > |
116 <option value="no" selected="true">no</option> | 97 <option value="no" selected="true">no</option> |
117 <option value="yes">yes</option> | 98 <option value="yes">yes</option> |
143 <option value="std">std</option> | 124 <option value="std">std</option> |
144 </param> | 125 </param> |
145 | 126 |
146 <param name="missingDataColor" type="text" label="Missing data color" value="black" optional="true" help="If 'Represent missing data as zero' is not set, such cases will be colored in black by default. By using this parameter a different color can be set. A value between 0 and 1 will be used for a gray scale (black is 0). Also color names can be used, see a list here: http://packages.python.org/ete2/reference/reference_svgcolors.html. Alternatively colors can be specified using the #rrggbb notation." /> | 127 <param name="missingDataColor" type="text" label="Missing data color" value="black" optional="true" help="If 'Represent missing data as zero' is not set, such cases will be colored in black by default. By using this parameter a different color can be set. A value between 0 and 1 will be used for a gray scale (black is 0). Also color names can be used, see a list here: http://packages.python.org/ete2/reference/reference_svgcolors.html. Alternatively colors can be specified using the #rrggbb notation." /> |
147 | 128 |
148 <param name="colorMap" type="select" label="Color map to use for the heatmap" help=" Available color map names can be found here: http://www.astro.lsa.umich.edu/~msshin/science/code/matplotlib_cm/"> | 129 <expand macro="colormap" /> |
149 <option value="RdYlBu" selected="true">RdYlBu</option> | |
150 <option value="Accent">Accent</option> | |
151 <option value="Spectral">Spectral</option> | |
152 <option value="Set1">Set1</option> | |
153 <option value="Set2">Set2</option> | |
154 <option value="Set3">Set3</option> | |
155 <option value="Dark2">Dark2</option> | |
156 <option value="Reds">Reds</option> | |
157 <option value="Oranges">Oranges</option> | |
158 <option value="Greens">Greens</option> | |
159 <option value="Blues">Blues</option> | |
160 <option value="Greys">Greys</option> | |
161 <option value="Purples">Purples</option> | |
162 <option value="Paired">Paired</option> | |
163 <option value="Pastel1">Pastel1</option> | |
164 <option value="Pastel2">Pastel2</option> | |
165 <option value="spring">spring</option> | |
166 <option value="summer">summer</option> | |
167 <option value="autumn">autumn</option> | |
168 <option value="winter">winter</option> | |
169 <option value="hot">hot</option> | |
170 <option value="coolwarm">coolwarm</option> | |
171 <option value="cool">cool</option> | |
172 <option value="seismic">seismic</option> | |
173 <option value="terrain">terrain</option> | |
174 <option value="ocean">ocean</option> | |
175 <option value="rainbow">rainbow</option> | |
176 <option value="bone">bone</option> | |
177 <option value="flag">flag</option> | |
178 <option value="prism">prism</option> | |
179 <option value="cubehelix">cubehelix</option> | |
180 <option value="binary">binary</option> | |
181 <option value="pink">pink</option> | |
182 <option value="gray">gray</option> | |
183 <option value="copper">copper</option> | |
184 <option value="BrBG">BrBG</option> | |
185 <option value="BuGn">BuGn</option> | |
186 <option value="BuPu">BuPu</option> | |
187 <option value="GnBu">GnBu</option> | |
188 <option value="OrRd">OrRd</option> | |
189 <option value="PiYG">PiYG</option> | |
190 <option value="PRGn">PRGn</option> | |
191 <option value="PuOr">PuOr</option> | |
192 <option value="PuRd">PuRd</option> | |
193 <option value="PuBu">PuBu</option> | |
194 <option value="RdBu">RdBu</option> | |
195 <option value="RdGy">RdGy</option> | |
196 <option value="RdPu">RdPu</option> | |
197 <option value="YlGn">YlGn</option> | |
198 <option value="PuBuGn">PuBuGn</option> | |
199 <option value="RdYlGn">RdYlGn</option> | |
200 <option value="YlGnBu">YlGnBu</option> | |
201 <option value="YlOrBr">YlOrBr</option> | |
202 <option value="YlOrRd">YlOrRd</option> | |
203 <option value="gist_gray">gist_gray</option> | |
204 <option value="gist_stern">gist_stern</option> | |
205 <option value="gist_earth">gist_earth</option> | |
206 <option value="gist_yarg">gist_yarg</option> | |
207 <option value="gist_ncar">gist_ncar</option> | |
208 <option value="gist_rainbow">gist_rainbow</option> | |
209 <option value="gist_heat">gist_heat</option> | |
210 <option value="gnuplot">gnuplot</option> | |
211 <option value="gnuplot2">gnuplot2</option> | |
212 <option value="CMRmap">CMRmap</option> | |
213 <option value="bwr">bwr</option> | |
214 <option value="hsv">hsv</option> | |
215 <option value="brg">brg</option> | |
216 <option value="jet">jet</option> | |
217 <option value="afmhot">afmhot</option> | |
218 <option value="Accent_r">Accent reversed</option> | |
219 <option value="Spectral_r">Spectral reversed</option> | |
220 <option value="Set1_r">Set1 reversed</option> | |
221 <option value="Set2_r">Set2 reversed</option> | |
222 <option value="Set3_r">Set3 reversed</option> | |
223 <option value="Dark2_r">Dark2 reversed</option> | |
224 <option value="Reds_r">Reds reversed</option> | |
225 <option value="Oranges_r">Oranges reversed</option> | |
226 <option value="Greens_r">Greens reversed</option> | |
227 <option value="Blues_r">Blues reversed</option> | |
228 <option value="Greys_r">Greys reversed</option> | |
229 <option value="Purples_r">Purples reversed</option> | |
230 <option value="Paired_r">Paired reversed</option> | |
231 <option value="Pastel1_r">Pastel1 reversed</option> | |
232 <option value="Pastel2_r">Pastel2 reversed</option> | |
233 <option value="spring_r">spring reversed</option> | |
234 <option value="summer_r">summer reversed</option> | |
235 <option value="autumn_r">autumn reversed</option> | |
236 <option value="winter_r">winter reversed</option> | |
237 <option value="hot_r">hot reversed</option> | |
238 <option value="coolwarm_r">coolwarm reversed</option> | |
239 <option value="cool_r">cool reversed</option> | |
240 <option value="seismic_r">seismic reversed</option> | |
241 <option value="terrain_r">terrain reversed</option> | |
242 <option value="ocean_r">ocean reversed</option> | |
243 <option value="rainbow_r">rainbow reversed</option> | |
244 <option value="bone_r">bone reversed</option> | |
245 <option value="flag_r">flag reversed</option> | |
246 <option value="prism_r">prism reversed</option> | |
247 <option value="cubehelix_r">cubehelix reversed</option> | |
248 <option value="binary_r">binary reversed</option> | |
249 <option value="pink_r">pink reversed</option> | |
250 <option value="gray_r">gray reversed</option> | |
251 <option value="copper_r">copper reversed</option> | |
252 <option value="BrBG_r">BrBG reversed</option> | |
253 <option value="BuGn_r">BuGn reversed</option> | |
254 <option value="BuPu_r">BuPu reversed</option> | |
255 <option value="GnBu_r">GnBu reversed</option> | |
256 <option value="OrRd_r">OrRd reversed</option> | |
257 <option value="PiYG_r">PiYG reversed</option> | |
258 <option value="PRGn_r">PRGn reversed</option> | |
259 <option value="PuOr_r">PuOr reversed</option> | |
260 <option value="PuRd_r">PuRd reversed</option> | |
261 <option value="PuBu_r">PuBu reversed</option> | |
262 <option value="RdBu_r">RdBu reversed</option> | |
263 <option value="RdGy_r">RdGy reversed</option> | |
264 <option value="RdPu_r">RdPu reversed</option> | |
265 <option value="YlGn_r">YlGn reversed</option> | |
266 <option value="PuBuGn_r">PuBuGn reversed</option> | |
267 <option value="RdYlBu_r">RdYlBu reversed</option> | |
268 <option value="RdYlGn_r">RdYlGn reversed</option> | |
269 <option value="YlGnBu_r">YlGnBu reversed</option> | |
270 <option value="YlOrBr_r">YlOrBr reversed</option> | |
271 <option value="YlOrRd_r">YlOrRd reversed</option> | |
272 <option value="gist_gray_r">gist_gray reversed</option> | |
273 <option value="gist_stern_r">gist_stern reversed</option> | |
274 <option value="gist_earth_r">gist_earth reversed</option> | |
275 <option value="gist_yarg_r">gist_yarg reversed</option> | |
276 <option value="gist_ncar_r">gist_ncar reversed</option> | |
277 <option value="gist_rainbow_r">gist_rainbow reversed</option> | |
278 <option value="gist_heat_r">gist_heat reversed</option> | |
279 <option value="gnuplot_r">gnuplot reversed</option> | |
280 <option value="gnuplot2_r">gnuplot2 reversed</option> | |
281 <option value="CMRmap_r">CMRmap reversed</option> | |
282 <option value="bwr_r">bwr reversed</option> | |
283 <option value="hsv_r">hsv reversed</option> | |
284 <option value="brg_r">brg reversed</option> | |
285 <option value="jet_r">jet reversed</option> | |
286 <option value="afmhot_r">afmhot reversed</option> | |
287 </param> | |
288 | 130 |
289 <param name="zMin" type="float" value="" size="3" label="Minimum value for the heatmap intensities. Leave empty for automatic values" optional="true"/> | 131 <param name="zMin" type="float" value="" size="3" label="Minimum value for the heatmap intensities. Leave empty for automatic values" optional="true"/> |
290 <param name="zMax" type="float" value="" size="3" label="Maximum value for the heatmap intensities. Leave empty for automatic values" optional="true"/> | 132 <param name="zMax" type="float" value="" size="3" label="Maximum value for the heatmap intensities. Leave empty for automatic values" optional="true"/> |
291 <param name="yMin" type="float" value="" size="3" label="Minimum value for the Y-axis of the summary plot. Leave empty for automatic values" optional="true"/> | 133 <param name="yMin" type="float" value="" size="3" label="Minimum value for the Y-axis of the summary plot. Leave empty for automatic values" optional="true"/> |
292 <param name="yMax" type="float" value="" size="3" label="Maximum value for Y-axis of the summary plot. Leave empty for automatic values" optional="true"/> | 134 <param name="yMax" type="float" value="" size="3" label="Maximum value for Y-axis of the summary plot. Leave empty for automatic values" optional="true"/> |
346 </tests> | 188 </tests> |
347 <help> | 189 <help> |
348 | 190 |
349 **What it does** | 191 **What it does** |
350 | 192 |
351 The heatmapper visualizes scores associated with genomic regions, for example ChIP enrichment values around the TSS of genes. Those values can be visualized individually along each of the regions provided by the user in INTERVAL or BED format. In addition to the heatmap, an average profile plot is plotted on top of the heatmap (can be turned off by the user; it can also be generated separately by the tool profiler). We implemented vast optional parameters and we encourage you to play around with the min/max values displayed in the heatmap as well as with the different coloring options. If you would like to plot heatmaps for different groups of genomic regions individually, e.g. one plot per chromosome, simply supply each group as an individual BED file. | 193 The heatmapper visualizes scores associated with genomic regions, for example ChIP enrichment values around the TSS of genes. |
194 Those values can be visualized individually along each of the regions provided by the user in INTERVAL or BED format. | |
195 In addition to the heatmap, an average profile plot is plotted on top of the heatmap (can be turned off by the user; | |
196 it can also be generated separately by the tool profiler). | |
197 We implemented vast optional parameters and we encourage you to play around with the min/max values displayed in the heatmap as well as | |
198 with the different coloring options. If you would like to plot heatmaps for different groups of genomic regions individually, | |
199 e.g. one plot per chromosome, simply supply each group as an individual BED file. | |
200 | |
201 | |
202 .. image:: $PATH_TO_IMAGES/visual_hm_DmelPolII.png | |
203 :alt: Heatmap of RNA Polymerase II ChIP-seq | |
204 | |
352 | 205 |
353 ----- | 206 ----- |
354 | 207 |
355 .. class:: infomark | 208 .. class:: infomark |
356 | 209 |
357 If you would like to give us feedback or you run into any trouble, please send an email to deeptools@googlegroups.com | 210 @REFERENCES@ |
358 | 211 |
359 This tool is developed by the `Bioinformatics and Deep-Sequencing Unit`_ at the `Max Planck Institute for Immunobiology and Epigenetics`_. | 212 </help> |
360 | |
361 | |
362 .. _Bioinformatics and Deep-Sequencing Unit: http://www3.ie-freiburg.mpg.de/facilities/research-facilities/bioinformatics-and-deep-sequencing-unit/ | |
363 .. _Max Planck Institute for Immunobiology and Epigenetics: http://www3.ie-freiburg.mpg.de | |
364 | |
365 </help> | |
366 </tool> | 213 </tool> |