Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • c1_r1, c1_r2, c1_r3 from the first biological condition
  • c2_r1, c2_r2, and c2_r3 from the second biological condition

Introduction

HISAT2 is a fast  transcriptomethe fastest transcriptome-aware mapper that currently available.  It is part of the new tuxedo suite of tools and it will map RNA-Seq data to the genome as well as identify splice junctions. HISAT2, like BWA and bowtie, uses burrows-wheeler transform (BWT) to compress genomes such that they require very little memory to store. Like BWA and bowtie, it builds indexes out of the transformed genomes using a special scheme called FM indexing. This makes it possible to search through these genomes rapidly. Unlike BWA and bowtie, HISAT2 builds a whole genome global index and tens of thousands of small local indexes (both using the BWT/FM methods) to make spliced alignment possible.to make spliced alignment possible. Despite the many indexes, because it uses BWT and FM indexing, the indexes take a very small memory footprint (~5gb RAM for the whole human genome), making it possible to run hisat2 on a standard laptop.

With the human genome, for example, hisat2 builds one global index and 48000 local indexes (each 64000bp long).  The size of the local indexes is large enough that 90% of introns will fall into a single local index (on average, human introns are >6kb long). 

First, the longer part of a read that maps to the genome contiguously (called the anchor) is mapped using the global index. Once this is mapped, this helps to to identify the relevant local index.  HISAT can usually align the remaining part of the read (small anchor) within a single local index rather than searching across the whole genome.


Image Added

 

 

Image Added

 

 

Run HISAT2

First, make sure you are in the right directory for this exercise.

...