Package 'RenvModule'

Title: Interface to Allow Full Use of the Environment Modules System for Unix
Description: Provides environment modules functionality, which enables use of the Environment Modules system (<http://modules.sourceforge.net/>) from within the R environment. By default the user's login shell environment (ie. "bash -l") will be used to initialize the current session. The module function can also; load or unload specific software, list all the loaded software within the current session, and list all the applications available for loading from the module system. Lastly, the module function can remove all loaded software from the current session.
Authors: Jordan Hayes
Maintainer: Jordan Hayes <[email protected]>
License: GPL-2
Version: 1.1
Built: 2025-01-19 05:00:21 UTC
Source: https://github.com/jdhayes/renvmodule

Help Index


Define what happens based on action

Description

Define what happens based on action

Usage

module(action_type, module_name = "")

Arguments

action_type

Name of the action to be executed as character vector. The following switches are accepted: “avail”, “list”, “init”, “load”, “unload”, and “clear”.

module_name

Name of software to load as character vector.

Examples

## Not run: 
module("load","tophat")
module("load","tophat/2.1.1")
module("list")
module("avail")
module("init")
module("unload", "tophat")
module("unload", "tophat/2.1.1")
module("clear")

## End(Not run)

Global instance of RenvModule

Description

Global instance of RenvModule

Usage

myEnvModules

Format

An object of class RenvModule of length 1.


A Reference Class to contain method.

Description

A Reference Class to contain method.