changeset 25:f1368427a79c draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_count commit 76065f751b678abf87e6c723be680fecaa8cb589
author iuc
date Mon, 05 Feb 2018 15:04:47 -0500
parents 620d5603d1a8
children 7f5a8d427b39
files README.rst htseq-count.xml static/images/count_modes.png test-data/htseq-test_counts_nonunique.tsv test-data/htseq-test_samout.bam
diffstat 5 files changed, 338 insertions(+), 116 deletions(-) [+]
line wrap: on
line diff
--- a/README.rst	Fri Jan 20 15:46:13 2017 -0500
+++ b/README.rst	Mon Feb 05 15:04:47 2018 -0500
@@ -1,21 +1,19 @@
 htseq-count wrapper for Galaxy
 ==============================
 
-Galaxy wrapper for
-`htseq-count <http://www-huber.embl.de/users/anders/HTSeq/doc/count.html>`_
-script from python
-`HTSeq <http://www-huber.embl.de/users/anders/HTSeq/doc/index.html>`_ package.
+Galaxy wrapper for `htseq-count <https://htseq.readthedocs.io/en/release_0.9.1/count.html>`_
+script from the `HTSEQ <https://readthedocs.org/projects/htseq/>`_ python package.
 
 Installation
 ------------
 
-Installation directly from the `Galaxy Toolshed                                                                                                                                                                 <http://toolshed.g2.bx.psu.edu/view/lparsons/htseq_count>`_ is
-recommended.
+Installation directly from the `Galaxy Toolshed <http://toolshed.g2.bx.psu.edu/view/lparsons/htseq_count>`_
+is recommended.
 
 Galaxy Wrapper License
 ----------------------
 
-Copyright (c) 2012-2014, Lance R. Parsons <lparsons@princeton.edu>
+Copyright (c) 2012-2018, Lance R. Parsons <lparsons@princeton.edu>
 All rights reserved.
 
 Licensed under the BSD 2-Clause License: <http://opensource.org/licenses/BSD-2-Clause>
--- a/htseq-count.xml	Fri Jan 20 15:46:13 2017 -0500
+++ b/htseq-count.xml	Mon Feb 05 15:04:47 2018 -0500
@@ -1,8 +1,8 @@
-<tool id="htseq_count" name="htseq-count" version="0.6.1galaxy3" profile="16.04">
+<tool id="htseq_count" name="htseq-count" version="0.9.1" profile="16.04">
     <description> - Count aligned reads in a BAM file that overlap features in a GFF file</description>
     <requirements>
-        <requirement type="package" version="0.6.1.post1">htseq</requirement>
-        <requirement type="package" version="1.3.1">samtools</requirement>
+        <requirement type="package" version="0.9.1">htseq</requirement>
+        <requirement type="package" version="1.7">samtools</requirement>
     </requirements>
 
     <stdio>
@@ -12,7 +12,6 @@
         <regex match="Error: Feature (.+) does not contain a '(.+)' attribute" source="both" level="fatal" description="Error parsing the GFF file, at least one feature of the specified 'Feature type' does not have a value for the specified 'ID Attribute'" />
         <regex match="Error occured in line (\d+) of file" source="stderr" level="fatal" description="Unknown error parsing the GFF file" />
         <regex match="Error" source="stderr" level="fatal" description="Unknown error occured" />
-        <regex match="Warning: Read (.+) claims to have an aligned mate which could not be found. \(Is the SAM file properly sorted\?\)" source="stderr" level="warning" description="PAIRED DATA MISSING OR NOT PROPERLY SORTED. Try reruning and selecting the option to 'Force sorting of SAM/BAM file by NAME'. See stderr output of this dataset for more information." />
     </stdio>
 
     <version_command>htseq-count -h | grep version | sed 's/^\(.*\)*\(version .*\)\./\2/'</version_command>
