#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=metaphlan3 # job name #SBATCH --time=1-00:00:00 # max job run time dd-hh:mm:ss #SBATCH --ntasks-per-node=1 # tasks (commands) per compute node #SBATCH --cpus-per-task=24 # CPUs (threads) per command #SBATCH --mem=180G # total memory per node #SBATCH --output=stdout.%x.%j # save stdout to file #SBATCH --error=stderr.%x.%j # save stderr to file module load GCC/10.2.0 OpenMPI/4.0.5 MetaPhlAn/3.0.14-Python-3.8.6 <