Skip to content

Installing R packages on Bianca

Read through the content of R packages on Bianca in our documentation
Can't you find it?

https://docs.uppmax.uu.se/software/r_packages_bianca/

Principle

  • Download package source file (tar.gz)
  • transfer it to Bianca
  • install it in an R session (R_packages loaded to be using the installations methods)
    • Key line: install.packages("<source file here>", repos = NULL, type = "source")

Exercise

Example with Dowser 2.0.0

wget https://cran.r-project.org/src/contrib/Archive/dowser/dowser_2.0.0.tar.gz
  • In Bianca session (right project!) and in wharf folder load R_packages and start R session

  • Ex: cd /proj/nobackup/sens2025560/wharf/bjornc/bjornc-sens2025560

ml R_packages/4.3.1
R

In R session:

install.packages("dowser_2.0.0.tar.gz", repos = NULL, type="source")
  • Type yes when asked about using a personal library.
Output
Warning in install.packages("dowser_2.0.0.tar.gz", repos = NULL, type = "source") :
  'lib = "/sw/apps/R/4.3.1/rackham/lib64/R/library"' is not writable
Would you like to use a personal library instead? (yes/No/cancel) yes
Would you like to create a personal library
/castor/project/home/bjornc/R/x86_64-pc-linux-gnu-library/4.3to install packages into? (yes/No/cancel) yes
Installing package into /castor/project/home/bjornc/R/x86_64-pc-linux-gnu-library/4.3(as lib is unspecified)
Warning in untar2(tarfile, files, list, exdir, restore_times) :
  skipping pax global extended headers
* installing *source* package dowser ...
** using staged installation
** R
** data
*** moving datasets to lazyload DB
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (dowser)
>
  • Test it!
> library(dowser)
Loading required package: ggplot2
Registered S3 methods overwritten by 'treeio':
  method              from
  MRCA.phylo          tidytree
  MRCA.treedata       tidytree
  Nnode.treedata      tidytree
...

- Check the used version (look for the dowser ino)

```R
sessionInfo()
How may that look like?
sessionInfo()
R version 4.3.1 (2023-06-16)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: CentOS Linux 7 (Core)

Matrix products: default
BLAS:   /sw/apps/R/4.3.1/rackham/lib64/R/lib/libRblas.so
LAPACK: /sw/apps/R/4.3.1/rackham/lib64/R/lib/libRlapack.so;  LAPACK version 3.11.0

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C
 [9] LC_ADDRESS=C               LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C

time zone: Europe/Stockholm
tzcode source: system (glibc)

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base

other attached packages:
[1] dowser_2.0.0  ggplot2_3.4.3

loaded via a namespace (and not attached):
 [1] ade4_1.7-22                 tidyselect_1.2.0
 [3] dplyr_1.1.3                 Biostrings_2.68.1
 [5] bitops_1.0-7                fastmap_1.1.1
 [7] lazyeval_0.2.2              RCurl_1.98-1.12
 [9] GenomicAlignments_1.36.0    digest_0.6.33
[11] phylotate_1.3               lifecycle_1.0.3
[13] alakazam_1.3.0              tidytree_0.4.5
[15] magrittr_2.0.3              compiler_4.3.1
[17] rlang_1.1.1                 progress_1.2.2
[19] tools_4.3.1                 igraph_1.5.1
[21] utf8_1.2.3                  yaml_2.3.7
[23] phangorn_2.11.1             prettyunits_1.2.0
[25] S4Arrays_1.0.6              DelayedArray_0.26.7
[27] KernSmooth_2.23-21          aplot_0.2.1
[29] abind_1.4-5                 BiocParallel_1.34.2
[31] withr_2.5.1                 purrr_1.0.2
[33] BiocGenerics_0.46.0         grid_4.3.1
[35] stats4_4.3.1                shazam_1.2.0
[37] fansi_1.0.4                 colorspace_2.1-0
[39] iterators_1.0.14            scales_1.2.1
[41] MASS_7.3-60                 SummarizedExperiment_1.30.2
[43] cli_3.6.1                   crayon_1.5.2
[45] treeio_1.24.3               generics_0.1.3
[47] ggtree_3.8.2                tzdb_0.4.0
[49] ape_5.7-1                   cachem_1.0.8
[51] stringr_1.5.0               zlibbioc_1.46.0
[53] parallel_4.3.1              ggplotify_0.1.2
[55] XVector_0.40.0              matrixStats_1.0.0
[57] yulab.utils_0.1.0           vctrs_0.6.3
[59] Matrix_1.6-1.1              jsonlite_1.8.7
[61] gridGraphics_0.5-1          IRanges_2.34.1
[63] hms_1.1.3                   patchwork_1.1.3
[65] S4Vectors_0.38.2            seqinr_4.2-30
[67] foreach_1.5.2               diptest_0.76-0
[69] tidyr_1.3.0                 glue_1.6.2
[71] codetools_0.2-19            stringi_1.7.12
[73] gtable_0.3.4                GenomeInfoDb_1.36.3
[75] quadprog_1.5-8              GenomicRanges_1.52.0
[77] munsell_0.5.0               tibble_3.2.1
[79] pillar_1.9.0                GenomeInfoDbData_1.2.10
[81] R6_2.5.1                    airr_1.5.0
[83] doParallel_1.0.17           lattice_0.21-8
[85] Biobase_2.60.0              markdown_1.9
[87] readr_2.1.4                 Rsamtools_2.16.0
[89] memoise_2.0.1               ggfun_0.1.3
[91] Rcpp_1.0.11                 fastmatch_1.1-4
[93] gridExtra_2.3               nlme_3.1-162
[95] fs_1.6.3                    MatrixGenerics_1.12.3
[97] pkgconfig_2.0.3
>
  • You should see: dowser_2.0.0
  • This confirms that you are using version 2.0.0!
  • You can now remove the source file from the wharf folder.