moduleload {systemPipeR}R Documentation

Interface to module system

Description

Functions to list and load software from a module system in R. The functions are the equivalent of module avail and module load on the Linux command-line, respectively.

Usage

moduleload(module_name)
moduleUnload(module_name)
modulelist()
moduleAvail()
moduleClear()
moduleInit()

Arguments

module_name

Name of software to load character vector.

Author(s)

Tyler Backman and Thomas Girke

Examples

## Not run: 
## List all software from module system
modulelist()

## Examples for loading software from module system
moduleload(module="bowtie2/2.0.6", envir="PATH")
moduleload(module="python", envir=c("PATH", "LD_LIBRARY_PATH", "PYTHONPATH"))

## End(Not run)

[Package systemPipeR version 1.24.6 Index]