R
- R environment modules
- Installing additional R packages from CRAN
- Bioconductor packages
- Running R in batch mode
- Parallelism in R
R environment modules
Use module spider R
to query the available R builds, and then load using (for example):
[user@login01(sulis) ~]$ module load GCC/13.2.0 OpenMPI/4.1.6 R/4.3.3
The example above will import version 4.3.3 of R into your environment. This can be verified with:
[user@login01(sulis) ~]$ R --version
R version 4.3.3 (2024-02-29) -- "Angel Food Cake"
Copyright (C) 2024 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information about these matters see
https://www.gnu.org/licenses/.
The R environment modules are preconfigured with a large number of installed packages (MCMC, ggplot2, Tidyverse etc). To query the full list of installed packages:
[user@login01(sulis) ~]$ R -e 'installed.packages()'
Many of these packages involve use of Python libraries, and hence loading an R environment module automatically loads a compatible version of Python.
[user@login01(sulis) ~]$ module purge
[user@login01(sulis) ~]$ python --version
-bash: python: command not found
[user@login01(sulis) ~]$ module GCC/13.2.0 OpenMPI/4.1.6 R/4.3.3
[user@login01(sulis) ~]$ python --version
Python 3.11.5
Installing additional R packages from CRAN
Before installing additional R packages first check if your requirements are met by the packages already provided by the R environment module you are using as per above.
Installing some R packages can involve long compilations and so should be done within interactive sessions on compute nodes rather than the login node. First request an interactive session on a compute node, e.g. 16 cores for 2 hours.
[user@login01(sulis) ~]$ salloc --account=suxxx-somebudget -N 1 -n 16 --mem-per-cpu=3850 --time=2:00:00
Once the requested resource is available the command prompt will change to indicate that subsequent commands will be executed within on the allocated compute node.
[user@node001(sulis) ~]$
One can then start an interactive R session to install packages.
[user@node001(sulis) R]$ R
R version 4.3.3 (2024-02-29) -- "Angel Food Cake"
Copyright (C) 2024 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>
For example to install the RSpectra package from CRAN, and its necessary dependencies:
> install.packages("RSpectra")
Users do not have the necessary file system permissions to install or update R packages system-wide, and so will be prompted to accept a default user library location in their home directory. This is recommended for most users.
When prompted to select a CRAN mirror from which to download the package, select option 0 to choose a local mirror automatically.
Following the lengthy compilation of all dependencies we can import this newly installed library and run one of the example scripts installed along with it.
> library("RSpectra")
> source(system.file("examples/eigs.R", package="RSpectra"))
Bioconductor packages
The Bioconductor project provides a curated set of R packages for bioinformatics which are often closer to the bleeding-edge version number than those included in the latest R release.
Users who wish to manage their own set of Bioconductor packages from scratch can do so by following the instructions above to install the BiocManager
R package. For example, inside an interactive R session running on a compute node:
> install.packages("BiocManager")
Bioconductor packages can then be installed with only minimal modification to the installation instructions on the Bioconductor website. For example to install the GenomicFeatures
package:
> BiocManager::install("GenomicFeatures")
This will install the requested package. An informational message will be displayed stating that packages installed in the system-wide package library could not be upgraded. This can be ignored. The latest versions will be installed into the default location in your home directory instead.
Use the packageVersion()
function to check which version of a particular package is in use. For example, if using the same R/4.3.3
module as above we can update the broom
package to the version currently used by Bioconductor.
> packageVersion("broom")
[1] '0.7.10'
> BiocManager::install("broom")
packageVersion("broom")
[1] '0.7.12'
Running R in batch mode
As above, R can be used inside interactive sessions by requesting an appropriate session on a compute node using salloc
. This method is primarily appropriate for debugging/testing of R scripts and installing packages. Long running computational workloads should be submitted to the batch system using sbatch
to run when the requested resources become available.
R has excellent support for running scripts in batch mode. An example SLURM job submission script for a single process R calculation is shown below.
Rserial.slurm
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=1
#SBATCH --mem-per-cpu=3850
#SBATCH --time=08:00:00
#SBATCH --account=suxxx-somebudget
module purge
module load GCC/13.2.0 OpenMPI/4.1.6 R/4.3.3
srun R CMD BATCH "--args <my_args>" my_script.R
Where <my_args>
should be replace with any command line arguments read by the script my_script.R
via use of the R function commandArgs(trailingOnly = TRUE)
. On execution, output normally printed to the console will be written to the file my_script.Rout
and any plots generated by the script will be combined into Rplots.pdf
.
Using command line arguments to pass input into R scripts can be useful when constructing large parallel jobs which consist of a single R script run for many different inputs, for example using job arrays or creating bash functions which launch R scripts for use with GNU Parallel.
Parallelism in R
Parallelism can be implemented within R scripts to accelerate computation. Two methods are:
-
Single node parallelism using
mclapply
from theparallel
package, or using parallelforeach
from thedoParallel
package. See the Single node jobs for an example job submission script usingmclapply
and the doParallel documentation for examples using that method. -
Parallelism which can span multiple nodes by creating a “cluster” object within R that can be used by functions such as
parLapply
. Within a SLURM environment, the most convenient way to create this is via an MPI cluster type. An example job submission script is given on the MPI jobs page.
Many R calculations will use packages that implement these or similar methods of parallelism within functions, such that parallelism is “hidden” from the end user. Users are encouraged to consult the documentation for the packages they use and seek help from the appropriate support contact in constructing an appropriate job submission script.