Versions Compared

Key

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

...

You could do the same thing on Argon by composing a job script which first loads modules for the version of R module you want, but is otherwise the same; for example:

Code Block
languagebash
module load stack/2020.1
module load Rr/3.6.2_intel-19.0.5.1281
cd path/to/dataSet123
Rscript my/scripts/program.R inputDataSet123.txt > output123.txt

...

Code Block
languagebash
#$ -j y
#$ -o /localscratch

module load stack/2020.1
module load Rr/3.6.2_intel-19.0.5.1281
cd path/to/dataSet123
Rscript my/scripts/program.R inputDataSet123.txt
mv $SGE_STDOUT_PATH .

...