comparison bamCoverage.xml @ 65:9bee2c86eeb1 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit ab1ab06323702186cf0c883d5774720cbb822cb5-dirty
author iuc
date Mon, 25 May 2015 05:16:10 -0400
parents f3140d17939e
children
comparison
equal deleted inserted replaced
64:627004611e98 65:9bee2c86eeb1
1 <tool id="deeptools_bamCoverage" name="bamCoverage" version="@WRAPPER_VERSION@.0"> 1 <tool id="deeptools_bamCoverage" name="bamCoverage" version="@WRAPPER_VERSION@.0">
2 <description> generates a coverage bigWig file from a given BAM file. Multiple options are available to count reads and normalize coverage. (bam2bigwig)</description> 2 <description> generates a coverage bigWig file from a given BAM file. Multiple options are available to count reads and normalize coverage. (bam2bigwig)</description>
3 <expand macro="requirements" />
4 <expand macro="stdio" />
5 <macros> 3 <macros>
6 <token name="@BINARY@">bamCoverage</token> 4 <token name="@BINARY@">bamCoverage</token>
7 <import>deepTools_macros.xml</import> 5 <import>deepTools_macros.xml</import>
8 </macros> 6 </macros>
7 <expand macro="requirements" />
9 <command> 8 <command>
10 <![CDATA[ 9 <![CDATA[
11 bamCoverage 10 bamCoverage
12 11
13 @THREADS@ 12 @THREADS@
51 --missingDataAsZero $advancedOpt.missingDataAsZero 50 --missingDataAsZero $advancedOpt.missingDataAsZero
52 51
53 ##if str($advancedOpt.ignoreForNormalization).strip() != '': 52 ##if str($advancedOpt.ignoreForNormalization).strip() != '':
54 ## --ignoreForNormalization $advancedOpt.ignoreForNormalization 53 ## --ignoreForNormalization $advancedOpt.ignoreForNormalization
55 ##end if 54 ##end if
56 55 #if $samFlag:
56 --samFlag $samFlag
57 #end if
57 #end if 58 #end if
58 ]]> 59 ]]>
59 </command> 60 </command>
60 61
61 <inputs> 62 <inputs>
107 help ="The smooth length defines a window, larger than the bin size, to average the number of reads. For example, if the bin size is set to 20 bp and the smooth length is set to 60 bp, then, for each bin size the average of it and its left and right neighbors is considered. Any value smaller than the bin size will be ignored and no smoothing will be applied. (--smoothLength)"/> 108 help ="The smooth length defines a window, larger than the bin size, to average the number of reads. For example, if the bin size is set to 20 bp and the smooth length is set to 60 bp, then, for each bin size the average of it and its left and right neighbors is considered. Any value smaller than the bin size will be ignored and no smoothing will be applied. (--smoothLength)"/>
108 109
109 <expand macro="doNotExtendPairedEnds" /> 110 <expand macro="doNotExtendPairedEnds" />
110 <expand macro="ignoreDuplicates" /> 111 <expand macro="ignoreDuplicates" />
111 <expand macro="minMappingQuality" /> 112 <expand macro="minMappingQuality" />
112
113 <expand macro="missingDataAsZero" /> 113 <expand macro="missingDataAsZero" />
114 114 <expand macro="samFlag" />
115 <!-- <param name="ignoreForNormalization" type="text" value="" size="50" 115 <!-- <param name="ignoreForNormalization" type="text" value="" size="50"
116 label="regions that should be excluded for calculating the scaling factor" 116 label="regions that should be excluded for calculating the scaling factor"
117 help="Sometimes it makes sense to exclude certain regions when calculating the scaling factor. For example, if you know some regions that you suspect to be present more often in your sample's genome than in the reference genome that will therefore accumulate reads (CNV). Another typical example is the single X chromosome in male samples that should be scaled separately from the diploid autosomes. For example chrX,chrY,chr3. or chr10:12220-128932" /> 117 help="Sometimes it makes sense to exclude certain regions when calculating the scaling factor. For example, if you know some regions that you suspect to be present more often in your sample's genome than in the reference genome that will therefore accumulate reads (CNV). Another typical example is the single X chromosome in male samples that should be scaled separately from the diploid autosomes. For example chrX,chrY,chr3. or chr10:12220-128932" />
118 --> 118 -->
119 </when> 119 </when>