@@ -20,21 +19,22 @@
     <command><![CDATA[
     ##set up input files
     #set $reference_fasta_filename = "localref.fa"
-    #if $samout_conditional.samout == "Yes":
-        #if str( $samout_conditional.reference_source.reference_source_selector ) == "history":
-            ln -s "${samout_conditional.reference_source.ref_file}" "${reference_fasta_filename}" &&
-            samtools faidx '${reference_fasta_filename}' 2>&1 || echo "Error running samtools faidx for htseq-count" >&2 &&
-        #else:
-            #set $reference_fasta_filename = str( $samout_conditional.reference_source.ref_file.fields.path )
+    #set $name_sorted_alignment_filename = "name_sorted_alignment.sam"
+    #if str( $advanced_options.advanced_options_selector ) == "advanced":
+        #if str( $advanced_options.samout_conditional.samout ) == "Yes":
+            #if str( $advanced_options.samout_conditional.reference_source.reference_source_selector ) == "history":
+                ln -s "${advanced_options.samout_conditional.reference_source.ref_file}" "${reference_fasta_filename}" &&
+                samtools faidx '${reference_fasta_filename}' 2>&1 || echo "Error running samtools faidx for htseq-count" >&2 &&
+            #else:
+                #set $reference_fasta_filename = str( $advanced_options.samout_conditional.reference_source.ref_file.fields.path )
+            #end if
         #end if
     #end if
 
-    #if $force_sort == "True":
-        #if $samfile.extension == 'bam':
-            samtools sort -n -o 'name_sorted_alignment.bam' '$samfile' &&
-        #else
-            samtools view -Su -t '${reference_fasta_filename}.fai' '$samfile' | samtools sort -n -o 'name_sorted_alignment.bam' - &&
-        #end if
+    #if $samfile.extension == 'bam':
+        samtools sort -n --output-fmt=SAM -o '$name_sorted_alignment_filename' '$samfile' &&
+    #else
+        samtools view -Su -t '${reference_fasta_filename}.fai' '$samfile' | samtools sort -n --output-fmt=SAM -o '$name_sorted_alignment_filename' - &&
     #end if
 
     htseq-count
@@ -43,28 +43,31 @@
         --minaqual=$minaqual
         --type='$featuretype'
         --idattr='$idattr'
-    #if $samout_conditional.samout == "Yes":
-        --samout='$__new_file_path__/${samoutfile.id}_tmp'
+
+    #if str( $advanced_options.advanced_options_selector ) == "advanced":
+        --nonunique=$advanced_options.nonunique
+        --secondary-alignments=${advanced_options.secondary_alignments}
+        --supplementary-alignments=${advanced_options.supplementary_alignments}
+        #if $advanced_options.samout_conditional.samout == "Yes":
+            --samout='$__new_file_path__/${samoutfile.id}_tmp.sam'
+        #end if
     #end if
-    #if $force_sort == "True":
-        --order=name
-        --format=bam
-        name_sorted_alignment.bam
-    #else
-        --order=pos
-        --format=$samfile.extension
-        '$samfile'
-    #end if
+
+    --order=name
+    --format=sam
+    '$name_sorted_alignment_filename'
 
     "$gfffile" | awk '{if ($1 ~ "no_feature|ambiguous|too_low_aQual|not_aligned|alignment_not_unique") print $0 | "cat 1>&2"; else print $0}'
          > '$counts'
         2> '$othercounts'
 
-    #if $samout_conditional.samout == "Yes":
-        && samtools view -Su
-            -t '${reference_fasta_filename}.fai'
-            '$__new_file_path__/${samoutfile.id}_tmp'
-        | samtools sort -o '$samoutfile' -
+    #if str( $advanced_options.advanced_options_selector ) == "advanced":
+        #if $advanced_options.samout_conditional.samout == "Yes":
+            && samtools view -Su
+                -t '${reference_fasta_filename}.fai'
+                '$__new_file_path__/${samoutfile.id}_tmp.sam'
+            | samtools sort -o '$samoutfile' -
+        #end if
     #end if
     ]]>
     </command>
@@ -72,14 +75,16 @@
     <inputs>
         <param format="sam,bam" name="samfile" type="data" label="Aligned SAM/BAM File"/>
         <param format="gff" name="gfffile" type="data" label="GFF File"/>
