comparison bamCoverage.xml @ 8:9e8925f84444 draft

planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 4f515024772311c950d277246db548453d24abd7
author bgruening
date Wed, 23 Dec 2015 14:38:45 -0500
parents a259f484f884
children 300e98d37770
comparison
equal deleted inserted replaced
7:a259f484f884 8:9e8925f84444
53 <inputs> 53 <inputs>
54 <param name="bamInput" format="bam" type="data" label="BAM file" 54 <param name="bamInput" format="bam" type="data" label="BAM file"
55 help="The BAM file must be sorted."/> 55 help="The BAM file must be sorted."/>
56 56
57 <param name="binSize" type="integer" value="50" min="1" 57 <param name="binSize" type="integer" value="50" min="1"
58 label="Bin size in bp" 58 label="Bin size in bases"
59 help="The genome will be divided in bins (also called tiles) of the specified length. For each bin the overlaping number of fragments (or reads) will be reported. If only half a fragment overlaps, this fraction will be reported. "/> 59 help="The genome will be divided into bins of the specified size. For each bin, the overlaping number of fragments (or reads) will be reported. If only half a fragment overlaps, this fraction will be reported. "/>
60 60
61 <conditional name="scaling"> 61 <conditional name="scaling">
62 <param name="type" type="select" label="Scaling/Normalization method" > 62 <param name="type" type="select" label="Scaling/Normalization method" >
63 <option value="1x">Normalize coverage to 1x</option> 63 <option value="1x">Normalize coverage to 1x</option>
64 <option value="rpkm">Normalize to fragments (reads) per kilobase per million (RPKM)</option> 64 <option value="rpkm">Normalize to fragments (reads) per kilobase per million (RPKM)</option>
92 92
93 <param argument="ignoreForNormalization" type="text" value="" 93 <param argument="ignoreForNormalization" type="text" value=""
94 label="Regions that should be excluded for normalization" 94 label="Regions that should be excluded for normalization"
95 help="A list of chromosome names separated by spaces 95 help="A list of chromosome names separated by spaces
96 containing those chromosomes that should be excluded 96 containing those chromosomes that should be excluded
97 for computing the normalization. This is useful when 97 during normalization. This is useful when
98 considering samples with unequal coverage across 98 considering samples with unequal coverage across
99 chromosomes like male samples. Example: chrX chrM" /> 99 chromosomes, like male and female samples. Example: chrX chrM" />
100 100
101 <expand macro="skipNAs" /> 101 <expand macro="skipNAs" />
102 <expand macro="read_processing_options" /> 102 <expand macro="read_processing_options" />
103 103
104 <param argument="--MNase" type="boolean" truevalue="--MNase" falsevalue="" 104 <param argument="--MNase" type="boolean" truevalue="--MNase" falsevalue=""
105 label="Determine nucleosome positions from MNase-seq data" 105 label="Determine nucleosome positions from MNase-seq data"
106 help="Only 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." /> 106 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." />
107 107
108 </when> 108 </when>
109 </conditional> 109 </conditional>
110 </inputs> 110 </inputs>
111 <outputs> 111 <outputs>
161 Given a BAM file, this tool generates a bigWig or bedGraph file of fragment or 161 Given a BAM file, this tool generates a bigWig or bedGraph file of fragment or
162 read coverages. The way the method works is by first calculating all the 162 read coverages. The way the method works is by first calculating all the
163 number of reads (either extended to match the fragment length or not) that 163 number of reads (either extended to match the fragment length or not) that
164 overlap each bin in the genome. The resulting read counts can be normalized 164 overlap each bin in the genome. The resulting read counts can be normalized
165 using either a given scaling factor, the RPKM formula or to get a 1x depth of 165 using either a given scaling factor, the RPKM formula or to get a 1x depth of
166 coverage (RPGC). In the case of paired-end mapping each read mate is treated 166 coverage (RPGC). In the case of paired-end mapping, each read mate is treated
167 independently to avoid a bias when a mixture of concordant and discordant 167 independently to avoid a bias when a mixture of concordant and discordant
168 pairs is present. This means that *each end* will be extended to match the 168 pairs is present. This means that *each end* will be extended to match the
169 fragment length. 169 fragment length.
170 170
171 .. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png 171 .. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png