comparison profiler.xml @ 32:3f2096404113 draft

Uploaded
author bgruening
date Tue, 28 Jan 2014 16:28:52 -0500
parents 46009b7883ba
children fc3830717e24
comparison
equal deleted inserted replaced
31:46009b7883ba 32:3f2096404113
45 #if str($advancedOpt.plotTitle.value) != "None": 45 #if str($advancedOpt.plotTitle.value) != "None":
46 --plotTitle '$advancedOpt.plotTitle' 46 --plotTitle '$advancedOpt.plotTitle'
47 #end if 47 #end if
48 48
49 #if str($advancedOpt.colors.value) != "None": 49 #if str($advancedOpt.colors.value) != "None":
50 --colors ' '.join( ['$color' for $color in $advancedOpt.colors.split()] ) 50 --colors #echo ' '.join( ["'%s'" % $color for $color in $advancedOpt.colors.split()] )#
51 #end if 51 #end if
52 52
53 $advancedOpt.onePlotPerGroup 53 $advancedOpt.onePlotPerGroup
54 54
55 #if $advancedOpt.yMin: 55 #if $advancedOpt.yMin:
111 <option value="se">add standard error</option> 111 <option value="se">add standard error</option>
112 <option value="overlapped_lines">overlapped lines</option> 112 <option value="overlapped_lines">overlapped lines</option>
113 </param> 113 </param>
114 <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;."/> 114 <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;."/>
115 <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." /> 115 <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." />
116 <param name="colors" type="text" value="" size="40" label="List of colors to use for the plotted lines" help="Color names and html hex strings (e.g. #eeff22) are accepted. The color names should be given separated by spaces. (--colors red blue green)" > 116 <param name="colors" type="text" value="" size="40" label="List of colors to use for the plotted lines" help="Color names and html hex strings (e.g. #eeff22) are accepted. The color names should be given separated by spaces. (--colors red blue green)">
117 <sanitizer invalid_char=","> 117 <validator type="expression" message="Only numbers, digits, '#' and spaces are allowed.">all(c in ' #abcdefghijklmnopqrstuvwxyz0123456789' for c in value)</validator>
118 <valid initial="string.letters,string.digits">
119 <add value=" " />
120 <add value="#" />
121 </valid>
122 </sanitizer>
123 </param> 118 </param>
124
125 119
126 <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."/> 120 <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."/>
127 <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"/> 121 <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"/>
128 <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"/> 122 <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"/>
129 <param name="xAxisLabel" type="text" value="gene distance (bp)" size="50" label="Description for the x-axis label" /> 123 <param name="xAxisLabel" type="text" value="gene distance (bp)" size="50" label="Description for the x-axis label" />