Versions Compared

Key

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

...

Code Block
languagebash
titleblast.sge
#!/bin/bash
#$ -N blast
#$ -cwd
#$ -pe *mpimpisingle 8
#$ -l exclusive=1

module load bioinfo/NCBI-BLAST++/2.10.0
blastp -db $BLASTDB/nr -query seq.fasta -num_threads $NSLOTS -out seq.out

...