Skip to content
Snippets Groups Projects
Commit e7ee2e24 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix

parent 1781d896
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#BSUB -J MHCf # Job name
#BSUB -P acc_nkcancer # allocation account or Unix group
#BSUB -q premium # queue
#BSUB -R span[hosts=1] # one node
#BSUB -n 1 # number of compute cores
#BSUB -W 40:00 # walltime in HH:MM
#BSUB -R rusage[mem=45000] # mb memory requested
#BSUB -o %J.stdout # output log (%J : JobID)
#BSUB -eo %J.stderr # error log
#BSUB -L /bin/bash # Initialize the execution environment
#
set -e
set -x
echo "Subsequent stderr output redirected to stdout" >&2
exec 2>&1
export TMPDIR=/local/JOBS/mhcflurry
export PATH=$HOME/.conda/envs/py36b/bin/:$PATH
export PYTHONUNBUFFERED=1
export KMP_SETTINGS=1
free -m
module list
env
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment