Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColor#21618C
bgColor#F6F7F7
titleColor#17202A
borderWidth1
titleBGColor#FFB96A
borderStyleridge
titleOverview

Burrows-Wheeler Alignment Tool is a software package for mapping low-divergent sequences against a large reference genome, such as the human genome.

It consists of three algorithms: BWA-backtrack, BWA-SW and BWA-MEM.

The first algorithm is designed for Illumina sequence reads up to 100bp, while the rest two for longer sequences ranged from 70bp to 1Mbp. BWA-MEM and BWA-SW share similar features such as long-read support and split alignment, but BWA-MEM, which is the latest, is generally recommended for high-quality queries as it is faster and more accurate. BWA-MEM also has better performance than BWA-backtrack for 70-100bp Illumina reads.

How to use


Check availability and versions of BWA installed:

Code Block
themeFadeToGrey
$ module avail bwa

We recommend using the latest version. Always load a module for specific version. Example:

Code Block
themeFadeToGrey
$ module load bwa/0.7.17

Loading a module adds location of binaries, libraries, include files, manpages, etc. to respective environment variables PATH, LIBRARY_PATH, LD_LIBRARY_PATH, MANPATH, etc. For more details see our software applications guide.

To run BWA do something like

Code Block
themeFadeToGrey
$ bwa index ref.fa

For documentation look at http://bio-bwa.sourceforge.net/bwa.shtml

Authors: Javed Shaikh, Mohsin Ali