comparison computeGCBias.xml @ 0:d957e25e18a3 draft

Uploaded
author bgruening
date Thu, 14 Nov 2013 16:39:18 -0500
parents
children c54d31467be4
comparison
equal deleted inserted replaced
-1:000000000000 0:d957e25e18a3
1 <tool id="deeptools_computeGCBias" name="computeGCBias" version="1.0.1">
2 <description>to see whether your samples should be normalized for GC bias</description>
3 <expand macro="requirements" />
4 <stdio>
5 <exit_code range="0" level="warning" description="Warning" />
6 </stdio>
7 <macros>
8 <import>deepTools_macros.xml</import>
9 </macros>
10 <command>
11 #import tempfile
12 #set $temp_dir = os.path.abspath(tempfile.mkdtemp())
13
14 #set $temp_bam_handle = tempfile.NamedTemporaryFile( dir=$temp_dir )
15 #set $temp_bam_path = $temp_bam_handle.name + '.bam'
16 #silent $temp_bam_handle.close()
17 #silent os.system("ln -s %s %s" % (str($bamInput), $temp_bam_path))
18 #silent os.system("ln -s %s %s.bai" % (str($bamInput.metadata.bam_index), $temp_bam_path))
19
20 computeGCBias
21
22 @THREADS@
23
24 --bamfile '$temp_bam_path'
25 --GCbiasFrequenciesFile $outFileName
26 --fragmentLength $fragmentLength
27
28 @reference_genome_source@
29
30
31 #if $effectiveGenomeSize.effectiveGenomeSize_opt == "specific":
32 --effectiveGenomeSize $effectiveGenomeSize.effectiveGenomeSize
33 #else:
34 --effectiveGenomeSize $effectiveGenomeSize.effectiveGenomeSize_opt
35 #end if
36
37
38 #if $advancedOpt.showAdvancedOpt == "yes":
39 #if str($advancedOpt.region.value) != '':
40 --region '$advancedOpt.region'
41 #end if
42
43 --sampleSize '$advancedOpt.sampleSize'
44 --regionSize '$advancedOpt.regionSize'
45
46 #if $advancedOpt.filterOut:
47 --filterOut $advancedOpt.filterOut
48 #end if
49
50 #if $advancedOpt.extraSampling:
51 --extraSampling $advancedOpt.extraSampling
52 #end if
53
54 #end if
55
56 #if $saveBiasPlot:
57 --biasPlot $biasPlot
58 #end if
59
60 ## #if $output.showOutputSettings == "yes"
61 ## #if $output.saveBiasPlot:
62 ## --biasPlot biasPlot.png ;
63 ## mv biasPlot.png $biasPlot
64 ## #end if
65 ## #end if
66
67 ; rm $temp_dir -rf
68
69 </command>
70 <inputs>
71
72 <param name="bamInput" format="bam" type="data" label="Input BAM file"
73 help="The BAM file must be sorted."/>
74
75 <expand macro="reference_genome_source" />
76 <expand macro="effectiveGenomeSize" />
77
78 <param name="fragmentLength" type="integer" value="300" min="1"
79 label="Fragment length used for the sequencing"
80 help ="If paired-end reads are used, the fragment length is computed from the BAM file."/>
81
82 <conditional name="advancedOpt">
83 <param name="showAdvancedOpt" type="select" label="Show advanced options" >
84 <option value="no" selected="true">no</option>
85 <option value="yes">yes</option>
86 </param>
87 <when value="no" />
88 <when value="yes">
89 <param name="region" type="text" value=""
90 label="Region of the genome to limit the operation to"
91 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;" />
92
93 <param name="sampleSize" type="integer" value="50000000" min="1"
94 label="Number of sampling points to be considered" />
95
96 <param name="regionSize" type="integer" value="300" min="1"
97 label="Region size"
98 help ="To plot the reads per GC over a region, the size of the region is required (see below for more details of the mthod). By default, the bin size is set to 300 bp, which is close to the standard fragment size many sequencing applications. However, if the depth of sequencing is low, a larger bin size will be required, otherwise many bins will not overlap with any read."/>
99
100 <param name="filterOut" type="data" format="bed" optional="true"
101 label="BED file containing genomic regions to be excluded from the estimation of the correction"
102 help="Such regions usually contain repetitive regions and peaks that if included will bias the correction. It is recommended to filter out known repetitive regions if multi-reads (reads that map to more than one genomic position) were excluded. In the case of ChIP-seq data, it is recommended to first use a peak caller to identify and filter out the identified peaks." />
103 <param name="extraSampling" type="data" format="bed" optional="true"
104 label="BED file containing genomic regions for which extra sampling is required because they are underrepresented in the genome"
105 help="" />
106 </when>
107 </conditional>
108
109 <param name="saveBiasPlot" type="boolean" truevalue="--biasPlot" falsevalue="" checked="True" label="Save a diagnostic image summarizing the GC bias found on the sample"/>
110 <!--
111 <conditional name="output" >
112 <param name="showOutputSettings" type="select" label="Show additional output options" >
113 <option value="no" selected="true">no</option>
114 <option value="yes">yes</option>
115 </param>
116 <when value="no" />
117 <when value="yes">
118 <param name="saveBiasPlot" type="boolean" label="Save a diagnostic image summarizing the GC bias found on the sample"/>
119 </when>
120 </conditional>
121 -->
122 </inputs>
123 <outputs>
124 <data format="tabular" name="outFileName" />
125 <data format="png" name="biasPlot" label="${tool.name} on ${on_string}: bias plot">
126 <filter>saveBiasPlot is True</filter>
127 <!--<filter>(output['showOutputSettings'] == 'yes' and output['saveBiasPlot'] == True)</filter>-->
128 </data>
129 </outputs>
130 <help>
131
132 **What it does**
133
134 This tool computes the GC bias using the method proposed by Benjamini and Speed (2012). Nucleic Acids Res. (see below for more explanations)
135 The output is used to plot the bias and can also be used later on to correct the bias with the tool correctGCbias.
136 There are two plots produced by the tool: a boxplot showing the absolute read numbers per genomic-GC bin and an x-y plot
137 depicting the ratio of observed/expected reads per genomic GC content bin.
138
139 -----
140
141 **Summary of the method used**
142
143 In order to estimate how many reads with what kind of GC content one should have sequenced, we first need to determine how many regions the specific
144 reference genome contains for each amount of GC content, i.e. how many regions in the genome have 50% GC (or 10% GC or 90% GC or...).
145 We then sample a large number of equally sized genome bins and count how many times we see a bin with 50% GC (or 10% GC or 90% or...). These EXPECTED values are independent of any
146 sequencing as it only depends on the respective reference genome (i.e. it will most likely vary between mouse and fruit fly due to their genome's different GC contents).
147 The OBSERVED values are based on the reads from the sequenced sample. Instead of noting how many genomic regions there are per GC content, we now count the reads per GC content.
148 In an ideal sample without GC bias, the ratio of OBSERVED/EXPECTED values should be close to 1 regardless of the GC content. Due to PCR (over)amplifications, the majority of ChIP samples
149 usually shows a significant bias towards reads with high GC content (>50%)
150
151 .. image:: $PATH_TO_IMAGES/QC_GCplots_input.png
152
153
154 **Output files**:
155
156 - Diagnostic plot
157
158 - box plot of absolute read numbers per genomic GC bin
159 - x-y plot of observed/expected read ratios per genomic GC content bin
160
161 - Data matrix
162
163 - to be used for GC correction with correctGCbias
164
165
166 -----
167
168 .. class:: infomark
169
170 @REFERENCES@
171
172 </help>
173 </tool>