diff heatmap2.xml @ 4:ca7cb0eaad62 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2 commit e7b5919a8e06595b23e8fc31b975fc508f5081b3
author iuc
date Mon, 11 Feb 2019 17:32:28 -0500
parents 4955e9bb96d1
children 3b37b1b1c3a7
line wrap: on
line diff
--- a/heatmap2.xml	Sat Jul 28 03:44:29 2018 -0400
+++ b/heatmap2.xml	Mon Feb 11 17:32:28 2019 -0500
@@ -1,20 +1,22 @@
-<tool id="ggplot2_heatmap2" name="heatmap2" version="@VERSION@+galaxy1">
+<tool id="ggplot2_heatmap2" name="heatmap2" version="@VERSION@">
     <macros>
-        <import>macros.xml</import>
+        <token name="@VERSION@">3.0.1</token>
     </macros>
     <requirements>
-        <requirement type="package" version="3.0.1">r-gplots</requirement>
+        <requirement type="package" version="@VERSION@">r-gplots</requirement>
         <requirement type="package" version="1.1_2">r-rcolorbrewer</requirement>
     </requirements>
     <command detect_errors="exit_code"><![CDATA[
 cat '$script' &&
-Rscript '$script' &&
-mv output_plot.pdf $output1
+Rscript '$script'
     ]]></command>
     <configfiles>
         <configfile name="script"><![CDATA[
+## Setup R error handling to go to stderr
+options(show.error.messages=F, error=function(){cat(geterrmessage(), file=stderr()); q("no",1,F)})
 
-@R_INIT@
+## Unify locale settings
+loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8")
 
 ## Import library
 library("RColorBrewer")
@@ -25,11 +27,6 @@
 mat_input <- data.matrix(input[,2:ncol(input)])
 rownames(mat_input) <- input[,1]
 
-hclust_fun = function(x) hclust(x, method="complete")
-dist_fun = function(x) dist(x, method="maximum")
-distfun=dist_fun
-hclustfun=hclust_fun
-
 #if $transform == "none"
     linput <- mat_input
 #elif $transform == "log2"
@@ -43,85 +40,129 @@
 #end if
 
 #if $colorscheme == "whrd"
-  colorscale = colfunc <- colorRampPalette(c("white", "red"))
+    colorscale = colfunc <- colorRampPalette(c("white", "red"))
 #elif $colorscheme == "whblu"
-  colorscale = colfunc <- colorRampPalette(c("white", "blue"))
+    colorscale = colfunc <- colorRampPalette(c("white", "blue"))
 #elif $colorscheme == "blwhre"
-  colorscale = colfunc <- colorRampPalette(c("blue","white", "red"))
+    colorscale = colfunc <- colorRampPalette(c("blue","white", "red"))
 #end if
 
 #if $labels== "both"
-  rlabs = NULL
-  clabs = NULL
+    rlabs = NULL
+    clabs = NULL
 #elif $labels== "rows"
-  rlabs = NULL
-  clabs = FALSE
+    rlabs = NULL
+    clabs = FALSE
 #elif $labels== "columns"
-  rlabs = FALSE
-  clabs = NULL
+    rlabs = FALSE
+    clabs = NULL
 #elif $labels== "none"
-  rlabs = FALSE
-  clabs = FALSE
+    rlabs = FALSE
+    clabs = FALSE
 #end if
 
-pdf(file='output_plot.pdf')
+pdf(file='$output1')
 colorscale
 
-#if $cluster:
-    heatmap.2(linput,
-        distfun=dist_fun, hclustfun=hclust_fun, scale = '$scale', labRow = rlabs, labCol = clabs,
-        col=colfunc(50), trace="none", density.info = "none", margins=c(8,8),
-        main = '$title', key.xlab='$key', keysize=1, cexCol=0.8, cexRow = 0.8, srtCol=45)
+#if $cluster_cond.cluster:
+    hclust_fun = function(x) hclust(x, method='$cluster_cond.clustering')
+    dist_fun = function(x) dist(x, method='$cluster_cond.distance')
+    #if $cluster_cond.cluster_cols_rows=="rows":
+        heatmap.2(linput, dendrogram="row", Colv=FALSE, Rowv=TRUE,
+            distfun=dist_fun, hclustfun=hclust_fun, scale = '$scale', labRow = rlabs, labCol = clabs,
+            col=colfunc(50), trace="none", density.info = "none", margins=c(8,8),
+            main = '$title', key.xlab='$key', keysize=1, cexCol=0.8, cexRow = 0.8, srtCol=45)
+    #elif $cluster_cond.cluster_cols_rows=="columns":
+        heatmap.2(linput, dendrogram="column", Colv=TRUE, Rowv=FALSE,
+            distfun=dist_fun, hclustfun=hclust_fun, scale = '$scale', labRow = rlabs, labCol = clabs,
+            col=colfunc(50), trace="none", density.info = "none", margins=c(8,8),
+            main = '$title', key.xlab='$key', keysize=1, cexCol=0.8, cexRow = 0.8, srtCol=45)
+    #else
+        heatmap.2(linput,
+            distfun=dist_fun, hclustfun=hclust_fun, scale = '$scale', labRow = rlabs, labCol = clabs,
+            col=colfunc(50), trace="none", density.info = "none", margins=c(8,8),
+            main = '$title', key.xlab='$key', keysize=1, cexCol=0.8, cexRow = 0.8, srtCol=45)
+    #end if
 #else
     heatmap.2(linput,
         dendrogram="none", Colv=FALSE, Rowv=FALSE, scale = '$scale', labRow = rlabs, labCol = clabs,
-        col=colfunc(50), trace="none", density.info = "none", margins=c(8,8), 
+        col=colfunc(50), trace="none", density.info = "none", margins=c(8,8),
         main='$title', key.xlab='$key', keysize=1, cexCol=0.8, cexRow = 0.8, srtCol=45)
 #end if
 
 dev.off()
-
         ]]></configfile>
     </configfiles>
 
     <inputs>
         <param name="input1" type="data" format="tabular" label="Input should have column headers - these will be the columns that are plotted"/>
