#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=raxmlHPC # job name #SBATCH --time=1-00:00:00 # max job run time #SBATCH --nodes=5 # total number of nodes for job #SBATCH --ntasks-per-node=24 # tasks (commands) per compute node #SBATCH --cpus-per-task=2 # CPUs (threads) per command #SBATCH --mem=360G # total memory #SBATCH --output=stdout.%x.%j # save stdout to file #SBATCH --error=stderr.%x.%j # save stderr to file module load iccifort/2019.5.281 impi/2018.5.288 RAxML/8.2.12-hybrid-avx2 <