view dexseq_count.xml @ 21:45022897fb7d draft

Uploaded
author pavanvidem
date Thu, 03 Sep 2015 11:26:08 -0400
parents b7235a9b1881
children 71cb8c5ae8bd
line wrap: on
line source

<tool id="dexseq_count" name="DEXSeq-Count" version="1.0">
    <description>Prepare and count exon abundancies from RNA-seq data</description>
    <requirements>
        <requirement type="package" version="3.1.0">R</requirement>
        <requirement type="package" version="1.14.2">DEXSeq</requirement> 
    </requirements>
    <command interpreter="python">
        #if $mode.mode_select == "prepare":
            dexseq_prepare_annotation.py -r $aggregate $gtffile $flattened_gtf_out
        #elif $mode.mode_select == "count":
            dexseq_count.py -f bam -p $paired -r $order -s $stranded $flattened_gtf_in $bamfile $counts_file
        #end if
    </command>
    <inputs>
        <conditional name="mode">
            <param name="mode_select" type="select" label="Mode of operation">
                <option value="prepare">Prepare annotation</option>
                <option value="count">Count reads</option>
            </param>
            <when value="prepare">
                <param name="gtffile" type="data" format="gff" label="GTF file"/>
                <param name="aggregate" type="boolean" checked="True" truevalue="yes" falsevalue="no" label="Aggretare genes with  exons?" help="Indicates whether two or more genes sharing an exon should be merged into an 'aggregate gene'. If 'no', the exons that can not be assiged to a single gene are ignored."/>
            </when>
            <when value="count">
                <param name="bamfile" type="data" format="bam" label="Input bam file"/>
                <param name="flattened_gtf_in" type="data" format="gff" label="DEXSeq compatible GTF file" help="Created by prepare mode"/>
                <param name="paired" type="boolean" checked="True" truevalue="yes" falsevalue="no" label="Is libray paired end?"/>
                <param name="stranded" type="select" label="Is library strand specific?">
                    <option value="no">No</option>
                    <option value="yes">Yes</option>
                    <option value="reverse">Yes, but reverse</option>
                </param>
                <param name="qual" type="integer" value="10" label="Skip all reads with alignment quality lower than the given minimum value"/>
                <param name="order" type="select" label="Sorting order of alignments" help="If you generated your alignments using tophat, they are by default position sorted. Ignored for single-end data">
                    <option value="pos">By position</option>
                    <option value="name">By name</option>
                </param>
            </when>
        </conditional>
    </inputs>

    <outputs>
        <data format="tabular" name="counts_file" label="DEXSeq count reads on ${on_string}">
            <filter>(mode['mode_select'] == 'count')</filter>
        </data>
        <data format="gff" name="flattened_gtf_out" label="DEXSeq prepare annotation ${on_string}">
            <filter>(mode['mode_select'] == 'prepare')</filter>
        </data>
    </outputs>

    <help>

.. class:: infomark

**What it does** 

The main goal of this tol is to count the number of reads/fragments per exon of each gene in RNA-seq sample. In addition it also prepares your annotation gtf file compatible for counting.


**Inputs**

Mode-preprare: Takes a normal gtf file as input. For example from ensembl database.
Mode-count: Inputs are flattened gtf file and BAM file. The flattened gtf file can be generated from 'prepare' mode of this tool.

**Output**

Mode-preprare: Flattened gtf file that contains only exons with corresponding gene ids from given gtf file. Sometimes two or more genes sharing an exon will be merged into an 'aggregate gene' if the aggregate option was used.
Mode-count: Two column tab-delimeted file with exon ids and their read counts.

.. _DEXSeq: http://master.bioconductor.org/packages/release/bioc/html/DEXSeq.html


    </help>
    <citations>
        <citation type="doi">10.1101/gr.133744.111</citation>
    </citations>
</tool>