⇤ ← Revision 1 as of 2020-04-24 07:21:07
Size: 1818
Comment: R packages
|
Size: 2178
Comment: Add nav menu
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<Anchor(top|scroll to the top of the page)>> | |
Line 2: | Line 3: |
<<TableOfContents(2)>> | |
Line 3: | Line 5: |
Installing software or pipeline can be a difficult task to accomplish. | Installing software or pipeline can be a difficult task to accomplish. |
Line 25: | Line 27: |
#[1] "/tools/R_libs/3.6.1" | #[1] "/tools/R_libs/3.6.1" |
Line 52: | Line 54: |
||<tablestyle="width: 99%;" style="border: none; font-weight: bold; font-size: 20px;"> <<[[Check jobs]] ||<style="text-align: center; width: 33%; border: none; font-weight: bold; font-size: 20px;"> ^[[#top]] ||<style="border: none; width: 33%; text-align: right; font-weight: bold; font-size: 20px;"> FINISH>> || |
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
- Packages for R are installed within R, so to install R packages, you will first need to load the module R and run R.
module load R R
Use the following R command to print where are the R libraries. Users libraries are installed in /tools/R_libs/3.6.1
.libPaths() #[1] "/tools/R_libs/3.6.1" #[2] "/opt/ohpc/pub/libs/gnu8/R/3.6.1/lib64/R/library"
- To see all available/installed packages
.packages(all.available=T)
To install R packages and dependancies. Installation will automatically be done in a /tools/R_libs/3.6.1 if permissions allows it. If not you could be asked to create a private one.
install.packages(c("<package1>", "<package2>,..."), dep=T)
To install BIOINFORMATICS R PACKAGES, we recommend to use "bioconductor" channels.
library(BiocManager) BiocManager::install(c("<package1>", "<package2>",...))
Read more about R and bioconductor:
^#top |
FINISH>> |