comparison bamCoverage.xml @ 10:a68a771625d2 draft

Uploaded
author bgruening
date Tue, 29 Oct 2013 17:26:28 -0400
parents 73761f33f198
children b0d64a9930d6
comparison
equal deleted inserted replaced
9:73761f33f198 10:a68a771625d2
1 <tool id="deeptools_bamCoverage" name="bamCoverage" version="1.0"> 1 <tool id="deeptools_bamCoverage" name="bamCoverage" version="1.0">
2 <description> generates a coverage bigWig file from a given BAM file. Multiple options are available to count reads and normalize coverage.</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 <requirements> 3 <expand macro="requirements" />
4 <requirement type="package" version="1.5.1_3e13687c89e951476776b15afb4bbbc3b906f761">deepTools</requirement> 4 <macros>
5 <requirement type="package" version="0.1">ucsc_tools</requirement> 5 <import>deepTools_macros.xml</import>
6 <requirement type="package" version="1.7.1">numpy</requirement> 6 </macros>
7 <requirement type="package" >deepTools</requirement> 7 <command>
8 </requirements> 8 bamCoverage
9 <command>
10 bamCoverage
11 9
12 ##ToDo 10 @THREADS@
13 --numberOfProcessors 4
14 11
15 --bam '$bamInput' 12 --bam '$bamInput'
16 --bamIndex ${bamInput.metadata.bam_index} 13 --bamIndex ${bamInput.metadata.bam_index}
17 --outFileName '$outFileName' 14 --outFileName '$outFileName'
18 --outFileFormat '$outFileFormat' 15 --outFileFormat '$outFileFormat'
133 </outputs> 130 </outputs>
134 <help> 131 <help>
135 132
136 **What it does** 133 **What it does**
137 134
138 Given a BAM file, this tool generates a bigWig or bedGraph file of fragment or read coverages. The way the method works is by first calculating all the number of reads (either extended to match the fragment length or not) that overlap each bin in the genome. Bins with zero counts are skipped, i.e. not added to the output file. The resulting read counts can be normalized using either a given scaling factor, the RPKM formula or to get a 1x depth of coverage (RPGC). 135 Given a BAM file, this tool generates a bigWig or bedGraph file of fragment or read coverages.
136 The way the method works is by first calculating all the number of reads (either extended to match the fragment length or not)
137 that overlap each bin in the genome. Bins with zero counts are skipped, i.e. not added to the output file.
138 The resulting read counts can be normalized using either a given scaling factor, the RPKM formula or to get a 1x depth of coverage (RPGC).
139
140
141 .. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png
142
143
144 **Output files**:
145
146 - coverage file either in bigWig or bedGraph format
139 147
140 ----- 148 -----
141 149
142 .. class:: infomark 150 .. class:: infomark
143 151
144 If you would like to give us feedback or you run into any trouble, please send an email to deeptools@googlegroups.com 152 @REFERENCES@
145 153
146 This tool is developed by the `Bioinformatics and Deep-Sequencing Unit`_ at the `Max Planck Institute for Immunobiology and Epigenetics`_. 154 </help>
147
148
149 .. _Bioinformatics and Deep-Sequencing Unit: http://www3.ie-freiburg.mpg.de/facilities/research-facilities/bioinformatics-and-deep-sequencing-unit/
150 .. _Max Planck Institute for Immunobiology and Epigenetics: http://www3.ie-freiburg.mpg.de
151
152 </help>
153 </tool> 155 </tool>