diff bigwigCompare.xml @ 8:aec7ca832043 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 2c5f94de9ddf6798e49b7e9c340c841ca2bfbcfe
author bgruening
date Mon, 19 Sep 2016 17:33:20 -0400
parents 48f35873bbb1
children f90c8a697ee9
line wrap: on
line diff
--- a/bigwigCompare.xml	Fri May 13 13:56:47 2016 -0400
+++ b/bigwigCompare.xml	Mon Sep 19 17:33:20 2016 -0400
@@ -34,6 +34,7 @@
                 #if $advancedOpt.plotTitle and str($advancedOpt.plotTitle.value) != "":
                     --plotTitle '$advancedOpt.plotTitle'
                 #end if
+                @blacklist@
 
             #end if
 ]]>
@@ -43,16 +44,20 @@
         <param name="bigwigFile2" format="bigwig" type="data" label="bigWig file" />
 
         <conditional name="comparison">
-            <param name="comparison_select" type="select" 
+            <param name="comparison_select" type="select"
                 label="How to compare the two files"
                 help="The default is to output the log2ratio between the two samples.
                 The reciprocal ratio returns the negative of the inverse of the ratio if
-                the ratio is less than 0. The resulting values are interpreted as negative fold changes. (--ratio)">
-                <option value="log2" selected="true">compute log2 of the number of reads ratio</option>
-                <option value="ratio">compute the ratio of the number of reads</option>
-                <option value="subtract">compute difference (subtract input from treatment) of the number of reads</option>
-                <option value="add">compute the sum over all reads</option>
+                the ratio is less than 0. The resulting values are interpreted as negative
+                fold changes. To output the scaled values from the first or second BAM file,
+                select 'first' or 'second'.">
+                <option value="log2" selected="true">Compute log2 of the number of reads ratio</option>
+                <option value="ratio">Compute the ratio of the number of reads</option>
+                <option value="subtract">Compute difference (subtract input from treatment) of the number of reads</option>
+                <option value="add">Compute the sum of number of reads</option>
                 <option value="reciprocal_ratio">Computes the fold change. If the fold change is less than 1, the negative of the inverse is reported. E.g. A fold change of 10 to 5 would be reported not as 0.5 but as -2</option>
+                <option value="first">Returns the scaled value of the first BAM file</option>
+                <option value="second">Returns the scaled value of the second BAM file</option>
             </param>
             <when value="log2">
                 <expand macro="pseudocount" />
@@ -62,6 +67,8 @@
             </when>
             <when value="subtract" />
             <when value="add" />
+            <when value="first" />
+            <when value="second" />
             <when value="reciprocal_ratio">
                 <expand macro="pseudocount" />
             </when>
@@ -88,6 +95,7 @@
                 <expand macro="skipNAs" />
                 <expand macro="scaleFactors" />
                 <expand macro="plotTitle" />
+                <expand macro="blacklist" />
             </when>
         </conditional>
     </inputs>