Mercurial > repos > bgruening > deeptools
comparison bamCompare.xml @ 28:f7712a057440 draft
new bugfix release
author | bgruening |
---|---|
date | Wed, 02 Apr 2014 09:15:44 -0400 |
parents | bf1b1dcdd67b |
children | 3a2aab18a217 |
comparison
equal
deleted
inserted
replaced
27:bf1b1dcdd67b | 28:f7712a057440 |
---|---|
1 <tool id="deeptools_bamCompare" name="bamCompare" version="1.0.5"> | 1 <tool id="deeptools_bamCompare" name="bamCompare" version="@WRAPPER_VERSION@.0"> |
2 <description>normalizes and compares two BAM files to obtain the ratio, log2ratio or difference. (bam2bigwig)</description> | 2 <description>normalizes and compares two BAM files to obtain the ratio, log2ratio or difference. (bam2bigwig)</description> |
3 <expand macro="requirements" /> | 3 <expand macro="requirements" /> |
4 <expand macro="stdio" /> | 4 <expand macro="stdio" /> |
5 <macros> | 5 <macros> |
6 <token name="@BINARY@">bamCompare</token> | 6 <token name="@BINARY@">bamCompare</token> |
189 <help> | 189 <help> |
190 | 190 |
191 **What it does** | 191 **What it does** |
192 | 192 |
193 This tool compares two BAM files based on the number of mapped reads. To | 193 This tool compares two BAM files based on the number of mapped reads. To |
194 compare the BAM files, the genome is partitioned into bins of equal size, | 194 compare the BAM files, the genome is partitioned into bins of equal size, then |
195 the reads are counted for each bin and each BAM file and finally, a summarizing value is reported. | 195 the number of reads found in each BAM file is counted for such bins and |
196 This value can be the ratio of the number of reads per bin, the log2 of the ratio or the difference. | 196 finally a summarizing value is reported. This value can be the ratio of the |
197 This tool can normalize the number of reads on each BAM file using the SES method | 197 number of reads per bin, the log2 of the ratio or the difference. This tool |
198 proposed by Diaz et al. (2012). Stat Appl Genet Mol Biol 11(3). Normalization based on read counts is also available. The | 198 can normalize the number of reads on each BAM file using the SES method |
199 output is either a bedGraph or a bigWig file containing the bin location and | 199 proposed by Diaz et al. (2012). "Normalization, bias correction, and peak |
200 the resulting comparison values. | 200 calling for ChIP-seq". Statistical applications in genetics and molecular |
201 If paired-end reads are present, the fragment | 201 biology, 11(3). Normalization based on read counts is also available. The |
202 length reported in the BAM file is used by default. | 202 output is either a bedgraph or a bigwig file containing the bin location and |
203 the resulting comparison values. By default, if reads are mated, the fragment | |
204 length reported in the BAM file is used. In the case of paired-end mapping | |
205 each read mate is treated independently to avoid a bias when a mixture of | |
206 concordant and discordant pairs is present. This means that *each end* will be | |
207 extended to match the fragment length. | |
203 | 208 |
204 | 209 |
205 .. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png | 210 .. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png |
206 | 211 |
207 | 212 |