-        <param name="mode" type="select" label="Mode" argument="(--mode)">
+        <param name="mode" type="select" label="Mode" argument="--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" argument="(--stranded)">
-            <help>Specify whether the data is from a strand-specific assay. 'Reverse' means yes with reversed strand interpretation.</help>
+        <param name="stranded" type="select" label="Stranded" argument="--stranded">
+            <help>Specify whether the data is from a strand-specific assay.
+                **Be sure to choose the correct value** (see help for more
+                information).</help>
             <option value="yes" selected="True">Yes</option>
             <option value="no">No</option>
             <option value="reverse">Reverse</option>
@@ -93,47 +98,65 @@
         <param name="idattr" type="text" value="gene_id" label="ID Attribute" argument="--idattr">
             <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. All features of the specified type MUST have a value for this attribute. The default, suitable for RNA-Seq and Ensembl GTF files, is gene_id.</help>
         </param>
-        <conditional name="samout_conditional">
-            <param name="samout" type="select" 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>
-                <option value="No" selected="True">Do not output additional BAM file</option>
-                <option value="Yes">Output additional BAM file</option>
+
+        <conditional name="advanced_options">
+            <param name="advanced_options_selector" type="select" label="Set advanced options">
+                <option value="simple" selected="true">Default settings</option>
+                <option value="advanced">Set advanced options</option>
             </param>
-            <when value="Yes">
-                <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>
+            <when value="simple">
+            </when>
+            <when value="advanced">
+                <param argument="--nonunique" type="select" label="How to count nonunique or ambiguous mapping reads">
+                    <option value="none" selected="true">None - do not count nonuniquely or ambiguously mapped reads for any features</option>
+                    <option value="all">All - count nonuniquely or ambiguously mapped reads in BOTH in the nonunique or ambiguous category AND for any features they overlap</option>
+                </param>
+                <param argument="--secondary-alignments" name="secondary_alignments" type="boolean" truevalue="ignore" falsevalue="score" checked="false" label="Ignore seconday alignments (0x100 flag)" />
+                <param argument="--supplementary-alignments" name="supplementary_alignments" type="boolean" truevalue="ignore" falsevalue="score" checked="false" label="Ignore supplementary alignments (0x800 flag)" />
+                <conditional name="samout_conditional">
+                    <param name="samout" type="select" 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>
+                        <option value="No" selected="True">Do not output additional BAM file</option>
+                        <option value="Yes">Output additional BAM file</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="1"/>
-                            </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 value="Yes">
+                        <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="1"/>
+                                    </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">
+                                <param name="ref_file" type="data" format="fasta" label="Using reference file" />
+                            </when>
+                        </conditional>
                     </when>
-                    <when value="history">
-                        <param name="ref_file" type="data" format="fasta" label="Using reference file" />
+                    <when value="No">
+                        <!-- Do nothing -->
                     </when>
                 </conditional>
             </when>
-            <when value="No">
-                <!-- Do nothing -->
-            </when>
         </conditional>
-        <param name="force_sort" type="boolean" value="False" truevalue="True" falsevalue="False" label="Force sorting of SAM/BAM file by NAME">
-            <help>This option can be used for for paired-end data that has many unmapped mates. Use this if you get the warning about paired end data missing or not being properly sorted.</help>
-        </param>
     </inputs>
 
     <outputs>
         <data format="tabular" name="counts" metadata_source="samfile" label="${tool.name} on ${on_string}">
             <actions>
-                <action name="column_names" type="metadata" default="Geneid,${samfile.name}" />
+                <action name="column_names" type="metadata" default="Geneid,${samfile.element_identifier}" />
             </actions>
         </data>
-        <data format="tabular" name="othercounts" metadata_source="samfile" label="${tool.name} on ${on_string} (no feature)"/>
+        <data format="tabular" name="othercounts" metadata_source="samfile" label="${tool.name} on ${on_string} (no feature)">
+            <actions>
+                <action name="column_names" type="metadata" default="Category,${samfile.element_identifier}" />
+            </actions>
+        </data>
         <data format="bam" name="samoutfile" metadata_source="samfile" label="${tool.name} on ${on_string} (BAM)">
             <filter>samout_conditional['samout'] == "Yes"</filter>
         </data>
@@ -143,45 +166,38 @@
         <test>
             <param name="samfile" value="htseq-test.sam" />
             <param name="gfffile" value="htseq-test.gff" />
