User Tools

Site Tools


r-software

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
r-software [2015/07/28 13:43] joguyar-software [2023/07/12 06:39] (current) aorth
Line 4: Line 4:
 ===== Information ===== ===== Information =====
  
-  * Latest version: 3.2.1+  * Version4.(4.3.1)
   * Added: February, 2015   * Added: February, 2015
-  * Link: http://www.r-project.org/+  * Updated: July, 2023 
 +  * Link: https://www.r-project.org/
  
 ===== Usage ===== ===== Usage =====
  
-=== See versions of R which are available === +See which versions are available: 
-<code>module avail R</code>+<code>module avail R</code> 
 + 
 +Load one version into your environment and run it: 
 +<code>$ module load R/4.3 
 +$ R</code> 
 + 
 +Use ''installed.packages()'' to check the list of packages installed in the ILRI environment by default. Here is a good resource on [[https://www.osc.edu/resources/available_software/software_list/r#6|installing R packages into user libraries]] if you need other packages.
  
 ===== Installation ====== ===== Installation ======
-Notes from the sysadmin during installation:+Notes from the sysadmin during installation
 + 
 +First, compile the main R application:
  
 <code>$ cd /tmp <code>$ cd /tmp
-$ wget http://cran.uni-muenster.de/src/base/R-3/R-3.2.1.tar.gz +$ wget https://cran.r-project.org/src/base/R-4/R-4.3.1.tar.gz 
-$ tar xf R-3.2.1.tar.gz  +$ tar xf R-4.3.1.tar.gz 
-$ cd R-3.2.1 +$ cd R-4.3.1 
-scl enable devtoolset-2 bash +sudo dnf install tcl-devel tk-devel 
-CC=clang ./configure --enable-R-shlib --prefix=/export/apps/R/3.2.1 +$ ./configure --enable-R-shlib --prefix=/export/apps/R/4.
-$ make -j4 +chrt -b 0 make -j4 
-$ sudo mkdir -p /export/apps/R/3.2.1 +$ sudo mv /export/apps/R/4./export/apps/R/4.3.bak 
-$ sudo chown aorth:aorth /export/apps/R/3.2.1 +$ sudo mkdir /export/apps/R/4.3 
-$ sudo chown root:root /export/apps/R/3.2.1</code>+$ sudo chown aorth:aorth /export/apps/R/4.3 
 +$ make install</code> 
 + 
 +Then install some common libraries used by our users because some of them are quite complicated, and installing them globally saves tens of thousands of header files and libraries being installed into user libraries anyways: 
 + 
 +<code>$ /export/apps/R/4.3/bin/R 
 +# > Sys.setenv(MAKEFLAGS = "-j2") # didn't try 
 +> options(Ncpus = 4) # This does 4 parallel package installs 
 +> install.packages('sf', repo='https://cloud.r-project.org'
 +> install.packages("hierfstat", repos="https://cran.r-project.org"
 +> install.packages("adegenet", repos="https://cran.r-project.org"
 +> install.packages("BiocManager", repos="https://cran.r-project.org"
 +> install.packages("poppr", repos="https://cran.r-project.org"
 +> install.packages("vcfR", repos="https://cran.r-project.org"
 +> install.packages("devtools", repos="https://cran.r-project.org"
 +> library(devtools) 
 +> install_github("HenrikBengtsson/TopDom"
 +> install_github("lucidif/HiCeekR", repos=BiocManager::repositories()) 
 +> q() 
 +$ sudo chown -R root:root /export/apps/R/4.3</code>
r-software.txt · Last modified: 2023/07/12 06:39 by aorth