view EMS_VariantDensityMapping.xml @ 0:a43cb9a57a9a

Uploaded
author gregory-minevich
date Tue, 20 Mar 2012 10:53:03 -0400
parents
children
line wrap: on
line source

<tool id="ems_variant_density_mapping" name="EMS Variant Density Mapping">
    <description>Map a mutation by linkage to regions of high mutation density using WGS data</description>
    <command interpreter="python">EMS_VariantDensityMapping.py  --snp_vcf $snp_vcf  --ylim $ylim --hist_color $hist_color --standardize $standardize --ems $ems --output $output </command>
    <inputs>
	<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"/>
	<param name="ylim" size = "15" type="integer" value="200" label="Y-axis upper limit"/> 
	<param name="hist_color" size = "15" type="text" value="darkgray" label="Color for 1Mb bins" help="See below for list of supported colors"/> 
	<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"/>
	<param name="ems" type="boolean" truevalue="true" falsevalue="false" checked="false"  label="Filter for most common EMS-induced variants (G/C—>A/T)"/> 
    </inputs>
    <outputs>
        <data name="output" type="text" format="pdf" />
    </outputs>
    <requirements>
        <requirement type="python-module">sys</requirement>
        <requirement type="python-module">optparse</requirement>
        <requirement type="python-module">csv</requirement>
        <requirement type="python-module">re</requirement>
	<requirement type="python-module">decimal</requirement>
        <requirement type="python-module">rpy</requirement>
    </requirements>
    <tests>
	<param name="snp_vcf" value="" />
	<output name="output" file="" />
    </tests>
    <help>
**What it does:** 

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):

.. image:: http://biochemistry.hs.columbia.edu/labs/hobert/CloudMap/EMS_Variant_Density.pdf





The experimental approach is detailed in Figure 1a from Zuryn et al., Genetics 2010:

.. image:: http://biochemistry.hs.columbia.edu/labs/hobert/CloudMap/Zuryn_2010_Genetics_Fig1a.pdf


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.

------

**Settings:**

.. class:: infomark

Supported colors for data points and loess regression line:

http://www.stat.columbia.edu/~tzheng/files/Rcolor.pdf

http://research.stowers-institute.org/efg/R/Color/Chart/ColorChart.pdf




.. class:: warningmark

This tool requires that R has been installed on your system (http://www.r-project.org/).

------

**Citation:**

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)`__

    .. __: http://biochemistry.hs.columbia.edu/labs/hobert/literature.html


    </help>
</tool>