Commit 4c8bdde0 authored by Illia Kolesnik's avatar Illia Kolesnik
Browse files

Updated seq submission

parent 044f2d47
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
#!/bin/bash

#SBATCH --job-name=seq-grid     # job name (default is the name of this file)
#SBATCH --account=OPEN-28-65
#SBATCH --job-name=seq          # job name (default is the name of this file)
#SBATCH --output=log.%x.job_%j  # file name for stdout/stderr (%x will be replaced with the job name, %j with the jobid)
#SBATCH --time=6-0:00:00        # maximum wall time allocated for the job (D-H:MM:SS)
#SBATCH --time=24:00:00         # maximum wall time allocated for the job (D-H:MM:SS)

#SBATCH --partition=gpXY        # partition/queue name for the job submission
#SBATCH --partition=qcpu        # partition/queue name for the job submission
#SBATCH --ntasks=1              # number of tasks/processes

# how much RAM per node can be allocated for the job (default: 2G, max: 60G)
#SBATCH --mem=10G
#SBATCH --mem=250G

# Stop on error
set -e

module load foss

# start the job in the directory it was submitted from
cd "$SLURM_SUBMIT_DIR"

# Stop on error
set -e

USAGE="Usage: ./script <bin> <instances_dir> <result_csv>"
if [ $# -ne 3 ]; then