-            <param name="samout" value="No" />
             <output name="counts" file="htseq-test_counts.tsv" />
             <output name="othercounts" file="htseq-test_othercounts.tsv" />
         </test>
         <test>
             <param name="samfile" value="htseq-test.sam" />
             <param name="gfffile" value="htseq-test.gff" />
-            <param name="samout" value="No" />
-            <param name="force_sort" value="True" />
             <output name="counts" file="htseq-test_counts.tsv" />
             <output name="othercounts" file="htseq-test_othercounts.tsv" />
         </test>
         <test>
             <param name="samfile" value="htseq-test.bam" />
             <param name="gfffile" value="htseq-test.gff" />
-            <param name="samout" value="No" />
             <output name="counts" file="htseq-test_counts.tsv" />
             <output name="othercounts" file="htseq-test_othercounts.tsv" />
         </test>
         <test>
             <param name="samfile" value="htseq-test-paired.bam" />
-            <param name="singlepaired" value="paired" />
+            <param name="gfffile" value="htseq-test.gff" />
+            <output name="counts" file="htseq-test-paired_counts.tsv" />
+            <output name="othercounts" file="htseq-test-paired_othercounts.tsv" />
+        </test>
+        <test>
+            <param name="samfile" value="htseq-test-paired.bam" />
             <param name="gfffile" value="htseq-test.gff" />
             <param name="samout" value="No" />
             <output name="counts" file="htseq-test-paired_counts.tsv" />
             <output name="othercounts" file="htseq-test-paired_othercounts.tsv" />
         </test>
         <test>
-            <param name="samfile" value="htseq-test-paired.bam" />
-            <param name="singlepaired" value="paired" />
-            <param name="gfffile" value="htseq-test.gff" />
-            <param name="samout" value="No" />
-            <param name="force_sort" value="True" />
-            <output name="counts" file="htseq-test-paired_counts.tsv" />
-            <output name="othercounts" file="htseq-test-paired_othercounts.tsv" />
-        </test>
-        <test>
             <param name="samfile" value="htseq-test.sam" />
             <param name="gfffile" value="htseq-test.gff" />
+            <param name="advanced_options_selector" value="advanced" />
             <param name="samout" value="Yes" />
             <param name="reference_source_selector" value="history" />
             <param name="ref_file" value="htseq-test_reference.fasta" />
@@ -189,6 +205,16 @@
             <output name="othercounts" file="htseq-test_othercounts.tsv" />
             <output name="samoutfile" file="htseq-test_samout.bam" />
         </test>
+        <test>
+            <param name="samfile" value="htseq-test.sam" />
+            <param name="gfffile" value="htseq-test.gff" />
+            <param name="advanced_options_selector" value="advanced" />
+            <param name="nonunique" value="all" />
+            <param name="secondary_alignments" value="ignore" />
+            <param name="supplementary_alignments" value="ignore" />
+            <output name="counts" file="htseq-test_counts_nonunique.tsv" />
+            <output name="othercounts" file="htseq-test_othercounts.tsv" />
+        </test>
     </tests>
 
     <help>
@@ -212,11 +238,42 @@
 Overlap Modes
 -------------
 
-Special care must be taken to decide how to deal with reads that overlap more than one feature.
+Special care must be taken to decide how to deal with reads that align to or
+overlap with more than one feature. The ``htseq-count`` script allows to choose
+between three modes. See also the FAQ_, if the following explanation seems too
+technical.
+
+The three overlap resolution modes of `htseq-count` work as follows. For each
+position *i* in the read, a set *S(i)* is defined as the set of all features
+overlapping position *i*. Then, consider the set *S*, which is (with *i*
+running through all position within the read or a read pair)
+
+- the union of all the sets *S(i)* for mode ``union``. This mode is
+  recommended for most use cases.
+- the intersection of all the sets *S(i)* for mode ``intersection-strict``.
+- the intersection of all non-empty sets *S(i)* for mode
+  ``intersection-nonempty``.
 
