Displaying 1 result from an estimated 1 matches for "job1_lollo".
2010 Oct 11
1
running R script on linux server
Hi R-users,
I have a problem running my R code on a Linux cluster. What I did was
write a .pbs file to instruct the cluster on what to do and how:
#!/bin/sh
#PBS -m ae
#PBS -M uqlcatta@uq.edu.au
#PBS -A uq-CSER
#PBS -N job1_lollo
#PBS -l select=1:ncpus=1:NodeType=fast:mem=8GB
#PBS -l walltime=999:00:00
cd $PBS_O_WORKDIR
source /usr/share/modules/init/bash
module load R/2.11.1
/home/uqlcatta/script/diag.sh
The .pbs file calls a .sh file, which is located on my home directory on
the cluster, and which...