diff bamCoverage.xml @ 21:96057da0d8d8 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit cbb142cf0582948030f99621d5dd65ab80caa296
author bgruening
date Thu, 11 Aug 2016 06:28:53 -0400
parents 205f1536914d
children bc24fb3f9e91
line wrap: on
line diff
--- a/bamCoverage.xml	Fri May 13 17:13:52 2016 -0400
+++ b/bamCoverage.xml	Thu Aug 11 06:28:53 2016 -0400
@@ -50,6 +50,12 @@
                 #if str($advancedOpt.filterRNAstrand) != 'no':
                     --filterRNAstrand '$advancedOpt.filterRNAstrand'
                 #end if
+
+                #if $advancedOpt.Offset:
+                    --Offset '$advancedOpt.Offset'
+                #end if
+
+                @blacklist@
             #end if
 ]]>
     </command>
@@ -107,7 +113,19 @@
 
                 <param argument="--MNase" type="boolean" truevalue="--MNase" falsevalue=""
                     label="Determine nucleosome positions from MNase-seq data"
-                    help="Only the 3 nucleotides at the center of each fragment are counted. The fragment ends are defined by the two mate reads. *NOTE*: Requires paired-end data." />
+                    help="Only the 3 nucleotides at the center of each fragment are counted. The fragment ends are defined by the two mate reads. *NOTE*: Requires paired-end data. By default, only fragments between 130 and 200 bases will be used, though this can be changed with the --minFragmentLength and --maxFragmentLength options." />
+
+                <param argument="--Offset" type="integer"  value="" optional="True"
+                    label="Offset inside each alignment to use for the signal location."
+                    help="Uses this offset inside of each read as the signal. This is useful in
+                        cases like RiboSeq or GROseq, where only the 12th, 15th or 1st base aligned
+                        should be used to denote where the signal is (rather than the span of the
+                        whole alignment). This can be paired with the --filterRNAstrand option. Note
+                        that negative values indicate offsets from the end of each read. A value of
+                        1 indicates the first base of the alignment (taking alignment orientation
+                        into account). Likewise, a value of -1 is the last base of the alignment. An
+                        offset of 0 is not permitted. By default, the entire alignment is used to
+                        denote where the signal is located." />
 
                 <param argument="filterRNAstrand" type="select" label="Only include reads originating from fragments from the forward or reverse strand." 
                     help="By default (the no option), all reads are processed, regardless of the strand they originated from. For RNAseq, it can be useful to separately create bigWig files for the forward or reverse strands.
@@ -116,6 +134,7 @@
                     <option value="forward">forward</option>
                     <option value="reverse">reverse</option>
                 </param>
+                <expand macro="blacklist" />
 
             </when>
         </conditional>