Page MenuHomec4science

module.run
No OneTemporary

File Metadata

Created
Sun, Jun 9, 04:53

module.run

#!/bin/bash
#SBATCH --nodes 1
#SBATCH --ntasks 1
#SBATCH --cpus-per-task 1
#SBATCH --mem 2048
#SBATCH --time 00:05:00
#SBATCH --account rfabbret_cours_hpc
#SBATCH --reservation HPC-course
# Clean up the environment and load some software
module purge
module load HPC/Software
module load R/latest
# Check whave version of R we run the analysis with
echo "Job Number $SLURM_JOB_ID is running with `R --version | head -1`"
# Now start our analysis
# R ...

Event Timeline