User Tools

Site Tools


support:hpc:software:bwa

BWA

BWA BWA stands for Burrows-Wheeler Aligner. BWA is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome.

On the 24 GB memory nodes load BWA by typing the following:

$ module load gcc bwa 

On the high memory nodes BWA is at /usr/bin/bwa installed from Ubuntu.

Running

Here is an example submit script.

#!/bin/bash
#$ -cwd
### Job name:
#$ -N MyJobName
#$ -S /bin/bash
$ module load gcc bwa

bwa index -a bwtsw tttF3.csfasta
bwa aln tttF3.csfasta ttt.fastq > ttt.sai
bwa samse tttF3.csfasta ttt.sai ttt.fastq > ttt.sam

BWA Manual

support/hpc/software/bwa.txt · Last modified: 2012/03/09 12:38 by tlknight