Difference between revisions of "Software resources"
From Centre for Bioinformatics and Computational Biology
(Created page with "* Software is mainly set up using the [http://www.admin-magazine.com/HPC/Articles/Environment-Modules environment modules] system * To get a list of available software, use: <...") |
|||
| Line 1: | Line 1: | ||
* Software is mainly set up using the [http://www.admin-magazine.com/HPC/Articles/Environment-Modules environment modules] system | * Software is mainly set up using the [http://www.admin-magazine.com/HPC/Articles/Environment-Modules environment modules] system | ||
* To get a list of available software, use: | * To get a list of available software, use: | ||
| − | < | + | <source lang="c"> |
| + | > module avail | ||
| + | </source> | ||
| + | * To get help on a software module use: | ||
| + | <source lang="c"> | ||
| + | > module help module_name | ||
| + | </source> | ||
| + | * To load a module's environment: | ||
| + | <source lang="c"> | ||
| + | > module load module_name | ||
| + | </source> | ||
| + | * To unload a module's environment: | ||
| + | <source lang="c"> | ||
| + | > module unload module_name | ||
| + | </source> | ||
Revision as of 16:10, 8 March 2018
- Software is mainly set up using the environment modules system
- To get a list of available software, use:
> module avail- To get help on a software module use:
> module help module_name- To load a module's environment:
> module load module_name- To unload a module's environment:
> module unload module_name