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

BLAST (Basic Local Alignment Search Tool) finds regions of similarity between biological sequences. The program compares nucleotide or protein sequences to sequence databases and calculates the statistical significance.

More information is available on the Blast web site: https://blast.ncbi.nlm.nih.gov/Blast.cgi

How to use


First you need to decide on the version of the software you want to use. Type

Code Block
themeFadeToGrey
$ module avail blast

to check what versions are available. We normally recommend using the latest version available. For example, to load the version 2.11,0 use

Code Block
themeFadeToGrey
$ module load blast/2.11.0

For more details on using modules see our software applications guide.

An example PBS script:

Code Block
themeFadeToGrey
#!/bin/bash
 
#PBS -q normal
#PBS -l ncpus=4
#PBS -l mem=16GB
#PBS -l walltime=02:00:00
#PBS -l wd
 
# Must include `#PBS -l storage=scratch/ab12+gdata/yz98` if the job
# needs access to `/scratch/ab12/` and `/g/data/yz98/`
 
# Load module, always specify version number.
module load blast/2.11.0
 
blastx -query /path/to/seq/fasta -db /path/to/DB -evalue 1e-6 -num_threads 4 -max_target_seqs 10000
Warning
Multithreading in blast v2.10.0 is broken, v2.11.0 runs well.


Authors: Javed Shaikh, Mohsin Ali, Yue Sun, Andrey Bliznyuk