comparison deepTools_macros.xml @ 52:c0a054f2eff8 draft

Uploaded
author bgruening
date Mon, 22 Dec 2014 18:56:27 -0500
parents 1d802a322244
children 728849e6f781
comparison
equal deleted inserted replaced
51:329e8411cc51 52:c0a054f2eff8
8 <option value="no" selected="true">no</option> 8 <option value="no" selected="true">no</option>
9 <option value="yes">yes</option> 9 <option value="yes">yes</option>
10 </param> 10 </param>
11 <when value="no" /> 11 <when value="no" />
12 <when value="yes"> 12 <when value="yes">
13 <param name="doNotExtendPairedEnds" type="boolean" truevalue="--doNotExtendPairedEnds" falsevalue="" 13 <expand macro="doNotExtendPairedEnds" />
14 label="Do not extend paired ends" 14 <expand macro="ignoreDuplicates" />
15 help="If set, reads are not extended to match the fragment length reported in the BAM file, instead they will be extended to match the fragment length. Default is to extend the reads if paired end information is available."/> 15 <expand macro="minMappingQuality" />
16
17 <param name="ignoreDuplicates" type="boolean" truevalue="--ignoreDuplicates" falsevalue=""
18 label="Ignore duplicates"
19 help="If set, reads that have the same orientation and start position will be considered only once. If reads are paired, the mate position also has to coincide to ignore a read." />
20
21 <param name="minMappingQuality" type="integer" optional="true" value="1" min="1"
22 label="Minimum mapping quality"
23 help= "If set, only reads that have a mapping quality score higher than the given value are considered. *Note* Bowtie's Mapping quality is related to uniqueness: the higher the score, the more unique is a read. A mapping quality defined by Bowtie of 10 or less indicates that there is at least a 1 in 10 chance that the read truly originated elsewhere."/>
24
25 <param name="includeZeros" type="boolean" truevalue="--includeZeros" falsevalue="" 16 <param name="includeZeros" type="boolean" truevalue="--includeZeros" falsevalue=""
26 label ="Include zeros" 17 label="Include zeros"
27 help ="If set, then regions with zero counts for *all* BAM files given are included. The default behavior is to ignore those cases." /> 18 help="If set, then regions with zero counts for *all* BAM files given are included. The default behavior is to ignore those cases. (--includeZeros)" />
28
29 <param name="zMin" type="integer" value="" optional="true" label="Minimum value for the heatmap intensities" 19 <param name="zMin" type="integer" value="" optional="true" label="Minimum value for the heatmap intensities"
30 help="If not specified the value is set automatically."/> 20 help="If not specified the value is set automatically. (--zMin)"/>
31
32 <param name="zMax" type="integer" value="" optional="true" label="Maximum value for the heatmap intensities" 21 <param name="zMax" type="integer" value="" optional="true" label="Maximum value for the heatmap intensities"
33 help="If not specified the value is set automatically."/> 22 help="If not specified the value is set automatically. (--zMax)"/>
34
35 <expand macro="colormap" /> 23 <expand macro="colormap" />
36 </when> 24 </when>
37 </conditional> 25 </conditional>
38 </xml> 26 </xml>
39 27
40 <xml name="region_limit_operation"> 28 <xml name="region_limit_operation">
41 <param name="region" type="text" value="" 29 <param name="region" type="text" value=""
42 label="Region of the genome to limit the operation to" 30 label="Region of the genome to limit the operation to"
43 help="This is useful when testing parameters to reduce the computing time. The format is chr:start:end, for example &quot;chr10&quot; or &quot;chr10:456700:891000&quot;" /> 31 help="This is useful when testing parameters to reduce the computing time. The format is chr:start:end, for example &quot;chr10&quot; or &quot;chr10:456700:891000&quot;. (--region)" />
44 </xml> 32 </xml>
45
46 <token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token> 33 <token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token>
47 <token name="@WRAPPER_VERSION@">1.5.9.1</token> 34 <token name="@WRAPPER_VERSION@">1.5.9.1</token>
48 <xml name="requirements"> 35 <xml name="requirements">
49 <requirements> 36 <requirements>
50 <requirement type="binary">@BINARY@</requirement> 37 <requirement type="binary">@BINARY@</requirement>
85 <when value="none" /> 72 <when value="none" />
86 </conditional> 73 </conditional>
87 </when> 74 </when>
88 <when value="yes" /> 75 <when value="yes" />
89 </conditional> 76 </conditional>
90 77 </xml>
91 </xml> 78
92 <token name="@kmeans_clusterin@"> 79 <token name="@KMEANS_CLUSTERING@">
93 #if $advancedOpt.used_multiple_regions.used_multiple_regions_options == 'no': 80 #if $advancedOpt.used_multiple_regions.used_multiple_regions_options == 'no':
94 #if $advancedOpt.used_multiple_regions.clustering.clustering_options == 'kmeans': 81 #if $advancedOpt.used_multiple_regions.clustering.clustering_options == 'kmeans':
95 #if int($advancedOpt.used_multiple_regions.clustering.k_kmeans) > 0: 82 #if int($advancedOpt.used_multiple_regions.clustering.k_kmeans) > 0:
96 --kmeans $advancedOpt.used_multiple_regions.clustering.k_kmeans 83 --kmeans $advancedOpt.used_multiple_regions.clustering.k_kmeans
97 #end if 84 #end if
98 #end if 85 #end if
99 #end if 86 #end if
100 </token> 87 </token>
88
89 <xml name="doNotExtendPairedEnds">
90 <param name="doNotExtendPairedEnds" type="boolean" truevalue="--doNotExtendPairedEnds" falsevalue=""
91 label="Do not extend paired ends"
92 help="If set, reads are not extended to match the fragment length reported in the BAM file, instead they will be extended to match the fragment length. Default is to extend the reads if paired end information is available. (--doNotExtendPairedEnds)"/>
93 </xml>
94
95 <xml name="ignoreDuplicates">
96 <param name="ignoreDuplicates" type="boolean" truevalue="--ignoreDuplicates" falsevalue=""
97 label="Ignore duplicates"
98 help="If set, reads that have the same orientation and start position will be considered only once. If reads are paired, the mate position also has to coincide to ignore a read. (--ignoreDuplicates)" />
99 </xml>
100
101 <xml name="minMappingQuality">
102 <param name="minMappingQuality" type="integer" optional="true" value="1" min="1"
103 label="Minimum mapping quality"
104 help= "If set, only reads that have a mapping quality score higher than the given value are considered. *Note* Bowtie's Mapping quality is related to uniqueness: the higher the score, the more unique is a read. A mapping quality defined by Bowtie of 10 or less indicates that there is at least a 1 in 10 chance that the read truly originated elsewhere. (--minMappingQuality)"/>
105 </xml>
106
107 <xml name="skipZeros">
108 <param name="skipZeros" type="boolean" truevalue="--skipZeros" falsevalue=""
109 label ="Skip zeros"
110 help ="If set, then zero counts that happen for *all* BAM files given are ignored. This might have the effect that fewer regions are considered than indicated in the option where the number of samples is defined. (--skipZeros)" />
111 </xml>
112
113 <xml name="fragmentLength">
114 <param name="fragmentLength" type="integer" value="300" min="1"
115 label="Fragment length used for the sequencing"
116 help ="If paired-end reads are used, the fragment length is computed from the BAM file. (--fragmentLength)"/>
117 </xml>
118
119 <xml name="scaleFactor">
120 <param name="scaleFactor1" type="float" value="1" label="Scale factor for treatment" help="(--scaleFactors)"/>
121 <param name="scaleFactor2" type="float" value="1" label="Scale factor for input" help="(--scaleFactors)"/>
122 </xml>
101 123
102 <xml name="stdio"> 124 <xml name="stdio">
103 <stdio> 125 <stdio>
104 <exit_code range="1:" /> 126 <exit_code range="1:" />
105 <exit_code range=":-1" /> 127 <exit_code range=":-1" />
107 <regex match="Exception:" /> 129 <regex match="Exception:" />
108 <regex match="EXception:" /> 130 <regex match="EXception:" />
109 <regex match="Traceback" /> 131 <regex match="Traceback" />
110 </stdio> 132 </stdio>
111 </xml> 133 </xml>
134
112 <xml name="pseudocount"> 135 <xml name="pseudocount">
113 <param name="pseudocount" type="float" value="1" label="Pseudocount" help="Small number to avoid dividing by zero."/> 136 <param name="pseudocount" type="float" value="1" label="Pseudocount" help="Small number to avoid dividing by zero."/>
114 </xml> 137 </xml>
138
115 <token name="@REFERENCES@"> 139 <token name="@REFERENCES@">
116 140
117 .. class:: infomark 141 .. class:: infomark
118 142
119 For more information on the tools, please visit our `help site`_. 143 For more information on the tools, please visit our `help site`_.