Mercurial > repos > bgruening > deeptools
diff profiler.xml @ 30:2e5b92e7f3cb draft
Uploaded
| author | bgruening |
|---|---|
| date | Tue, 28 Jan 2014 13:54:34 -0500 |
| parents | f996339050ac |
| children | 46009b7883ba |
line wrap: on
line diff
--- a/profiler.xml Sat Dec 21 17:30:26 2013 -0500 +++ b/profiler.xml Tue Jan 28 13:54:34 2014 -0500 @@ -46,6 +46,10 @@ --plotTitle '$advancedOpt.plotTitle' #end if + #if str($advancedOpt.colors.value) != "None": + --colors '$advancedOpt.colors' + #end if + $advancedOpt.onePlotPerGroup #if $advancedOpt.yMin: @@ -101,14 +105,24 @@ label="Plot width" help="Width in cm. The default value is 8 centimeters. The minimum value is 1 cm." /> <param name="plotType" type="select" label="Plot type" - help="For the summary plot (profile) only. The "lines" option will plot the profile line based on the average type selected. The "fill" option fills the region between zero and the profile curve. The fill in color is semi transparent to distinguish different profiles. The "std" option colors the region between the profile and the standard deviation of the data. As in the case of fill, a semi-transparent color is used. The option "overlapped_lines" plots each region values, one on top of the other; this option only works if "one plot per proup" is set."> + help="For the summary plot (profile) only. The "lines" option will plot the profile line based on the average type selected. The "fill" option fills the region between zero and the profile curve. The fill in color is semi transparent to distinguish different profiles. The "add standard error" option colors the region between the profile and the standard error of the data. As in the case of fill, a semi-transparent color is used. The option "overlapped_lines" plots each region values, one on top of the other; this option only works if "one plot per proup" is set."> <option value="lines" selected="true">lines</option> <option value="fill">fill</option> - <option value="std">std</option> + <option value="se">add standard error</option> <option value="overlapped_lines">overlapped lines</option> </param> <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, "label1, label2"."/> <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." /> + <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)" > + <sanitizer invalid_char=","> + <valid initial="string.letters,string.digits"> + <add value=" " /> + <add value="#" /> + </valid> + </sanitizer> + </param> + + <param name="onePlotPerGroup" type="boolean" truevalue="--onePlotPerGroup" falsevalue="" label="Do one plot per group" help="When the region file contains groups separated by "#", 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."/> <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"/> <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"/>