-        <param name="title" type="text" format="txt" label="Plot title"/> 
-        <param name="key" type="text" format="txt" label="key title"/> 
-        <expand macro="transform" />
-        <param name="cluster" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Enable data clustering" />
+        <param name="title" type="text" format="txt" label="Plot title"/>
+        <param name="key" type="text" format="txt" label="key title"/>
+        <param name="transform" type="select" label="Data transformation">
+            <option value="none">Plot the data as it is</option>
+            <option value="log2">Log2(value) transform my data</option>
+            <option value="log2plus1">Log2(value+1) transform my data</option>
+            <option value="log10">Log10(value) transform my data</option>
+            <option value="log10plus1">Log10(value+1) transform my data</option>
+        </param>
+        <conditional name="cluster_cond">
+            <param name="cluster" type="select" label="Enable data clustering">
+                <option value="true">Yes</option>
+                <option value="">No</option>
+            </param>
+            <when value="true">
+                <param name="cluster_cols_rows" type="select" label="Clustering columns and rows">
+                    <option value="both" selected="true">Cluster rows and columns</option>
+                    <option value="rows">Cluster rows and not columns</option>
+                    <option value="columns">Cluster columns and not rows</option>
+                </param>
+                <param name="distance" type="select" label="Distance method" help="The method used to compute the distance (dissimilarity) between both rows and columns. Default: Euclidean" >
+                    <option value="euclidean" selected="true">Euclidean</option>
+                    <option value="maximum">Maximum</option>
+                </param>
+                <param name="clustering" type="select" label="Clustering method" help="The method used to compute the hierarchical clustering. Default: Complete" >
+                    <option value="complete" selected="true">Complete</option>
+                    <option value="average">Average</option>
+                </param>
+            </when>
+            <when value=""/>
+        </conditional>
         <param name="labels" type="select" label="Labeling columns and rows" >
-            <option value="both" selected="True">Label my columns and rows</option>
+            <option value="both" selected="true">Label my columns and rows</option>
             <option value="rows">Label rows and not columns</option>
             <option value="columns">Label columns and not rows</option>
             <option value="none">Do not label rows or columns</option>
         </param>
         <param name="colorscheme" type="select" label="Coloring groups" >
-            <option value="whrd" selected="True">White to red</option>
+            <option value="whrd" selected="true">White to red</option>
             <option value="whblu">White to blue</option>
             <option value="blwhre">Blue to white to red</option>
         </param>
         <param name="scale" type="select" label="Data scaling" >
-            <option value="none" selected="True">Do not scale my data</option>
+            <option value="none" selected="true">Do not scale my data</option>
             <option value="row">Scale my data by row</option>
             <option value="column">Scale my data by column</option>
         </param>
     </inputs>
     <outputs>
-        <data name="output1" format="pdf" from_work_dir="Rplot.pdf"/>
+        <data name="output1" format="pdf"/>
     </outputs>
     <tests>
         <test>
             <param name="input1" value="mtcars.txt"/>
-            <output name="output1" file="ggplot_heatmap2_result1.pdf" compare="sim_size"/>
+            <param name="cluster" value="true"/>
+            <output name="output1" file="result1.pdf" compare="sim_size"/>
+        </test>
+        <test>
+            <param name="input1" value="mtcars.txt"/>
+            <param name="cluster" value=""/>
+            <output name="output1" file="result2.pdf" compare="sim_size"/>
         </test>
     </tests>
     <help><![CDATA[
-This tool will generate a clustered heatmap of your data. More customization options will be added, for now the heatmap uses a red coloring scheme and clustering is performed using the "maximum" similarity measure and the "complete" hierarchical clustering measure. 
+This tool employs the heatmap.2 function from the R gplots package and will generate a heatmap of your data. If clustering is enabled, the heatmap uses the Euclidean distance method and the Complete hierarchical clustering method by default.
 
-Input data should have row labels in the first column and column labels. For example, the row labels (the first column) should represent gene IDs and the column labels should represent sample IDs. 
-
-This wrapper employs the heatmap.2 function of R.
+Input data should have row labels in the first column and column labels. For example, the row labels (the first column) should represent gene IDs and the column labels should represent sample IDs.
     ]]></help>
     <citations>
     </citations>