diff galaxy-conf/MapDyads.xml @ 20:9d56b5b85740 draft

Reuploaded to see if tools get loaded correctly this time.
author timpalpant
date Fri, 15 Jun 2012 15:10:26 -0400
parents
children b43c420a6135
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/galaxy-conf/MapDyads.xml	Fri Jun 15 15:10:26 2012 -0400
@@ -0,0 +1,41 @@
+<tool id="MapDyads" name="Map dyads" version="1.1.0">
+  <description>from sequencing reads</description>
+  <command interpreter="sh">
+    galaxyToolRunner.sh nucleosomes.MapDyads -i $input -a ${chromInfo} -o $output
+    #if $type.read == 'single'
+      -s $type.size
+    #end if
+  </command>
+  <inputs>
+      <param name="input" type="data" format="sam,bam,bed,bedGraph" label="Sequencing reads" />
+      <conditional name="type">
+        <param name="read" type="select" label="Type of reads">
+          <option value="paired" selected="true">Paired-End</option>
+          <option value="single">Single-End</option>
+        </param>
+        <when value="single">
+          <param name="size" type="integer" value="147" label="Estimated mononucleosome length (used to offset +/- strands)" />
+        </when>
+        <when value="paired">
+          <!-- No values here -->
+        </when>
+      </conditional>
+  </inputs>
+  <outputs>
+      <data name="output" format="wig" />
+  </outputs>
+  
+<help>
+  
+This tool produces a Wig file with the number of dyads at each base pair. For paired-end MNase data, dyads are approximated using the center of the fragment. For Bed/BedGraph formatted input, this means the center of the interval; for SAM/BAM formatted input, this means the middle between the 5' end of mate 1 and the 5' end of mate 2. For single-end data, the estimated mononucleosome fragment length (N) must be specified, which will be used to offset reads from the + and - strands by +/- N/2.
+  
+.. class:: warningmark
+
+This tool requires sequencing reads in SAM, BAM, Bed, or BedGraph format.
+
+.. class:: warningmark
+
+Since BedGraph format does not contain strand information, all reads in BedGraph format are considered to be on the 5' strand.
+
+</help>
+</tool>