comparison deepTools_macros.xml @ 6:e6dbb616211e draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 54a10cf268ca9a5399f13458a1b218be7891bd41
author bgruening
date Wed, 23 Dec 2015 04:01:04 -0500
parents f30699e4e902
children a6d65190c7e5
comparison
equal deleted inserted replaced
5:f30699e4e902 6:e6dbb616211e
38 <expand macro="plotTitle" /> 38 <expand macro="plotTitle" />
39 <expand macro="plotNumbers" /> 39 <expand macro="plotNumbers" />
40 </xml> 40 </xml>
41 41
42 <token name="@HEATMAP_OPTIONS@"> 42 <token name="@HEATMAP_OPTIONS@">
43 #if str($plotting_type.zMin) != "": 43 #if $plotting_type.zMin:
44 --zMin $plotting_type.zMin 44 --zMin $plotting_type.zMin
45 #end if 45 #end if
46 #if str($plotting_type.zMax) != "": 46 #if $plotting_type.zMax:
47 --zMax $plotting_type.zMax 47 --zMax $plotting_type.zMax
48 #end if 48 #end if
49 --colorMap '$plotting_type.colorMap' 49 --colorMap '$plotting_type.colorMap'
50 $plotting_type.plotNumbers 50 $plotting_type.plotNumbers
51 --plotTitle '$plotting_type.plotTitle' 51 --plotTitle '$plotting_type.plotTitle'
105 <option value="none">No clustering</option> 105 <option value="none">No clustering</option>
106 <option value="kmeans">Kmeans clustering</option> 106 <option value="kmeans">Kmeans clustering</option>
107 </param> 107 </param>
108 <when value="kmeans"> 108 <when value="kmeans">
109 <param name="k_kmeans" type="integer" value="0" label="Number of clusters to compute" 109 <param name="k_kmeans" type="integer" value="0" label="Number of clusters to compute"
110 help="When this option is set, then the matrix is split into clusters using the kmeans algorithm. 110 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)."/>
111 Only works for data that is not grouped, otherwise only the first group will be clustered.
112 If more specific clustering methods are required it is advisable to save the underlying matrix and
113 run the clustering using other software. The plotting of the clustering may fail (Error: Segmentation fault)
114 if a cluster has very few members compared to the total number or regions. (default: 0 [do not cluster])."/>
115 </when> 111 </when>
116 <when value="none" /> 112 <when value="none" />
117 </conditional> 113 </conditional>
118 </when> 114 </when>
119 <when value="yes" /> 115 <when value="yes" />
410 <option value="yes">yes</option> 406 <option value="yes">yes</option>
411 </param> 407 </param>
412 <when value="no" /> 408 <when value="no" />
413 <when value="yes"> 409 <when value="yes">
414 <yield /> 410 <yield />
411 <param name="saveData" type="boolean" label="Save the data underlying the average profile"/>
415 <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."/> 412 <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."/>
416 </when> 413 </when>
417 </conditional> 414 </conditional>
418 </xml> 415 </xml>
419 416
457 </filter> 454 </filter>
458 </data> 455 </data>
459 </xml> 456 </xml>
460 457
461 <xml name="output_graphic_outputs"> 458 <xml name="output_graphic_outputs">
459 <data format="tabular" name="outFileNameData" label="${tool.name} on ${on_string}: averages per matrix column">
460 <filter>
461 ((
462 output['showOutputSettings'] == 'yes' and
463 output['saveData'] is True
464 ))
465 </filter>
466 </data>
462 <data format="bed" name="outFileSortedRegions" label="${tool.name} on ${on_string}: sorted/filtered regions"> 467 <data format="bed" name="outFileSortedRegions" label="${tool.name} on ${on_string}: sorted/filtered regions">
463 <filter> 468 <filter>
464 (( 469 ((
465 output['showOutputSettings'] == 'yes' and 470 output['showOutputSettings'] == 'yes' and
466 output['saveSortedRegions'] is True 471 output['saveSortedRegions'] is True