comparison heatmapper.xml @ 12:aea72b24dea0 draft

Uploaded
author bgruening
date Sat, 14 Dec 2013 08:58:41 -0500
parents baf4283e2d7f
children b4c5dd45778a
comparison
equal deleted inserted replaced
11:baf4283e2d7f 12:aea72b24dea0
77 #if str($advancedOpt.plotTitle.value) != "None": 77 #if str($advancedOpt.plotTitle.value) != "None":
78 --plotTitle '$advancedOpt.plotTitle' 78 --plotTitle '$advancedOpt.plotTitle'
79 #end if 79 #end if
80 80
81 $advancedOpt.onePlotPerGroup 81 $advancedOpt.onePlotPerGroup
82
83 #if $advancedOpt.clustering.clustering_options == 'kmeans':
84 #if int($advancedOpt.clustering.k_kmeans) > 0:
85 --kmeans $advancedOpt.clustering.k_kmeans
86 #end if
87 #end if
88
82 #end if 89 #end if
83 </command> 90 </command>
84 <inputs> 91 <inputs>
85 <param name="matrixFile" format="bgzip" type="data" label="Matrix file from the computeMatrix tool"/> 92 <param name="matrixFile" format="bgzip" type="data" label="Matrix file from the computeMatrix tool"/>
86 93
149 156
150 <param name="referencePointLabel" type="text" value="TSS" size="10" label="Reference point label" help ="[only for scale-regions mode] Label shown in the plot for the reference-point. Default is the same as the reference point selected (e.g. TSS), but could be anything, e.g. &quot;peak start&quot; etc." /> 157 <param name="referencePointLabel" type="text" value="TSS" size="10" label="Reference point label" help ="[only for scale-regions mode] Label shown in the plot for the reference-point. Default is the same as the reference point selected (e.g. TSS), but could be anything, e.g. &quot;peak start&quot; etc." />
151 <param name="regionsLabel" type="text" value="genes" size="30" label="Labels for the regions plotted in the heatmap" help="If more than one region is being plotted a list of labels separated by comma and limited by quotes, is required. For example, &quot;label1, label2&quot;."/> 158 <param name="regionsLabel" type="text" value="genes" size="30" label="Labels for the regions plotted in the heatmap" help="If more than one region is being plotted a list of labels separated by comma and limited by quotes, is required. For example, &quot;label1, label2&quot;."/>
152 <param name="plotTitle" type="text" value="" size="30" label="Title of the plot" help="Title of the plot, to be printed on top of the generated image. Leave blank for no title." /> 159 <param name="plotTitle" type="text" value="" size="30" label="Title of the plot" help="Title of the plot, to be printed on top of the generated image. Leave blank for no title." />
153 <param name="onePlotPerGroup" type="boolean" truevalue="--onePlotPerGroup" falsevalue="" label="Do one plot per group" help="When the region file contains groups separated by &quot;#&quot;, the default is to plot the averages for the distinct plots in one plot. If this option is set, each group will get its own plot, stacked on top of each other."/> 160 <param name="onePlotPerGroup" type="boolean" truevalue="--onePlotPerGroup" falsevalue="" label="Do one plot per group" help="When the region file contains groups separated by &quot;#&quot;, the default is to plot the averages for the distinct plots in one plot. If this option is set, each group will get its own plot, stacked on top of each other."/>
161
162 <conditional name="clustering">
163 <param name="clustering_options" type="select" label="Clustering algorithm">
164 <option value="none">No clustering</option>
165 <option value="kmeans">Kmeans clustering</option>
166 </param>
167 <when value="kmeans">
168 <param name="k_kmeans" type="integer" value="0" label="Number of clusters to compute"
169 help="When this option is set, then the matrix is split into clusters using the kmeans algorithm. Only works for data that is not grouped, otherwise only the first group will be clustered. If more specific clustering methods are required it is advisable to save the underlying matrix and run the clustering using other software. The plotting of the clustering may fail (Error: Segmentation fault) if a cluster has very few members compared to the total number or regions. (default: None)."/>
170 </when>
171 <when value="none" />
172 </conditional>
173
174
154 </when> 175 </when>
155 </conditional> 176 </conditional>
156 </inputs> 177 </inputs>
157 <outputs> 178 <outputs>
158 <expand macro="output_graphic_outputs"> 179 <expand macro="output_graphic_outputs">