comparison EMS_VariantDensityMapping.xml @ 0:a43cb9a57a9a

Uploaded
author gregory-minevich
date Tue, 20 Mar 2012 10:53:03 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a43cb9a57a9a
1 <tool id="ems_variant_density_mapping" name="EMS Variant Density Mapping">
2 <description>Map a mutation by linkage to regions of high mutation density using WGS data</description>
3 <command interpreter="python">EMS_VariantDensityMapping.py --snp_vcf $snp_vcf --ylim $ylim --hist_color $hist_color --standardize $standardize --ems $ems --output $output </command>
4 <inputs>
5 <param name="snp_vcf" type="data" format="vcf" label="VCF of SNPs" help="Takes a VCF file of WGS SNPs present in a C.elegans mutant strain that has been backcrossed to its (pre-mutagenesis) starting strain"/>
6 <param name="ylim" size = "15" type="integer" value="200" label="Y-axis upper limit"/>
7 <param name="hist_color" size = "15" type="text" value="darkgray" label="Color for 1Mb bins" help="See below for list of supported colors"/>
8 <param name="standardize" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Standardize X-axis" help="Histogram plots from separate chromosomes will have uniform X-axis spacing for comparison"/>
9 <param name="ems" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Filter for most common EMS-induced variants (G/C—>A/T)"/>
10 </inputs>
11 <outputs>
12 <data name="output" type="text" format="pdf" />
13 </outputs>
14 <requirements>
15 <requirement type="python-module">sys</requirement>
16 <requirement type="python-module">optparse</requirement>
17 <requirement type="python-module">csv</requirement>
18 <requirement type="python-module">re</requirement>
19 <requirement type="python-module">decimal</requirement>
20 <requirement type="python-module">rpy</requirement>
21 </requirements>
22 <tests>
23 <param name="snp_vcf" value="" />
24 <output name="output" file="" />
25 </tests>
26 <help>
27 **What it does:**
28
29 Following the approach detailed in Zuryn et al., Genetics 2010, this tool plots histograms of SNP density in a mutant C.elegans strain that has been backcrossed to its (pre-mutagenesis) starting strain. Sample output where LG III shows linkage to the causal mutation is shown below. (Common variants from another strain have been subtracted and remaining variants have been filtered for most common EMS-induced mutations i.e. G/C --> A/T):
30
31 .. image:: http://biochemistry.hs.columbia.edu/labs/hobert/CloudMap/EMS_Variant_Density.pdf
32
33
34
35
36
37 The experimental approach is detailed in Figure 1a from Zuryn et al., Genetics 2010:
38
39 .. image:: http://biochemistry.hs.columbia.edu/labs/hobert/CloudMap/Zuryn_2010_Genetics_Fig1a.pdf
40
41
42 Subtracting common (non-phenotype causing) variants present in multiple WGS strains (using GATK Tools Select Variants) will result in less noise and a tighter mapping region. Additional backcrosses will also result in a smaller mapping region.
43
44 ------
45
46 **Settings:**
47
48 .. class:: infomark
49
50 Supported colors for data points and loess regression line:
51
52 http://www.stat.columbia.edu/~tzheng/files/Rcolor.pdf
53
54 http://research.stowers-institute.org/efg/R/Color/Chart/ColorChart.pdf
55
56
57
58
59 .. class:: warningmark
60
61 This tool requires that R has been installed on your system (http://www.r-project.org/).
62
63 ------
64
65 **Citation:**
66
67 This tool is part of the CloudMap package from the Hobert Lab. If you use this tool, please cite `Gregory Minevich, Danny Park, Richard J. Poole and Oliver Hobert CloudMap: A Cloud-based Pipeline for Analysis of Mutant Genome Sequences. (2012 In Preparation)`__
68
69 .. __: http://biochemistry.hs.columbia.edu/labs/hobert/literature.html
70
71
72 </help>
73 </tool>