This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:available-applications [11.12.2020 13:30] Juha Kekäläinen |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | #Available applications on BIC servers | ||
- | |||
- | Most of the preinstalled applications on the computing servers are installed as [environment modules](https:// | ||
- | |||
- | To use application you first must activate it. This will modify the [environment variables](https:// | ||
- | |||
- | **To find the available modules you will need to use the following command in terminal** | ||
- | |||
- | module avail | ||
- | |||
- | This will give you an list of all the available modules. | ||
- | For example list of available applications on SAMPO cluster (13.01.2020): | ||
- | |||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | |||
- | ** You can search for an package with ' | ||
- | |||
- | module spider homer | ||
- | |||
- | ** To activate the application you can use the following command** | ||
- | |||
- | module load bowtie2 | ||
- | |||
- | Note: You can activate multiple applications **but** you cannot activate multiple versions of the same application. | ||
- | |||
- | |||
- | ** If you wish to Load some specific version number of the application ** | ||
- | |||
- | module load bowtie2/ | ||
- | |||
- | |||
- | ** You can also deactivate module** | ||
- | |||
- | module unload bowtie2 | ||
- | |||
- | |||
- | ** Save list of loaded modules for next login** | ||
- | |||
- | module save | ||
- | |||
- | |||
- | ** Restore list of saved modules** | ||
- | |||
- | module restore | ||
- | |||
- | Note: If you add this line to your $HOME/ | ||
- | |||
- | ** You can quickly go to the application installation path** | ||
- | |||
- | |||
- | module load bowtie2 | ||
- | cd $BOWTIE2_ROOT | ||
- | | ||
- | |||