Versions Compared

Key

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

...

Code Block
languagebash
titlepredict.sge
#!/bin/bash
#$ -N deepARG-predict
#$ -pe a16-mpifull 16
#$ -cwd

module load bioinfo/deepARG

deeparg predict --model LS -i ORFs.fa -o test/pred -d $DEEPARGDB --type nucl --min-prob 0.8 --arg-alignment-identity 30 --arg-alignment-evalue 1e-10 --arg-num-alignments-per-entry 1000

...