Galaxy | Tool Preview

TopHat for Illumina (version 1.5.0)
Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33
Built-ins genomes were created using default options
If your genome of interest is not listed, contact the Galaxy team
Use the Full parameter list to change default settings.

TopHat Overview

TopHat is a fast splice junction mapper for RNA-Seq reads. It aligns RNA-Seq reads to mammalian-sized genomes using the ultra high-throughput short read aligner Bowtie, and then analyzes the mapping results to identify splice junctions between exons.


Know what you are doing

There is no such thing (yet) as an automated gearshift in splice junction identification. It is all like stick-shift driving in San Francisco. In other words, running this tool with default parameters will probably not give you meaningful results. A way to deal with this is to understand the parameters by carefully reading the documentation and experimenting. Fortunately, Galaxy makes experimenting easy.


Input formats

TopHat accepts files in Sanger FASTQ format. Use the FASTQ Groomer to prepare your files.


Outputs

TopHat produces two output files:

Two other possible outputs, depending on the options you choose, are insertions and deletions, both of which are in BED format.


TopHat settings

All of the options have a default value. You can change any of them. Some of the options in TopHat have been implemented here.


TopHat parameter list

This is a list of implemented TopHat options:

-r                                This is the expected (mean) inner distance between mate pairs. For, example, for paired end runs with fragments
                                  selected at 300bp, where each end is 50bp, you should set -r to be 200. There is no default, and this parameter
                                  is required for paired end runs.
--mate-std-dev INT                The standard deviation for the distribution on inner distances between mate pairs. The default is 20bp.
-a/--min-anchor-length INT        The "anchor length". TopHat will report junctions spanned by reads with at least this many bases on each side of the junction. Note that individual spliced
                                  alignments may span a junction with fewer than this many bases on one side. However, every junction involved in spliced alignments is supported by at least one
                                  read with this many bases on each side. This must be at least 3 and the default is 8.
-m/--splice-mismatches INT        The maximum number of mismatches that may appear in the "anchor" region of a spliced alignment. The default is 0.
-i/--min-intron-length INT        The minimum intron length. TopHat will ignore donor/acceptor pairs closer than this many bases apart. The default is 70.
-I/--max-intron-length INT        The maximum intron length. When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read. The default is 500000.
-g/--max-multihits INT            Instructs TopHat to allow up to this many alignments to the reference for a given read, and suppresses all alignments for reads with more than this many
                                  alignments. The default is 40.
-G/--GTF [GTF 2.2 file]           Supply TopHat with a list of gene model annotations. TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping.
-j/--raw-juncs [juncs file]       Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-], left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive.
-no-novel-juncs                   Only look for junctions indicated in the supplied GFF file. (ignored without -G)
--no-closure-search               Disables the mate pair closure-based search for junctions. Currently, has no effect - closure search is off by default.
--closure-search                  Enables the mate pair closure-based search for junctions. Closure-based search should only be used when the expected inner distance between mates is small (about or less than 50bp)
--no-coverage-search              Disables the coverage based search for junctions.
--coverage-search                 Enables the coverage based search for junctions. Use when coverage search is disabled by default (such as for reads 75bp or longer), for maximum sensitivity.
--microexon-search                With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer.
--butterfly-search                TopHat will use a slower but potentially more sensitive algorithm to find junctions in addition to its standard search. Consider using this if you expect that your experiment produced a lot of reads from pre-mRNA, that fall within the introns of your transcripts.
--segment-mismatches              Read segments are mapped independently, allowing up to this many mismatches in each segment alignment. The default is 2.
--segment-length                  Each read is cut up into segments, each at least this long. These segments are mapped independently. The default is 25.
--min-closure-exon                During closure search for paired end reads, exonic hops in the potential splice graph must be at least this long. The default is 50.
--min-closure-intron              The minimum intron length that may be found during closure search. The default is 50.
--max-closure-intron              The maximum intron length that may be found during closure search. The default is 5000.
--min-coverage-intron             The minimum intron length that may be found during coverage search. The default is 50.
--max-coverage-intron             The maximum intron length that may be found during coverage search. The default is 20000.
--min-segment-intron              The minimum intron length that may be found during split-segment search. The default is 50.
--max-segment-intron              The maximum intron length that may be found during split-segment search. The default is 500000.