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 |
Define what happens based on action
module(action_type, module_name = "")
module(action_type, module_name = "")
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. |
## 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)
## 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
myEnvModules
myEnvModules
An object of class RenvModule
of length 1.