Versions Compared

Key

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

...

Code Block
languagebash
titleinterproscan.sge
#!/bin/bash
#$ -N test
#$ -cwd
#$ -pe *mpisingle 3

module load bioinfo/interproscan/5.38-76.0
interproscan.sh -cpu $NSLOTS -i /apps/bioinfo/interproscan/5.38-76.0/test_proteins.fasta -f tsv
interproscan.sh -cpu $NSLOTS -i /apps/bioinfo/interproscan/5.38-76.0/test_proteins.fasta -f tsv -dp
interproscan.sh -cpu $NSLOTS -appl Pfam -i /apps/bioinfo/interproscan/5.38-76.0/test_nt_seqs.fasta


Code Block
qsub interproscan.sge

...