...
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 | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
#$ -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 . |
...