Files
MX_Pmodule/MX/alphafold/bin/submit_merlin.sh
Spencer Bliven 5233ffd6e6 Release Alphafold 2.0.1
- Improves the build system to install the submission scripts in bin
- Add README
2021-10-08 20:57:18 +02:00

24 lines
611 B
Bash
Executable File

#!/bin/bash
#SBATCH -p gpu
#SBATCH -J alphafold
#SBATCH -M gmerlin6
#SBATCH --gpus=1
#SBATCH -n 1
#SBATCH -c 10
# Alphafold submission script for the merlin cluster
# Usage: sbatch [slurm_opts] $ALPHAFOLD_DIR/bin/submit_merlin.sh fasta_file [max_template_date]
#
# Output will be in the same directory as the fasta_file.
# Slurm logs will be in the current directory.
#
# 2021-08-09 Spencer Bliven, D.Ozerov
#
export ALPHAFOLD_DATA=/data/project/bio/shared/alphafold
module purge
module use MX unstable
module load alphafold/ALPHAFOLD_VERSION
exec "${ALPHAFOLD_DIR:?Error loading module}/bin/submit.sh" "$@"