Versions Compared

Key

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

...

Code Block
#SBATCH --nodes=4
#SBATCH --ntasks-per-node=8

On Teton run the following:

Code Block
mpiexec -n 32 maker

With the value after the -n option equaling the number of nodes multiplied by the number of tasks (4 x 8 = 32).

On Beartooth, simply run use:

Code Block
srun maker

On Teton use:

Code Block
mpiexec -n 32 maker

Memory Issues

Memory is always an issue with any form of bioinformatics analysis, and there are no straight forward recommendations we can make. As a researcher you’ll need to track the size of your data sets, the type of analysis, and the resources you’ve requested and how efficiently they’ve been used.

...