Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#!/bin/bash -l
#PBS -N R_install
#PBS -l select=1:ncpus=1:mem=4gb
#PBS -l walltime=2:00:00
#PBS -m abe

cd $PBS_O_WORKDIR

module purge
module load r/4.2.2-foss-2022b
mkdir cd-p $PBS_O_WORKDIR
mkdir -p /r_library
export R_LIBS_USER='$PBS_O_WORKDIR/r_library'
echo $R_LIBS_USER

Rscript install.R

Run this on the HPC:

...