annotate profiler.xml @ 30:5231f398d784 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
author bgruening
date Tue, 20 Oct 2015 14:43:12 -0400
parents 3a2aab18a217
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
f7712a057440 new bugfix release
bgruening
parents: 27
diff changeset
1 <tool id="deeptools_profiler" name="profiler" version="@WRAPPER_VERSION@.0">
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
2 <description>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
3 creates a profile plot for a score associated to genomic regions
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
4 </description>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
5 <macros>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
6 <token name="@BINARY@">profiler</token>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
7 <import>deepTools_macros.xml</import>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
8 </macros>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
9 <expand macro="requirements" />
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
10 <command>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
11 <![CDATA[
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
12 profiler
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
13
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
14 --matrixFile $matrixFile
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
15 --outFileName $outFileName
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
16
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
17 #if $output.showOutputSettings == "yes"
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
18 --plotFileFormat $output.outFileFormat
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
19
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
20 #if $output.saveData:
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
21 --outFileNameData '$outFileNameData'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
22 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
23
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
24 #if $output.saveSortedRegions:
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
25 --outFileSortedRegions '$outFileSortedRegions'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
26 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
27 #else
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
28 --plotFileFormat 'png'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
29 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
30
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
31 #if $scaleRegions.showScaleRegionsOpt == "yes":
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
32 --startLabel '$scaleRegions.startLabel'
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
33 --endLabel '$scaleRegions.endLabel'
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
34 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
35
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
36 #if $advancedOpt.showAdvancedOpt == "yes":
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
37 #if $advancedOpt.averageType:
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
38 --averageType '$advancedOpt.averageType'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
39 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
40 --plotHeight $advancedOpt.plotHeight
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
41 --plotWidth $advancedOpt.plotWidth
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
42 --plotType $advancedOpt.plotType
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
43
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
44 --regionsLabel '$advancedOpt.regionsLabel'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
45
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
46 #if $advancedOpt.plotTitle and str($advancedOpt.plotTitle).strip() != "":
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
47 --plotTitle '$advancedOpt.plotTitle'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
48 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
49
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
50 #if str($advancedOpt.colors).strip() != "":
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
51 --colors #echo ' '.join( ["'%s'" % $color for $color in $advancedOpt.colors.split()] )#
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
52 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
53
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
54 $advancedOpt.onePlotPerGroup
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
55
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
56 #if $advancedOpt.yMin:
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
57 --yMin $advancedOpt.yMin
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
58 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
59 #if $advancedOpt.yMax:
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
60 --yMax $advancedOpt.yMax
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
61 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
62
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
63 --xAxisLabel '$advancedOpt.xAxisLabel'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
64 #if str($advancedOpt.yAxisLabel.value) != "None":
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
65 --yAxisLabel '$advancedOpt.yAxisLabel'
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
66 #end if
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
67
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
68 @KMEANS_CLUSTERING@
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
69
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
70 #end if
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
71 ]]>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
72 </command>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
73 <inputs>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
74 <param name="matrixFile" format="deeptools_compute_matrix_archive" type="data" label="Matrix file from the computeMatrix tool"/>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
75 <conditional name="scaleRegions">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
76 <param name="showScaleRegionsOpt" type="select" label="The input matrix was computed in scale-regions mode">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
77 <option value="no" selected="true">no</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
78 <option value="yes">yes</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
79 </param>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
80 <when value="no" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
81 <when value="yes">
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
82 <param name="startLabel" type="text" value="TSS" size="10"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
83 label="Label for the region start"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
84 help ="[only for scale-regions mode] Label shown in the plot
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
85 for the start of the region. Default is TSS (transcription start site),
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
86 but could be changed to anything, e.g. &quot;peak start&quot;." />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
87 <param name="endLabel" type="text" value="TES" size="10"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
88 label="Label for the region end"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
89 help="[only for scale-regions mode] Label shown in the plot for the region end. Default is TES (transcription end site)."/>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
90 </when>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
91 </conditional>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
92
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
93 <expand macro="input_graphic_output_settings">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
94 <expand macro="input_image_file_format" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
95 </expand>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
96
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
97 <conditional name="advancedOpt">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
98 <param name="showAdvancedOpt" type="select" label="Show advanced options" >
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
99 <option value="no" selected="true">no</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
100 <option value="yes">yes</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
101 </param>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
102 <when value="no" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
103 <when value="yes">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
104 <param name="averageType" type="select" label="Define the type of statistic that should be used for the profile.">
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
105 <option value="mean" selected="true">mean</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
106 <option value="median">median</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
107 <option value="min">min</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
108 <option value="max">max</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
109 <option value="sum">sum</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
110 <option value="std">std</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
111 </param>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
112 <param name="plotHeight" type="integer" value="5" min="3"
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
113 label="Plot height"
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
114 help="Height in cm. The default for the plot height is 5 centimeters. The minimum value is 3 cm." />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
115 <param name="plotWidth" type="integer" value="8" min="1"
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
116 label="Plot width"
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
117 help="Width in cm. The default value is 8 centimeters. The minimum value is 1 cm." />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
118 <param name="plotType" type="select" label="Plot type"
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
119 help="For the summary plot (profile) only. The &quot;lines&quot; option will
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
120 plot the profile line based on the average type selected. The &quot;fill&quot;
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
121 option fills the region between zero and the profile curve. The fill in color is
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
122 semi transparent to distinguish different profiles. The &quot;add standard error&quot;
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
123 option colors the region between the profile and the standard error of the data.
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
124 As in the case of fill, a semi-transparent color is used.
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
125 The option &quot;overlapped_lines&quot; plots each region values, one on top of
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
126 the other; this option only works if &quot;one plot per proup&quot; is set.">
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
127 <option value="lines" selected="true">lines</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
128 <option value="fill">fill</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
129 <option value="se">add standard error</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
130 <option value="overlapped_lines">overlapped lines</option>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
131 </param>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
132 <param name="regionsLabel" type="text" value="genes" size="30"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
133 label="Labels for the regions plotted in the heatmap"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
134 help="If more than one region is being plotted a list of labels separated
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
135 by comma and limited by quotes, is required. For example, &quot;label1, label2&quot;."/>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
136
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
137 <expand macro="plotTitle" />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
138 <param name="colors" type="text" value="" size="40"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
139 label="List of colors to use for the plotted lines"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
140 help="Color names and html hex strings (e.g. #eeff22) are accepted.
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
141 The color names should be given separated by spaces. (--colors red blue green)">
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
142 <validator type="expression"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
143 message="Only numbers, digits, '#' and spaces are allowed.">all(c in ' #abcdefghijklmnopqrstuvwxyz0123456789' for c in value)</validator>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
144 </param>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
145
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
146 <param name="onePlotPerGroup" type="boolean" truevalue="--onePlotPerGroup" falsevalue=""
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
147 label="Do one plot per group"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
148 help="When the region file contains groups separated by &quot;#&quot;, the default is
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
149 to plot the averages for the distinct plots in one plot. If this option is set, each group
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
150 will get its own plot, stacked on top of each other."/>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
151 <param name="yMin" type="float" value="" size="3" optional="true"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
152 label="Minimum value for the Y-axis of the summary plot. Leave empty for automatic values"/>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
153 <param name="yMax" type="float" value="" size="3" optional="true"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
154 label="Maximum value for Y-axis of the summary plot. Leave empty for automatic values" />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
155 <param name="xAxisLabel" type="text" value="gene distance (bp)" size="50"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
156 label="Description for the x-axis label" />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
157 <param name="yAxisLabel" type="text" value="" size="50"
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
158 label="Description for the y-axis label for the top panel" />
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
159
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
160 <expand macro="kmeans_clustering" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
161
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
162 </when>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
163 </conditional>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
164 </inputs>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
165 <outputs>
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
166 <expand macro="output_image_file_format" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
167 <expand macro="output_graphic_outputs" />
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
168 </outputs>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
169 <tests>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
170 <test>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
171 <param name="matrixFile" value="computeMatrix_result1.gz" ftype="deeptools_compute_matrix_archive" />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
172 <output name="outFileName" file="profiler_result1.png" ftype="png" compare="sim_size" delta="100" />
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
173 </test>
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
174 </tests>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
175 <help>
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
176 <![CDATA[
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
177
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
178 **What it does**
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
179
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
180 This tool plots the average enrichments over all genomic
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
181 regions supplied to computeMarix. It requires that computeMatrix was successfully run.
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
182 It is a very useful complement to the heatmapper, especially in cases when you want to
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
183 compare the scores for many different groups. Like heatmapper, profiler does not change the
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
184 values that were compute by computeMatrix, but you can choose between
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
185 many different ways to color and display the plots.
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
186
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
187
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
188 .. image:: $PATH_TO_IMAGES/visual_profiler_DmelPolII.png
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
189 :alt: Meta-gene profile of Rna Polymerase II
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
190
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
191
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
192 You can find more details on the profiler wiki page: https://github.com/fidelram/deepTools/wiki/Visualizations#wiki-profiler
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
193
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
194
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
195 -----
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
196
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
197 @REFERENCES@
30
5231f398d784 planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 3bc1d1c6f4e28ac7ff8df79fe4e3f00a195938e6-dirty
bgruening
parents: 29
diff changeset
198 ]]>
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
199 </help>
29
3a2aab18a217 Uploaded
bgruening
parents: 28
diff changeset
200 <expand macro="citations" />
26
2ad3b027dfcd Uploaded
bgruening
parents:
diff changeset
201 </tool>