diff htseq-count.xml @ 0:3fdeebd7e710

Initial commit
author lparsons
date Tue, 04 Sep 2012 13:45:36 -0400
parents
children f7a5b54a8d4f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/htseq-count.xml	Tue Sep 04 13:45:36 2012 -0400
@@ -0,0 +1,225 @@
+<tool id="htseq_count" name="htseq-count" version="0.1">
+    <description> - Count aligned reads in a BAM file that overlap features in a GFF file</description>
+    <version_command>htseq-count -h | grep version | sed 's/^\(.*\)*\(version .*\)\./\2/'</version_command>
+    <requirements>
+        <requirement type="package" version="0.5.3p9">htseq</requirement>
+        <requirement type="package" version="0.1.18">samtools</requirement>
+    </requirements>
+    <command>
+    ##set up input files
+    #set $reference_fasta_filename = "localref.fa"
+    #if $samout_conditional.samout:
+        #if str( $samout_conditional.reference_source.reference_source_selector ) == "history":
+            ln -s "${samout_conditional.reference_source.ref_file}" "${reference_fasta_filename}" &amp;&amp;
+            samtools faidx "${reference_fasta_filename}" 2&gt;&amp;1 || echo "Error running samtools faidx for htseq-count" &gt;&amp;2 &amp;&amp;
+        #else:
+            #set $reference_fasta_filename = str( $samout_conditional.reference_source.ref_file.fields.path )
+        #end if
+    #end if
+
+    #if $samfile.extension == "bam":
+        samtools view $samfile | 
+    #end if
+    htseq-count 
+    --mode=$mode 
+    --stranded=$stranded 
+    --minaqual=$minaqual 
+    --type=$type 
+    --idattr=$idattr 
+    #if $samout_conditional.samout:
+        --samout=$__new_file_path__/${samoutfile.id}_tmp
+    #end if
+    #if $samfile.extension == "bam":
+        - 
+    #else
+        $samfile 
+    #end if
+    $gfffile 
+    &gt; $counts
+    #if $samout_conditional.samout:
+        &amp;&amp; samtools view -Su -t ${reference_fasta_filename}.fai $__new_file_path__/${samoutfile.id}_tmp | samtools sort -o - sorted > $samoutfile
+    #end if</command>
+    <inputs>
+        <param format="sam, bam" name="samfile" type="data" label="Aligned SAM File">
+            <help>Paired-End data must be sorted by QUERY NAME, use Picard Read Mate Fixer and Query name sort order before using this tool on paired data</help>
+        </param>
+        <param format="gff" name="gfffile" type="data" label="GFF File"/>
+        <param name="mode" type="select" label="Mode">
+            <help>Mode to handle reads overlapping more than one feature.</help>
+            <option value="union" selected="true">Union</option>
+            <option value="intersection-strict">Intersection (strict)</option>
+            <option value="intersection-nonempty">Intersection (nonempty)</option>
+        </param>
+        <param name="stranded" type="select" label="Stranded">
+            <help>Specify whether the data is from a strand-specific assay. 'Reverse' means yes with reversed strand interpretation.</help>
+            <option value="yes" selected="true">Yes</option>
+            <option value="no">No</option>
+            <option value="reverse">Reverse</option>
+        </param>
+        <param name="minaqual" type="integer" value="0" label="Minimum alignment quality">
+            <help>Skip all reads with alignment quality lower than the given minimum value</help>
+        </param>
+        <param name="type" type="text" value="exon" label="Feature type">
+            <help>Feature type (3rd column in GFF file) to be used. All features of other types are ignored. The default, suitable for RNA-Seq and Ensembl GTF files, is exon.</help>
+        </param>
+        <param name="idattr" type="text" value="gene_id" label="ID Attribute">
+            <help>GFF attribute to be used as feature ID. Several GFF lines with the same feature ID will be considered as parts of the same feature. The feature ID is used to identity the counts in the output table. The default, suitable for RNA-SEq and Ensembl GTF files, is gene_id.</help>
+        </param>
+        <conditional name="samout_conditional">
+            <param name="samout" type="boolean" value="False" truevalue="True" falsevalue="False" label="Additional BAM Output">
+                <help>Write out all SAM alignment records into an output BAM file, annotating each line with its assignment to a feature or a special counter (as an optional field with tag ‘XF’).</help>
+            </param>
+            <when value="True">       
+                <conditional name="reference_source">
+                    <param name="reference_source_selector" type="select" label="Choose the source for the reference list">
+                        <option value="cached">Locally cached</option>
+                        <option value="history">History</option>
+                    </param>
+                    <when value="cached">
+                        <param name="ref_file" type="select" label="Using reference genome">
+                            <options from_data_table="sam_fa_indexes">
+                                <filter type="data_meta" key="dbkey" ref="samfile" column="3"/>
+                            </options>
+                            <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
+                        </param>
+                    </when>
+                    <when value="history"> <!-- FIX ME!!!! -->
+                        <param name="ref_file" type="data" format="fasta" label="Using reference file" />
+                    </when>
+                </conditional>
+            </when>
+        </conditional>
+    </inputs>
+
+    <outputs>
+        <data format="tabular" name="counts" label="${tool.name} on ${on_string}"/>
+        <data format="bam" name="samoutfile" label="${tool.name} on ${on_string} (BAM)">
+            <filter>samout_conditional['samout']</filter>
+        </data>
+    </outputs>
+
+    <stdio>
+        <exit_code range="1:" level="fatal" description="Unknown error occurred" />
+    </stdio>
+
+    <tests>
+        <test>
+            <param name="samfile" value="htseq-test.sam" />
+            <param name="gfffile" value="htseq-test.gff" />
+            <param name="samout" value="False" />
+            <output name="counts" file="htseq-test_counts.tsv" />
+        </test>
+        <test>
+            <param name="samfile" value="htseq-test.bam" />
+            <param name="gfffile" value="htseq-test.gff" />
+            <param name="samout" value="False" />
+            <output name="counts" file="htseq-test_counts.tsv" />
+        </test>
+        <!-- Seems to be an issue setting the $reference_fasta_filename variable during test
+        <test>
+            <param name="samfile" value="htseq-test.sam" />
+            <param name="gfffile" value="htseq-test.gff" />
+            <param name="samout" value="True" />
+            <param name="reference_source_selector" value="history" />
+            <param name="ref_file" value="htseq-test_reference.fasta" />
+            <output name="counts" file="htseq-test_counts.tsv" />
+            <output name="samoutfile" file="htseq-test_samout.bam" />
+        </test>
+        -->
+    </tests>
+
+    <help>
+Overview
+--------
+
+This tool takes an alignment file in SAM or BAM format and feature file in GFF format
+and calculates the number of reads mapping to each feature. It uses the *htseq-count* 
+script that is part of the HTSeq python module. See
+http://www-huber.embl.de/users/anders/HTSeq/doc/count.html for details.
+
+A feature is an interval (i.e., a range of positions) on a chromosome or a union of
+such intervals.  In the case of RNA-Seq, the features are typically genes, where 
+each gene is considered here as the union of all its exons. One may also consider 
+each exon as a feature, e.g., in order to check for alternative splicing. For 
+comparative ChIP-Seq, the features might be binding regions from a pre-determined 
+list.
+
+**Paired-end Data MUST be sorted by QUERY NAME first**
+
+This tool requires that paired-end data be sorted by query name, which is NOT the default for Galaxy. Using the Picard Paired Read Mate Fixer with Query name sort FIRST is required for paired end data.
+
+
+Overlap Modes
+-------------
+
+Special care must be taken to decide how to deal with reads that overlap more than one feature. 
+
+The htseq-count script allows to choose between three modes: *union*, *intersection-strict*, and *intersection-nonempty*.
+
+The following figure illustrates the effect of these three modes:
+
+.. image:: /static/images/count_modes.png
+    :width: 500
+
+Strandedness
+------------
+
+**Important**: The default for strandedness is yes. If your RNA-Seq data has not been made with a strand-specific protocol, this causes half of the reads to be lost. Hence, make sure to set the option Stranded to 'No' unless you have strand-specific data!
+
+Output
+------
+
+The script outputs a table with counts for each feature, followed by the special counters, which count reads that were not counted for any feature for various reasons, namely
+
+- *no_feature*: reads which could not be assigned to any feature (set S as described above was empty).
+
+- *ambiguous*: reads which could have been assigned to more than one feature and hence were not counted for any of these (set S had mroe than one element).
+
+- *too_low_aQual*: reads which were not counted due to the -a option, see below
+
+- *not_aligned*: reads in the SAM file without alignment
+
+- *alignment_not_unique*: reads with more than one reported alignment. These reads are recognized from the NH optional SAM field tag. (If the aligner does not set this field, multiply aligned reads will be counted multiple times.)
+
+
+Options Summary
+---------------
+
+Usage: htseq-count [options] sam_file gff_file
+
+This script takes an alignment file in SAM format and a feature file in GFF
+format and calculates for each feature the number of reads mapping to it. See
+http://www-huber.embl.de/users/anders/HTSeq/doc/count.html for details.
+
+Options:
+  -h, --help            show this help message and exit
+  -m MODE, --mode=MODE  mode to handle reads overlapping more than one
+                        feature(choices: union, intersection-strict,
+                        intersection-nonempty; default: union)
+  -s STRANDED, --stranded=STRANDED
+                        whether the data is from a strand-specific assay.
+                        Specify 'yes', 'no', or 'reverse' (default: yes).
+                        'reverse' means 'yes' with reversed strand
+                        interpretation
+  -a MINAQUAL, --minaqual=MINAQUAL
+                        skip all reads with alignment quality lower than the
+                        given minimum value (default: 0)
+  -t FEATURETYPE, --type=FEATURETYPE
+                        feature type (3rd column in GFF file) to be used, all
+                        features of other type are ignored (default, suitable
+                        for Ensembl GTF files: exon)
+  -i IDATTR, --idattr=IDATTR
+                        GFF attribute to be used as feature ID (default,
+                        suitable for Ensembl GTF files: gene_id)
+  -o SAMOUT, --samout=SAMOUT
+                        write out all SAM alignment records into an output SAM
+                        file called SAMOUT, annotating each line with its
+                        feature assignment (as an optional field with tag
+                        'XF')
+  -q, --quiet           suppress progress report and warnings
+
+Written by Simon Anders (sanders@fs.tum.de), European Molecular Biology
+Laboratory (EMBL). (c) 2010. Released under the terms of the GNU General
+Public License v3. Part of the 'HTSeq' framework.
+    </help>
+</tool>