-The htseq-count script allows to choose between three modes: *union*, *intersection-strict*, and *intersection-nonempty*.
+If *S* contains precisely one feature, the read (or read pair) is counted for
+this feature. If *S* is empty, the read (or read pair) is counted as
+``no_feature``. If *S* contains more than one feature, ``htseq-count`` behaves
+differently based on the ``--nonunique`` option:
 
-The following figure illustrates the effect of these three modes:
+- ``--nonunique none`` (default): the read (or read pair) is counted as
+  ``ambiguous`` and not counted for any features. Also, if the read (or read
+  pair) aligns to more than one location in the reference, it is scored as
+  ``alignment_not_unique``.
+- ``--nonunique all``: the read (or read pair) is counted as ``ambiguous`` and
+  is also counted in all features to which it was assigned. Also, if the read
+  (or read pair) aligns to more than one location in the reference, it is
+  scored as ``alignment_not_unique`` and also separately for each location.
+
+Notice that when using ``--nonunique all`` the sum of all counts will not be
+equal to the number of reads (or read pairs), because those with multiple
+alignments or overlaps get scored multiple times.
+
+The following figure illustrates the effect of these three modes and the
+``--nonunique`` option:
 
 .. image:: count_modes.png
 
@@ -224,8 +281,11 @@
 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!
+**Important: The default for strandedness is yes. Be sure to choose the correct value.**
 
+To check which value is correct, select forward and reverse independently. If
+the overall counts drop at one condition then the opposite condition is
+correct, otherwise your data is not stranded.
 
 Output
 ------
@@ -250,38 +310,75 @@
 
 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.
+https://htseq.readthedocs.io/en/release_0.9.1/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
+  -f <format>, --format=<format>
+
+      Format of the input data. Possible values are sam (for text SAM files) and bam (for binary BAM files). Default is sam.
+
+  -r <order>, --order=<order>
+
+      For paired-end data, the alignment have to be sorted either by read name or by alignment position. If your data is not sorted, use the samtools sort function of samtools to sort it. Use this option, with name or pos for <order> to indicate how the input data has been sorted. The default is name.
+
+      If name is indicated, htseq-count expects all the alignments for the reads of a given read pair to appear in adjacent records in the input data. For pos, this is not expected; rather, read alignments whose mate alignment have not yet been seen are kept in a buffer in memory until the mate is found. While, strictly speaking, the latter will also work with unsorted data, sorting ensures that most alignment mates appear close to each other in the data and hence the buffer is much less likely to overflow.
+
+  --max-reads-in-buffer=<number>
+
+      When <alignment_file> is paired end sorted by position, allow only so many reads to stay in memory until the mates are found (raising this number will use more memory). Has no effect for single end or paired end sorted by name. (default: 30000000)
+
+  -s <yes/no/reverse>, --stranded=<yes/no/reverse>
+
+      whether the data is from a strand-specific assay (default: yes)
+
+      For stranded=no, a read is considered overlapping with a feature regardless of whether it is mapped to the same or the opposite strand as the feature. For stranded=yes and single-end reads, the read has to be mapped to the same strand as the feature. For paired-end reads, the first read has to be on the same strand and the second read on the opposite strand. For stranded=reverse, these rules are reversed.
+
+  -a <minaqual>, --a=<minaqual>
+
+      skip all reads with alignment quality lower than the given minimum value (default: 10 — Note: the default used to be 0 until version 0.5.4.)
+
+  -t <feature type>, --type=<feature type>
+
+      feature type (3rd column in GFF file) to be used, all features of other type are ignored (default, suitable for RNA-Seq analysis using an Ensembl GTF file: exon)
+
+  -i <id attribute>, --idattr=<id attribute>
+
+      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 analysis using an Ensembl GTF file, is gene_id.
 
