comparison deepTools_macros.xml @ 7:a6d65190c7e5 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit ae00542731230245927953207977833a0f020b69
author bgruening
date Wed, 23 Dec 2015 07:35:12 -0500
parents e6dbb616211e
children 4339a4d28e97
comparison
equal deleted inserted replaced
6:e6dbb616211e 7:a6d65190c7e5
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 $plotting_type.zMin: 43 #if str($plotting_type.zMin) != "":
44 --zMin $plotting_type.zMin 44 --zMin $plotting_type.zMin
45 #end if 45 #end if
46 #if $plotting_type.zMax: 46 #if str($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. 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)."/> 110 help="When this option is set, then the matrix is split into clusters using the kmeans algorithm.
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])."/>
111 </when> 115 </when>
112 <when value="none" /> 116 <when value="none" />
113 </conditional> 117 </conditional>
114 </when> 118 </when>
115 <when value="yes" /> 119 <when value="yes" />
406 <option value="yes">yes</option> 410 <option value="yes">yes</option>
407 </param> 411 </param>
408 <when value="no" /> 412 <when value="no" />
409 <when value="yes"> 413 <when value="yes">
410 <yield /> 414 <yield />
411 <param name="saveData" type="boolean" label="Save the data underlying the average profile"/>
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."/> 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."/>
413 </when> 416 </when>
414 </conditional> 417 </conditional>
415 </xml> 418 </xml>
416 419
454 </filter> 457 </filter>
455 </data> 458 </data>
456 </xml> 459 </xml>
457 460
458 <xml name="output_graphic_outputs"> 461 <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>
467 <data format="bed" name="outFileSortedRegions" label="${tool.name} on ${on_string}: sorted/filtered regions"> 462 <data format="bed" name="outFileSortedRegions" label="${tool.name} on ${on_string}: sorted/filtered regions">
468 <filter> 463 <filter>
469 (( 464 ((
470 output['showOutputSettings'] == 'yes' and 465 output['showOutputSettings'] == 'yes' and
471 output['saveSortedRegions'] is True 466 output['saveSortedRegions'] is True