view bamCompare.xml @ 22:f85c85597f95 draft

Uploaded
author bgruening
date Mon, 03 Feb 2014 18:31:42 -0500
parents 69ff16ba27bd
children 8c452f37c896
line wrap: on
line source

<tool id="deeptools_bamCompare" name="bamCompare" version="1.0.3">
    <description>normalizes and compares two BAM files to obtain the ratio, log2ratio or difference. (bam2bigwig)</description>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <macros>
        <token name="@BINARY@">bamCompare</token>
        <import>deepTools_macros.xml</import>
    </macros>
    <command>
        bamCompare

        @THREADS@

      --bamfile1 '$bamFile1'
      -bai1 '${bamFile1.metadata.bam_index}'
      --bamfile2 '$bamFile2'
      -bai2 '${bamFile2.metadata.bam_index}'

      --outFileName '$outFileName'
      --outFileFormat '$outFileFormat'

      --fragmentLength $fragmentLength
      --binSize $binSize

      #if $scaling.method == 'SES':
        --scaleFactorsMethod SES
        --sampleLength $scaling.sampleLength
      #elif $scaling.method == 'readCount':
        --scaleFactorsMethod readCount
      #elif $scaling.method == 'own':
        --scaleFactors '$scaling.scaleFactor1:$scaling.scaleFactor2'
      #end if

      --ratio $comparison.type

      #if $comparison.type=='subtract':
          #if $comparison.normalization.type=='rpkm':
            --normalizeUsingRPKM
          #elif $comparison.normalization.type=='1x':

            #if $comparison.normalization.effectiveGenomeSize.effectiveGenomeSize_opt == "specific":
                --normalizeTo1x $comparison.normalization.effectiveGenomeSize.effectiveGenomeSize
            #else:
                --normalizeTo1x $comparison.normalization.effectiveGenomeSize.effectiveGenomeSize_opt
            #end if

          #end if
      #end if

      #if str($region).strip() != '':
          --region '$region'
      #end if

      #if $advancedOpt.showAdvancedOpt == "yes":
            #if $advancedOpt.smoothLength:
            --smoothLength '$advancedOpt.smoothLength'
            #end if

            $advancedOpt.doNotExtendPairedEnds
            $advancedOpt.ignoreDuplicates

            #if $advancedOpt.minMappingQuality:
                --minMappingQuality '$advancedOpt.minMappingQuality'
            #end if

            --missingDataAsZero $advancedOpt.missingDataAsZero

            #if str($advancedOpt.ignoreForNormalization).strip() != '':
                --ignoreForNormalization $advancedOpt.ignoreForNormalization
            #end if

      #end if

    </command>

    <inputs>
        <param name="bamFile1" format="bam" type="data" label="Treatment BAM file"
            help="The BAM file must be sorted."/>

        <param name="bamFile2" format="bam" type="data" label="BAM file"
            help="The BAM file must be sorted."/>

        <param name="fragmentLength" type="integer" value="300" min="1"
            label="Length of the average fragment size"
            help ="Reads will be extended to match this length unless they are paired-end, in which case they will be extended to match the fragment length. If this value is set to the read length or smaller, the read will not be extended. *Warning* the fragment length affects the normalization to 1x (see &quot;normalize coverage to 1x&quot;). The formula to normalize using the sequencing depth is genomeSize/(number of mapped reads * fragment length). *NOTE*: If the BAM files contain mated and unmated paired-end reads, unmated reads will be extended to match the fragment length."/>

        <param name="binSize" type="integer" value="50" min="1" 
            label="Bin size in bp"
            help="The genome will be divided in bins (also called tiles) of the specified length. For each bin the overlaping number of fragments (or reads)  will be reported. If only half a fragment overlaps, this fraction will be reported. "/>

        <conditional name="scaling">
            <param name="method" type="select" 
                label="Method to use for scaling the largest sample to the smallest">
                <option value="readCount" selected="true">read count</option>
                <option value="SES">signal extraction scaling (SES)</option>
                <option value="own">enter own scaling factors</option>
            </param>
            <when value="SES">
                <param name="sampleLength" type="integer" value="1000" min="10"
                    label="Length in base pairs used to sample the genome and compute the size or scaling factors to compare the two  BAM files "
                    help="The default is fine. Only change it if you know what you are doing" />
            </when>
            <when value="readCount" />
            <when value="own">
                <param name="scaleFactor1" type="float" value="1"
                    label="Scale factor for treatment"/>

                <param name="scaleFactor2" type="float" value="1"
                    label="Scale factor for input"/>
            </when>
        </conditional>

        <conditional name="comparison">
            <param name="type" type="select" 
                label="How to compare the two files">
                <option value="log2" selected="true">compute log2 of the number of reads ratio</option>
                <option value="ratio">compute the ratio of the number of reads</option>
                <option value="subtract">compute difference (subtract input from treatment) of the number of reads</option>
            </param>
            <when value="log2" />
            <when value="ratio" />
            <when value="subtract">
                <conditional name="normalization">
                    <param name="type" type="select" label="Normalization method" >
                        <option value="1x">Normalize coverage to 1x</option>
                        <option value="rpkm">Normalize to fragments (reads) per kilobase per million (RPKM)</option>
                        <option value="no">Do not normalize or scale</option>
                    </param>
                    <when value="rpkm" />
                    <when value="no" />
                    <when value="1x">
                        <expand macro="effectiveGenomeSize" />
                    </when>
                </conditional>
            </when>
        </conditional>

        <param name="outFileFormat" type="select" label="Coverage file format">
            <option value="bigwig" selected="true">bigwig</option>
            <option value="bedgraph">bedgraph</option>
        </param>

        <expand macro="region_limit_operation" />

        <conditional name="advancedOpt">
            <param name="showAdvancedOpt" type="select" label="Show advanced options" >
                <option value="no" selected="true">no</option>
                <option value="yes">yes</option>
            </param>
            <when value="no" />
            <when value="yes">

                <param name="smoothLength" type="integer" value="1" optional="true" min="1"
                    label="Smooth values using the following length (in bp)"
                    help ="The smooth length defines a window, larger than the bin size, to average the number of reads. For example, if the bin size is set to 20 bp and the smooth length is set to 60 bp, then, for each bin size the average of it and its left and right neighbors is considered. Any value smaller than the bin size will be ignored and no smoothing will be applied."/>

                <param name="doNotExtendPairedEnds" type="boolean" truevalue="--doNotExtendPairedEnds" falsevalue=""
                    label="Do not extend paired ends"
                    help="If set, reads are not extended to match the fragment length reported in the BAM file, instead they will be extended to match the fragment length. Default is to extend the reads if paired end information is available."/>

                <param name="ignoreDuplicates" type="boolean" truevalue="--ignoreDuplicates" falsevalue=""
                    label="Ignore duplicates"
                    help="If set, reads that have the same orientation and start position will be considered only once. If reads are paired, the mate position also has to coincide to ignore a read." /> 

                <param name="minMappingQuality" type="integer" optional="true" value="1" min="1"
                    label="Minimum mapping quality (e.g. BOWTIE2 measures)"
                    help= "If set, only reads that have a mapping quality score higher than the given value are considered. *Note* Bowtie's Mapping quality is related to uniqueness: the higher the score, the more unique is a read. A mapping quality defined by Bowtie of 10 or less indicates that there is at least a 1 in 10 chance that the read truly originated elsewhere."/>

                <param name="missingDataAsZero" type="boolean" truevalue="yes" falsevalue="no" checked="True"
                    label ="Treat missing data as zero"
                    help  ="This parameter determines if missing data should be treated as zeros. If unchecked, missing data will be ignored and not included in the output file. Missing data is defined as those regions for which both BAM files have 0 reads." />

                <param name="ignoreForNormalization" type="text" value="" size="50"
                    label="regions that should be excluded for calculating the scaling factor"
                    help="Sometimes it makes sense to exclude certain regions when calculating the scaling factor. For example, if you know some regions that you suspect to be present more often in your sample's genome than in the reference genome that will therefore accumulate reads (CNV). Another typical example is the single X chromosome in male samples that should be scaled separately from the diploid autosomes. For example chrX,chrY,chr3. or chr10:12220-128932" />

            </when>
        </conditional>

    </inputs>
    <outputs>
        <data format="bigwig" name="outFileName">
        <change_format>
            <when input="outFileFormat" value="bigwig" format="bigwig" />
            <when input="outFileFormat" value="bedgraph" format="bedgraph" />
        </change_format>
        </data>
    </outputs>
    <help>

**What it does**

This tool compares two BAM files based on the number of mapped reads. To
compare the BAM files, the genome is partitioned into bins of equal size,
the reads are counted for each bin and each BAM file and finally, a summarizing value is reported.
This value can be the ratio of the number of reads per bin, the log2 of the ratio or the difference.
This tool can normalize the number of reads on each BAM file using the SES method
proposed by Diaz et al. (2012). Stat Appl Genet Mol Biol 11(3). Normalization based on read counts is also available. The
output is either a bedGraph or a bigWig file containing the bin location and
the resulting comparison values.
If paired-end reads are present, the fragment
length reported in the BAM file is used by default.


.. image:: $PATH_TO_IMAGES/norm_IGVsnapshot_indFiles.png


You can find more details in the `bamCompare wiki`_.

.. _bamCompare wiki: https://github.com/fidelram/deepTools/wiki/Normalizations#wiki-bamCompare


**Output files**:

- same as for bamCoverage, except that you now obtain 1 coverage file that is based on 2 BAM files.

-----

@REFERENCES@

    </help>
</tool>