Installing software

Installing software or pipeline can be a difficult task to accomplish. Therefore we suggest all users to make the programs they installed available to all users whenever it is possible. In general programs/pipelines that should be available to all are installed in /tools folder. On this page will be described how to make tools available on our system for installation procedure of your specific program please refer to the instructions coming with that program.

Who can install software

In principle any users except students and guests should be able to install bioinfo tools in folders made for that purpose.

Install R packages

module load R
R

.libPaths()
#[1] "/tools/R_libs/3.6.1"                            
#[2] "/opt/ohpc/pub/libs/gnu8/R/3.6.1/lib64/R/library"

.packages(all.available=T)

install.packages(c("<package1>", "<package2>,..."), dep=T)

library(BiocManager)
BiocManager::install(c("<package1>", "<package2>",...))

Read more about R and bioconductor:

Install tools (last edited 2020-04-24 07:21:07 by fhoma)