All HPC facilities, worldwide, provide software in a very different way to personal and corporate computing platforms. JCU HPC uses environment modules to deliver multiple versions of software to researchers using our multi-user HPC cluster. This approach is widely used for the following reasons:
In 2021, HPC staff commenced a major project to replace all existing software (including conda environments) with containerized versions of the same software and/or environments. The container delivery platform being using is Apptainer (singularity) which mirrors the approach that all other HPC facilities are using or moving toward using. The move to containerized HPC is being driven by a requirement for all research to be done in a reproducible way.
For security reasons, all software installed as part of the OS must be kept up to date.
Software installed using the traditional, compile from source, method comes with serious consequences to reproducible research.
Operating system and software providers release software with a defined lifecycle.
In many cases, the above points mostly relate to risk of work not being reproducible. Moving to containerized delivery of software provides a guarantee of reproducibility, assuming that the container platform continues to be available and supported. |
You will need to replace any occurrence of <software-name>
and/or <version> below with an appropriate name/value.
module avail |
module avail <software-name> # A partial match will be sufficient. |
module help <software-name> |
module show <software-name>/<version> # For apptainer based software, you will see aliases that have been created for ease of use. |
module list |
You will need to replace any occurrence of <software-name>
and/or <version> below with an appropriate name/value.
module load <software-name>/<version> # Omission of "/<version>" will result in the default version (changes over time) being loaded. # Note that the default version may be the "safest", rather than the latest, version. |
module switch <software-name>/<version> |
module unload <software-name> # The specification of a version shouldn't be required. |
module purge |
Most module files, when loaded, will set an environment variable <SOFTWARE>_HOME
which holds the installation home for the software. For example, try
module load vcftools echo $VCFTOOLS_HOME ls -lR $VCFTOOLS_HOME |
The most common environment variable modified by the loading of an environment variable is PATH
. This has been done for convenience.