Mercurial > repos > bgruening > deeptools_bam_fingerprint
comparison bamFingerprint.xml @ 8:ab153e5b5428 draft default tip
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 4f515024772311c950d277246db548453d24abd7
author | bgruening |
---|---|
date | Wed, 23 Dec 2015 14:40:57 -0500 |
parents | b97024fb9c9f |
children |
comparison
equal
deleted
inserted
replaced
7:b97024fb9c9f | 8:ab153e5b5428 |
---|---|
56 <option value="yes">yes</option> | 56 <option value="yes">yes</option> |
57 </param> | 57 </param> |
58 <when value="no" /> | 58 <when value="no" /> |
59 <when value="yes"> | 59 <when value="yes"> |
60 <param argument="--binSize" type="integer" value="500" min="1" | 60 <param argument="--binSize" type="integer" value="500" min="1" |
61 label="Bin size in bp" | 61 label="Bin size in bases" |
62 help="Length in base pairs for a window used to sample the genome."/> | 62 help="Length in bases for a window used to sample the genome."/> |
63 <param argument="--numberOfSamples" type="integer" value="100000" min="1" | 63 <param argument="--numberOfSamples" type="integer" value="100000" min="1" |
64 label="Number of samples" | 64 label="Number of samples" |
65 help="Number of samples taken from the genome to compute the scaling factors."/> | 65 help="Number of samples taken from the genome to compute the scaling factors."/> |
66 <expand macro="read_processing_options" /> | 66 <expand macro="read_processing_options" /> |
67 <expand macro="skipZeros" /> | 67 <expand macro="skipZeros" /> |
113 <![CDATA[ | 113 <![CDATA[ |
114 | 114 |
115 | 115 |
116 **What it does** | 116 **What it does** |
117 | 117 |
118 This tool is useful to assess the strength of a ChIP (i.e. how clearly the enrichment signal can be separated from the background signal) | 118 This tool is useful for assessing the strength of a ChIP (i.e. how clearly the enrichment signal can be separated from the background) |
119 and it is based on a method developed by Diaz et al. (2012) Stat Appl Genet Mol Biol 11(3). | 119 and is based on a method described in Diaz et al. (2012) Stat Appl Genet Mol Biol 11(3). |
120 | 120 |
121 The tool first samples indexed BAM files and counts all reads overlapping a window (bin) of specified length. | 121 The tool first samples indexed BAM files and counts all reads overlapping a window (bin) of the specified length. |
122 These counts are then sorted according to their rank (the bin with the highest number of reads has the highest rank) | 122 These counts are then sorted according to their rank (the bin with the highest number of reads has the highest rank) |
123 and the cumulative sum of read counts are plotted. An ideal input (control sample) with perfect uniform distribution of reads | 123 and the cumulative sum of read counts are plotted. An ideal input (control) with a uniform distribution of reads alignments |
124 along the genome (i.e. without enrichments in open chromatin etc.) should | 124 result in a diagonal line. A very specific and strong ChIP enrichment, on the other hand, would result in a large portion |
125 generate a straight diagonal line. A very specific and strong ChIP enrichment will be indicated by a prominent and steep | 125 of reads accumulating in just a few bins and the resulting plot showing a steep rise toward the right-most edge. Such results are |
126 rise of the cumulative sum towards the highest rank. This means that a big chunk of reads from the ChIP sample is located in | 126 most commonly seen with transcription factors. |
127 few bins which corresponds to high, narrow enrichments seen for transcription factors. | |
128 | 127 |
129 | 128 |
130 .. image:: $PATH_TO_IMAGES/QC_fingerprint.png | 129 .. image:: $PATH_TO_IMAGES/QC_fingerprint.png |
131 | 130 |
132 | 131 |
138 - Diagnostic plot | 137 - Diagnostic plot |
139 - (optional) Data matrix of raw counts | 138 - (optional) Data matrix of raw counts |
140 | 139 |
141 **Output with test dataset**: | 140 **Output with test dataset**: |
142 | 141 |
143 Following is the output of bamFingerPrint with our test ChIP-Seq datasets, limiting analysis to chromosome X. Single-end reads were extended to | 142 What follows is the output of bamFingerPrint with our test ChIP-Seq datasets, limiting analysis to chromosome X. Single-end reads were extended to |
144 200 bp (advanced options). | 143 200 bp (advanced options). |
145 | 144 |
146 .. image:: $PATH_TO_IMAGES/bamFP_galaxy_output.png | 145 .. image:: $PATH_TO_IMAGES/bamFP_galaxy_output.png |
147 | 146 |
148 | 147 |