-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.
+  --additional-attr=<id attributes>
+
+      Additional feature attributes, which will be printed as an additional column after the primary attribute column but before the counts column(s). The default is none, a suitable value to get gene names using an Ensembl GTF file is gene_name.
+
+  -m <mode>, --mode=<mode>
+
+      Mode to handle reads overlapping more than one feature. Possible values for <mode> are union, intersection-strict and intersection-nonempty (default: union)
+
+  --nonunique=<nonunique mode>
+
+      Mode to handle reads that align to or are assigned to more than one feature in the overlap <mode> of choice (see -m option). <nonunique mode> are none and all (default: none)
+
+  --secondary-alignments=<mode>
+
+      Mode to handle secondary alignments (SAM flag 0x100). <mode> can be score and ignore (default: score)
+
+  --supplementary-alignments=<mode>
+
+      Mode to handle supplementary/chimeric alignments (SAM flag 0x800). <mode> can be score and ignore (default: score)
+
+  -o <samout>, --samout=<samout>
+
+      write out all SAM alignment records into an output SAM file called <samout>, annotating each line with its assignment to a feature or a special counter (as an optional field with tag ‘XF’)
+
+  -q, --quiet
+
+      suppress progress report and warnings
+
+  -h, --help
+
+      Show a usage summary and exit
+
+.. _FAQ: https://htseq.readthedocs.io/en/release_0.9.1/count.html#frequenctly-asked-questions
+
 ]]>
     </help>
     <citations>
Binary file static/images/count_modes.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/htseq-test_counts_nonunique.tsv	Mon Feb 05 15:04:47 2018 -0500
@@ -0,0 +1,127 @@
+HRA1	0
+YAL001C	3
+YAL002W	2
+YAL003W	31
+YAL004W	0
+YAL005C	31
+YAL007C	8
+YAL008W	0
+YAL009W	0
+YAL010C	0
+YAL011W	1
+YAL012W	6
+YAL013W	1
+YAL014C	0
+YAL015C	1
+YAL016C-A	0
+YAL016C-B	0
+YAL016W	4
+YAL017W	3
+YAL018C	0
+YAL019W	5
+YAL019W-A	0
+YAL020C	0
+YAL021C	1
+YAL022C	0
+YAL023C	7
+YAL024C	0
+YAL025C	3
+YAL026C	4
+YAL026C-A	0
+YAL027W	0
+YAL028W	0
+YAL029C	7
+YAL030W	2
+YAL031C	2
+YAL031W-A	0
+YAL032C	0
+YAL033W	3
+YAL034C	0
+YAL034C-B	0
+YAL034W-A	1
+YAL035W	23
+YAL036C	7
+YAL037C-A	0
+YAL037C-B	0
+YAL037W	0
+YAL038W	105
+YAL039C	3
+YAL040C	5
+YAL041W	3
+YAL042C-A	0
+YAL042W	6
+YAL043C	3
+YAL044C	2
+YAL044W-A	2
+YAL045C	0
+YAL046C	0
+YAL047C	2
+YAL047W-A	0
+YAL048C	0
+YAL049C	1
+YAL051W	1
+YAL053W	4
+YAL054C	0
+YAL055W	0
+YAL056C-A	0
+YAL056W	0
+YAL058W	1
+YAL059C-A	0
+YAL059W	2
+YAL060W	4
+YAL061W	3
+YAL062W	0
+YAL063C	0
+YAL063C-A	0
+YAL064C-A	0
+YAL064W	0
+YAL064W-B	0
+YAL065C	0
+YAL066W	0
+YAL067C	0
+YAL067W-A	0
+YAL068C	0
+YAL068W-A	0
+YAL069W	0
+YAR002C-A	2
+YAR002W	2
+YAR003W	3
+YAR007C	4
+YAR008W	1
+YAR009C	0
+YAR010C	0
+YAR014C	5
+YAR015W	5
+YAR018C	0
+YAR019C	1
+YAR019W-A	0
+YAR020C	0
+YAR023C	0
+YAR027W	2
+YAR028W	0
+YAR029W	0
+YAR030C	0
+YAR031W	0
+YAR033W	0
+YAR035C-A	0
+YAR035W	0
+YAR042W	2
+YAR047C	0
+YAR050W	0
+YAR053W	0
+YAR060C	0
+YAR061W	0
+YAR062W	0
+YAR064W	0
+YAR066W	0
+YAR068W	11
+YAR069C	0
+YAR070C	0
+YAR071W	1
+YAR073W	0
+YAR075W	0
+snR18	1
+tA(UGC)A	0
+tL(CAA)A	0
+tP(UGG)A	0
+tS(AGA)A	0
Binary file test-data/htseq-test_samout.bam has changed