diff --git a/R/v4.1.2/extended/v3.3/Dockerfile b/R/v4.1.2/extended/v3.3/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..3eb17c94e98de5dcafb9791e38a4950aea1e2b89
--- /dev/null
+++ b/R/v4.1.2/extended/v3.3/Dockerfile
@@ -0,0 +1,158 @@
+#########################################################################
+##                                                                     ##
+##     Dockerfile                                                      ##
+##     R extended                                                      ##
+##                                                                     ##
+##     Gael A. Millot                                                  ##
+##     Bioinformatics and Biostatistics Hub                            ##
+##     Computational Biology Department                                ##
+##     Institut Pasteur Paris                                          ##
+##                                                                     ##
+#########################################################################
+
+
+
+# to see the log of the building:
+# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
+# cat building.log
+
+# to export the log file of the image building from the container:
+# sudo docker images
+# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
+# exit
+# sudo docker container ls -a # to get all the active containers
+# sudo docker cp <containerNAMES>:/building.log </host/path/target>
+# sudo docker cp <containerNAMES>:/installed_r_packages.csv </host/path/target>
+
+# base image:
+FROM gmillot/r_v4.1.2_extended_v3.2:gitlab_v9.8
+# Warning: the name must be exactly what is written in the docker images interface, or sudo docker image ls. Here, the image is present locally, or distantly on the gmillot repo. Thus, gmillot/r-base:4.0.5 is correct.
+
+LABEL Gael.Millot=gael.millot@pasteur.fr
+LABEL gitlab.dockerfiles="https://gitlab.pasteur.fr/gmillot/dockerfiles"
+
+
+ENV APT_GET_LINUX_LIB=""
+
+ENV APT_LINUX_LIB=""
+
+ENV CRANREPO="'https://cran.irsn.fr/'"
+
+ENV BIOCONDUCTOR_REPO="'https://cloud.r-project.org'"
+
+ENV RLIB="\
+  'lemon' \
+"
+
+
+# fun.warning.capture from fun_get_message() of the cute package.
+# I used a first loop because I cannot use array in dockerfiles.
+# Inactivate sink(file = tempo, append = TRUE, type = 'message') for debbuging.
+RUN echo "\n\n\n\n================\n\napt-get update\n\n================\n\n\n\n" > building.log \
+  && add-apt-repository -y ppa:cran/poppler \
+  && apt-get update \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt-get install\n\n================\n\n\n\n" >> building.log \
+  && apt-get install -y $APT_GET_LINUX_LIB \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt install\n\n================\n\n\n\n" >> building.log \
+  && apt -y install $APT_LINUX_LIB \
+    | tee -a building.log \
+  && RLIB_LENGTH=0 \
+  && for i2 in $RLIB ; do RLIB_LENGTH=$((RLIB_LENGTH+1)) ; done \
+  && COUNT=0 \
+  && for i2 in $RLIB ; do \
+    COUNT=$((COUNT+1)) ; \
+    Rscript --vanilla -e " \
+      options(warn = 1, verbose = TRUE) ; \
+      tempo <- file('building.log', open = 'a+b') ; \
+      sink(file = tempo, append = TRUE, type = 'message') ; \
+      fun.warning.capture <- function(expr){ \
+        W <- NULL ; \
+        w.handler <- function(w){ \
+          W <<- w ; \
+          invokeRestart('muffleWarning') \
+        } ; \
+        output <- list( \
+          value = suppressMessages(withCallingHandlers(tryCatch(expr, error = function(e){e}), warning = w.handler)),  \
+          warning = W \
+        ) ; \
+        return(if(is.null(output\$warning)){NULL}else{as.character(output\$warning)}) \
+      } ; \
+      message(paste0('\n\n\n\n================\n\nR PACKAGE INSTALLATION ', $COUNT, ' / ', $RLIB_LENGTH, ': ', $i2, '\n\n================\n\n\n\n')) ; \
+      if( ! ($i2 %in% c('ggplot2', 'SARTools'))){ \
+        tempo.warn <- fun.warning.capture(exp = install.packages(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repo = $CRANREPO)) ; \
+        if(is.null(tempo.warn)){ \
+            tempo <- paste0('STANDARD INSTALLATION ATTEMPT FOR ', $i2) ; \
+            message(paste0('\n\n', tempo, '\n\n')) ; \
+            cat(paste0('\n\n\n', tempo, '\n\n\n')) ; \
+            install.packages(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repo = $CRANREPO) \
+        }else{ \
+            tempo <- paste0('BiocManager INSTALLATION ATTEMPT FOR ', $i2) ; \
+            message(paste0('\n\n', tempo, '\n\n')) ; \
+            cat(paste0('\n\n\n', tempo, '\n\n\n')) ; \
+            BiocManager::install(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, update = FALSE, site_repository = $BIOCONDUCTOR_REPO) \
+        } \
+      }else if($i2 == 'ggplot2'){ \
+        devtools::install_version(package = 'ggplot2', version = '3.3.3', lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repos = $CRANREPO) \
+      }else if($i2 == 'SARTools'){ \
+        devtools::install_github('PF2-pasteur-fr/SARTools', build_opts='--no-resave-data', lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, upgrade = "always") \
+      } \
+    " ; \
+  done \
+  && Rscript --vanilla -e  " \
+    options(warn = 1, verbose = TRUE) ; \
+    args <- commandArgs(trailingOnly = TRUE) ; \
+    if(any(is.na(args))){ \
+        stop(paste0('\n\n================\n\nERROR IN plot_insertion.R\nTHE args OBJECT HAS NA\n\n================\n\n'), call. = FALSE) \
+    } ; \
+    tempo.arg.names <- c( \
+        'RLIB' \
+    ) ; \
+    if(length(args) != length(tempo.arg.names)){ \
+        stop(paste0('\n\n================\n\nERROR IN plot_insertion.R\nTHE NUMBER OF ELEMENTS IN args (', length(args),') IS DIFFERENT FROM THE NUMBER OF ELEMENTS IN tempo.arg.names (', length(tempo.arg.names),')\nargs:', paste0(args, collapse = ','), '\ntempo.arg.names:', paste0(tempo.arg.names, collapse = ','), '\n\n================\n\n'), call. = FALSE) \
+    } ; \
+    for(i1 in 1:length(tempo.arg.names)){ \
+        assign(tempo.arg.names[i1], args[i1]) \
+    } ; \
+    RLIB <- strsplit(RLIB, split = ',')[[1]] ; \
+    RLIB <- RLIB[RLIB != ''] ; \
+    if(file.exists('installed_r_packages.csv')){ \
+      file.remove('installed_r_packages.csv') \
+    } ; \
+    if(file.exists('not_installed_r_packages.txt')){ \
+      file.remove('not_installed_r_packages.txt') \
+    } ; \
+    tempo <- file('building.log', open = 'a+b') ; \
+    sink(file = tempo, append = TRUE, type = 'message') ; \
+    message(paste0('\n\n\n\n================\n\nR PACKAGES INSTALLED\n\n================\n\n\n\n')) ; \
+    message('SEE ALSO THE installed_r_packages.csv TABLE IN THE ROOT OF THE CONTAINER\n\n') ; \
+    capture.output(as.data.frame(installed.packages())[1:4], file = tempo, append = TRUE, type = 'output') ; \
+    df <- as.data.frame(installed.packages()) ; \
+    for (i2 in 1:length(df)){ \
+      df[, i2] <- gsub(x = df[, i2], replacement = '', pattern = '\n', fixed = TRUE) \
+    } ; \
+    write.table(x = df, file = 'installed_r_packages.csv', row.names = FALSE, col.names = TRUE, append = FALSE, quote = FALSE, sep = ';') ; \
+    message(paste0('\n\n\n\n================\n\nR PACKAGES NOT INSTALLED\n\n================\n\n\n\n')) ; \
+    df2 <- as.data.frame(RLIB[ ! RLIB %in% df[ , 'Package']]) ; \
+    if(nrow(df2) == 0){ \
+      message('ALL THE PACKAGES HAVE BEEN INSTALLED\n\n') \
+    }else{ \
+      message('SEE ALSO THE not_installed_r_packages.txt TABLE IN THE ROOT OF THE CONTAINER\n\n') ; \
+      names(df2) <- 'Name' ; \
+      capture.output(df2, file = tempo, append = TRUE, type = 'output') ; \
+      write.table(x = df2, file = 'not_installed_r_packages.txt', row.names = FALSE, col.names = TRUE, append = FALSE, quote = FALSE, sep = ';') ; \
+    } \
+  " $(echo "$RLIB" | sed 's/ \{1,\}/,/g' | sed "s/'//g") \
+  && echo "\n\n\n\n================\n\napt-get autoremove\n\n================\n\n\n\n" >> building.log \
+  && apt-get autoremove -y \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt-get clean\n\n================\n\n\n\n" >> building.log \
+  && apt-get clean \
+    | tee -a building.log ; echo "\n\n\n\n================\n\nrm\n\n================\n\n\n\n" >> building.log \
+  && rm -rf /var/lib/apt/lists/* \
+    | tee -a building.log \
+  && echo "\n\n\n\n================\n\nLINUX PACKAGES INSTALLED\n\n================\n\n\n\n" >> /building.log \
+  && apt-cache policy $APT_GET_LINUX_LIB $APT_LINUX_LIB \
+    >> /building.log
+
+# dependencies=NA means c("Depends", "Imports", "LinkingTo"). Do no use TRUE -> install suggesting packages which inflates tremendously the image.
+
+ENTRYPOINT ["/usr/bin/R"]
diff --git a/R/v4.1.2/extended/v3.3/building.log b/R/v4.1.2/extended/v3.3/building.log
new file mode 100644
index 0000000000000000000000000000000000000000..344777213373731b8378c0845dd5294f6e57ff4e
--- /dev/null
+++ b/R/v4.1.2/extended/v3.3/building.log
@@ -0,0 +1,689 @@
+
+
+
+
+================
+
+apt-get update
+
+================
+
+
+
+
+Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease
+Hit:2 http://ppa.launchpad.net/c2d4u.team/c2d4u4.0+/ubuntu focal InRelease
+Hit:3 http://ppa.launchpad.net/cran/poppler/ubuntu focal InRelease
+Hit:4 http://ppa.launchpad.net/marutter/rrutter4.0/ubuntu focal InRelease
+Hit:5 http://archive.ubuntu.com/ubuntu focal InRelease
+Hit:6 http://archive.ubuntu.com/ubuntu focal-updates InRelease
+Hit:7 http://archive.ubuntu.com/ubuntu focal-backports InRelease
+Reading package lists...
+
+
+
+
+================
+
+apt-get install
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+apt install
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+R PACKAGE INSTALLATION 1 / 1: lemon
+
+================
+
+
+
+
+trying URL 'https://cran.irsn.fr/src/contrib/rlang_1.1.0.tar.gz'
+Content type 'application/x-gzip' length 761991 bytes (744 KB)
+==================================================
+downloaded 744 KB
+
+trying URL 'https://cran.irsn.fr/src/contrib/vctrs_0.6.1.tar.gz'
+Content type 'application/x-gzip' length 964734 bytes (942 KB)
+==================================================
+downloaded 942 KB
+
+trying URL 'https://cran.irsn.fr/src/contrib/ggplot2_3.4.1.tar.gz'
+Content type 'application/x-gzip' length 3150856 bytes (3.0 MB)
+==================================================
+downloaded 3.0 MB
+
+trying URL 'https://cran.irsn.fr/src/contrib/lemon_0.4.6.tar.gz'
+Content type 'application/x-gzip' length 2843925 bytes (2.7 MB)
+==================================================
+downloaded 2.7 MB
+
+
+The downloaded source packages are in
+	‘/tmp/RtmpWMFqmq/downloaded_packages’
+
+
+STANDARD INSTALLATION ATTEMPT FOR lemon
+
+
+system (cmd0): /usr/lib/R/bin/R CMD INSTALL
+trying URL 'https://cran.irsn.fr/src/contrib/lemon_0.4.6.tar.gz'
+Content type 'application/x-gzip' length 2843925 bytes (2.7 MB)
+==================================================
+downloaded 2.7 MB
+
+foundpkgs: lemon, /tmp/RtmpWMFqmq/downloaded_packages/lemon_0.4.6.tar.gz
+files: /tmp/RtmpWMFqmq/downloaded_packages/lemon_0.4.6.tar.gz
+1): succeeded '/usr/lib/R/bin/R CMD INSTALL -l '/usr/local/lib/R/site-library' '/tmp/RtmpWMFqmq/downloaded_packages/lemon_0.4.6.tar.gz''
+
+The downloaded source packages are in
+	‘/tmp/RtmpWMFqmq/downloaded_packages’
+
+
+
+
+================
+
+R PACKAGES INSTALLED
+
+================
+
+
+
+
+SEE ALSO THE installed_r_packages.csv TABLE IN THE ROOT OF THE CONTAINER
+
+
+now dyn.load("/usr/lib/R/library/tools/libs/tools.so") ...
+                                  Package                       LibPath
+ade4                                 ade4 /usr/local/lib/R/site-library
+airr                                 airr /usr/local/lib/R/site-library
+alakazam                         alakazam /usr/local/lib/R/site-library
+ape                                   ape /usr/local/lib/R/site-library
+aplot                               aplot /usr/local/lib/R/site-library
+askpass                           askpass /usr/local/lib/R/site-library
+base64enc                       base64enc /usr/local/lib/R/site-library
+BH                                     BH /usr/local/lib/R/site-library
+binb                                 binb /usr/local/lib/R/site-library
+Biobase                           Biobase /usr/local/lib/R/site-library
+BiocGenerics                 BiocGenerics /usr/local/lib/R/site-library
+BiocManager                   BiocManager /usr/local/lib/R/site-library
+BiocParallel                 BiocParallel /usr/local/lib/R/site-library
+BiocVersion                   BiocVersion /usr/local/lib/R/site-library
+Biostrings                     Biostrings /usr/local/lib/R/site-library
+bit                                   bit /usr/local/lib/R/site-library
+bit64                               bit64 /usr/local/lib/R/site-library
+bitops                             bitops /usr/local/lib/R/site-library
+brew                                 brew /usr/local/lib/R/site-library
+brio                                 brio /usr/local/lib/R/site-library
+bslib                               bslib /usr/local/lib/R/site-library
+cachem                             cachem /usr/local/lib/R/site-library
+Cairo                               Cairo /usr/local/lib/R/site-library
+calibrate                       calibrate /usr/local/lib/R/site-library
+callr                               callr /usr/local/lib/R/site-library
+CGHbase                           CGHbase /usr/local/lib/R/site-library
+CGHcall                           CGHcall /usr/local/lib/R/site-library
+cli                                   cli /usr/local/lib/R/site-library
+clipr                               clipr /usr/local/lib/R/site-library
+colorspace                     colorspace /usr/local/lib/R/site-library
+commonmark                     commonmark /usr/local/lib/R/site-library
+cpp11                               cpp11 /usr/local/lib/R/site-library
+crayon                             crayon /usr/local/lib/R/site-library
+credentials                   credentials /usr/local/lib/R/site-library
+curl                                 curl /usr/local/lib/R/site-library
+data.table                     data.table /usr/local/lib/R/site-library
+DelayedArray                 DelayedArray /usr/local/lib/R/site-library
+desc                                 desc /usr/local/lib/R/site-library
+diffobj                           diffobj /usr/local/lib/R/site-library
+digest                             digest /usr/local/lib/R/site-library
+diptest                           diptest /usr/local/lib/R/site-library
+DNAcopy                           DNAcopy /usr/local/lib/R/site-library
+docopt                             docopt /usr/local/lib/R/site-library
+doParallel                     doParallel /usr/local/lib/R/site-library
+downlit                           downlit /usr/local/lib/R/site-library
+dowser                             dowser /usr/local/lib/R/site-library
+dplyr                               dplyr /usr/local/lib/R/site-library
+ellipsis                         ellipsis /usr/local/lib/R/site-library
+evaluate                         evaluate /usr/local/lib/R/site-library
+fansi                               fansi /usr/local/lib/R/site-library
+farver                             farver /usr/local/lib/R/site-library
+fastmap                           fastmap /usr/local/lib/R/site-library
+fastmatch                       fastmatch /usr/local/lib/R/site-library
+fontawesome                   fontawesome /usr/local/lib/R/site-library
+foreach                           foreach /usr/local/lib/R/site-library
+formatR                           formatR /usr/local/lib/R/site-library
+fs                                     fs /usr/local/lib/R/site-library
+futile.logger               futile.logger /usr/local/lib/R/site-library
+futile.options             futile.options /usr/local/lib/R/site-library
+future                             future /usr/local/lib/R/site-library
+future.apply                 future.apply /usr/local/lib/R/site-library
+generics                         generics /usr/local/lib/R/site-library
+GenomeInfoDb                 GenomeInfoDb /usr/local/lib/R/site-library
+GenomeInfoDbData         GenomeInfoDbData /usr/local/lib/R/site-library
+GenomicAlignments       GenomicAlignments /usr/local/lib/R/site-library
+GenomicRanges               GenomicRanges /usr/local/lib/R/site-library
+gert                                 gert /usr/local/lib/R/site-library
+ggfun                               ggfun /usr/local/lib/R/site-library
+ggplot2                           ggplot2 /usr/local/lib/R/site-library
+ggplotify                       ggplotify /usr/local/lib/R/site-library
+ggrepel                           ggrepel /usr/local/lib/R/site-library
+ggtree                             ggtree /usr/local/lib/R/site-library
+gh                                     gh /usr/local/lib/R/site-library
+gitcreds                         gitcreds /usr/local/lib/R/site-library
+globals                           globals /usr/local/lib/R/site-library
+glue                                 glue /usr/local/lib/R/site-library
+gridExtra                       gridExtra /usr/local/lib/R/site-library
+gridGraphics                 gridGraphics /usr/local/lib/R/site-library
+gtable                             gtable /usr/local/lib/R/site-library
+gtools                             gtools /usr/local/lib/R/site-library
+HiCcompare                     HiCcompare /usr/local/lib/R/site-library
+highr                               highr /usr/local/lib/R/site-library
+hms                                   hms /usr/local/lib/R/site-library
+htmltools                       htmltools /usr/local/lib/R/site-library
+htmlwidgets                   htmlwidgets /usr/local/lib/R/site-library
+httpuv                             httpuv /usr/local/lib/R/site-library
+httr                                 httr /usr/local/lib/R/site-library
+igraph                             igraph /usr/local/lib/R/site-library
+impute                             impute /usr/local/lib/R/site-library
+ini                                   ini /usr/local/lib/R/site-library
+InteractionSet             InteractionSet /usr/local/lib/R/site-library
+IRanges                           IRanges /usr/local/lib/R/site-library
+isoband                           isoband /usr/local/lib/R/site-library
+iterators                       iterators /usr/local/lib/R/site-library
+jquerylib                       jquerylib /usr/local/lib/R/site-library
+jsonlite                         jsonlite /usr/local/lib/R/site-library
+knitr                               knitr /usr/local/lib/R/site-library
+labeling                         labeling /usr/local/lib/R/site-library
+lambda.r                         lambda.r /usr/local/lib/R/site-library
+later                               later /usr/local/lib/R/site-library
+lazyeval                         lazyeval /usr/local/lib/R/site-library
+lemon                               lemon /usr/local/lib/R/site-library
+lifecycle                       lifecycle /usr/local/lib/R/site-library
+limma                               limma /usr/local/lib/R/site-library
+linl                                 linl /usr/local/lib/R/site-library
+listenv                           listenv /usr/local/lib/R/site-library
+lubridate                       lubridate /usr/local/lib/R/site-library
+magrittr                         magrittr /usr/local/lib/R/site-library
+markdown                         markdown /usr/local/lib/R/site-library
+marray                             marray /usr/local/lib/R/site-library
+MatrixGenerics             MatrixGenerics /usr/local/lib/R/site-library
+matrixStats                   matrixStats /usr/local/lib/R/site-library
+memoise                           memoise /usr/local/lib/R/site-library
+mgcv                                 mgcv /usr/local/lib/R/site-library
+mime                                 mime /usr/local/lib/R/site-library
+miniUI                             miniUI /usr/local/lib/R/site-library
+munsell                           munsell /usr/local/lib/R/site-library
+openssl                           openssl /usr/local/lib/R/site-library
+parallelly                     parallelly /usr/local/lib/R/site-library
+patchwork                       patchwork /usr/local/lib/R/site-library
+pdftools                         pdftools /usr/local/lib/R/site-library
+phangorn                         phangorn /usr/local/lib/R/site-library
+pheatmap                         pheatmap /usr/local/lib/R/site-library
+phylotate                       phylotate /usr/local/lib/R/site-library
+pillar                             pillar /usr/local/lib/R/site-library
+pinp                                 pinp /usr/local/lib/R/site-library
+pixmap                             pixmap /usr/local/lib/R/site-library
+pkgbuild                         pkgbuild /usr/local/lib/R/site-library
+pkgconfig                       pkgconfig /usr/local/lib/R/site-library
+pkgload                           pkgload /usr/local/lib/R/site-library
+plyr                                 plyr /usr/local/lib/R/site-library
+praise                             praise /usr/local/lib/R/site-library
+prettyunits                   prettyunits /usr/local/lib/R/site-library
+processx                         processx /usr/local/lib/R/site-library
+profvis                           profvis /usr/local/lib/R/site-library
+progress                         progress /usr/local/lib/R/site-library
+promises                         promises /usr/local/lib/R/site-library
+ps                                     ps /usr/local/lib/R/site-library
+purrr                               purrr /usr/local/lib/R/site-library
+QDNAseq                           QDNAseq /usr/local/lib/R/site-library
+qpdf                                 qpdf /usr/local/lib/R/site-library
+qqman                               qqman /usr/local/lib/R/site-library
+quadprog                         quadprog /usr/local/lib/R/site-library
+R.methodsS3                   R.methodsS3 /usr/local/lib/R/site-library
+R.oo                                 R.oo /usr/local/lib/R/site-library
+R.utils                           R.utils /usr/local/lib/R/site-library
+R6                                     R6 /usr/local/lib/R/site-library
+rappdirs                         rappdirs /usr/local/lib/R/site-library
+rcmdcheck                       rcmdcheck /usr/local/lib/R/site-library
+RColorBrewer                 RColorBrewer /usr/local/lib/R/site-library
+Rcpp                                 Rcpp /usr/local/lib/R/site-library
+RCurl                               RCurl /usr/local/lib/R/site-library
+readr                               readr /usr/local/lib/R/site-library
+rematch2                         rematch2 /usr/local/lib/R/site-library
+remotes                           remotes /usr/local/lib/R/site-library
+reshape2                         reshape2 /usr/local/lib/R/site-library
+rhdf5                               rhdf5 /usr/local/lib/R/site-library
+rhdf5filters                 rhdf5filters /usr/local/lib/R/site-library
+Rhdf5lib                         Rhdf5lib /usr/local/lib/R/site-library
+Rhtslib                           Rhtslib /usr/local/lib/R/site-library
+rlang                               rlang /usr/local/lib/R/site-library
+rmarkdown                       rmarkdown /usr/local/lib/R/site-library
+roxygen2                         roxygen2 /usr/local/lib/R/site-library
+rprojroot                       rprojroot /usr/local/lib/R/site-library
+Rsamtools                       Rsamtools /usr/local/lib/R/site-library
+rstudioapi                     rstudioapi /usr/local/lib/R/site-library
+rversions                       rversions /usr/local/lib/R/site-library
+S4Vectors                       S4Vectors /usr/local/lib/R/site-library
+sass                                 sass /usr/local/lib/R/site-library
+scales                             scales /usr/local/lib/R/site-library
+scoper                             scoper /usr/local/lib/R/site-library
+segmented                       segmented /usr/local/lib/R/site-library
+seqinr                             seqinr /usr/local/lib/R/site-library
+sessioninfo                   sessioninfo /usr/local/lib/R/site-library
+shazam                             shazam /usr/local/lib/R/site-library
+shiny                               shiny /usr/local/lib/R/site-library
+snow                                 snow /usr/local/lib/R/site-library
+snowfall                         snowfall /usr/local/lib/R/site-library
+sourcetools                   sourcetools /usr/local/lib/R/site-library
+sp                                     sp /usr/local/lib/R/site-library
+stringi                           stringi /usr/local/lib/R/site-library
+stringr                           stringr /usr/local/lib/R/site-library
+SummarizedExperiment SummarizedExperiment /usr/local/lib/R/site-library
+svglite                           svglite /usr/local/lib/R/site-library
+sys                                   sys /usr/local/lib/R/site-library
+systemfonts                   systemfonts /usr/local/lib/R/site-library
+testthat                         testthat /usr/local/lib/R/site-library
+tibble                             tibble /usr/local/lib/R/site-library
+tidyr                               tidyr /usr/local/lib/R/site-library
+tidyselect                     tidyselect /usr/local/lib/R/site-library
+tidytree                         tidytree /usr/local/lib/R/site-library
+tint                                 tint /usr/local/lib/R/site-library
+tinytex                           tinytex /usr/local/lib/R/site-library
+treeio                             treeio /usr/local/lib/R/site-library
+tzdb                                 tzdb /usr/local/lib/R/site-library
+urlchecker                     urlchecker /usr/local/lib/R/site-library
+usethis                           usethis /usr/local/lib/R/site-library
+utf8                                 utf8 /usr/local/lib/R/site-library
+vctrs                               vctrs /usr/local/lib/R/site-library
+viridisLite                   viridisLite /usr/local/lib/R/site-library
+vroom                               vroom /usr/local/lib/R/site-library
+waldo                               waldo /usr/local/lib/R/site-library
+whisker                           whisker /usr/local/lib/R/site-library
+withr                               withr /usr/local/lib/R/site-library
+xfun                                 xfun /usr/local/lib/R/site-library
+xml2                                 xml2 /usr/local/lib/R/site-library
+xopen                               xopen /usr/local/lib/R/site-library
+xtable                             xtable /usr/local/lib/R/site-library
+XVector                           XVector /usr/local/lib/R/site-library
+yaml                                 yaml /usr/local/lib/R/site-library
+yulab.utils                   yulab.utils /usr/local/lib/R/site-library
+zip                                   zip /usr/local/lib/R/site-library
+zlibbioc                         zlibbioc /usr/local/lib/R/site-library
+littler                           littler       /usr/lib/R/site-library
+base                                 base            /usr/lib/R/library
+boot                                 boot            /usr/lib/R/library
+class                               class            /usr/lib/R/library
+cluster                           cluster            /usr/lib/R/library
+codetools                       codetools            /usr/lib/R/library
+compiler                         compiler            /usr/lib/R/library
+datasets                         datasets            /usr/lib/R/library
+foreign                           foreign            /usr/lib/R/library
+graphics                         graphics            /usr/lib/R/library
+grDevices                       grDevices            /usr/lib/R/library
+grid                                 grid            /usr/lib/R/library
+KernSmooth                     KernSmooth            /usr/lib/R/library
+lattice                           lattice            /usr/lib/R/library
+MASS                                 MASS            /usr/lib/R/library
+Matrix                             Matrix            /usr/lib/R/library
+methods                           methods            /usr/lib/R/library
+mgcv.1                               mgcv            /usr/lib/R/library
+nlme                                 nlme            /usr/lib/R/library
+nnet                                 nnet            /usr/lib/R/library
+parallel                         parallel            /usr/lib/R/library
+rpart                               rpart            /usr/lib/R/library
+spatial                           spatial            /usr/lib/R/library
+splines                           splines            /usr/lib/R/library
+stats                               stats            /usr/lib/R/library
+stats4                             stats4            /usr/lib/R/library
+survival                         survival            /usr/lib/R/library
+tcltk                               tcltk            /usr/lib/R/library
+tools                               tools            /usr/lib/R/library
+utils                               utils            /usr/lib/R/library
+                      Version    Priority
+ade4                   1.7-19        <NA>
+airr                    1.4.1        <NA>
+alakazam                1.2.1        <NA>
+ape                     5.6-2        <NA>
+aplot                   0.1.8        <NA>
+askpass                   1.1        <NA>
+base64enc               0.1-3        <NA>
+BH                   1.78.0-0        <NA>
+binb                    0.0.6        <NA>
+Biobase                2.54.0        <NA>
+BiocGenerics           0.40.0        <NA>
+BiocManager           1.30.18        <NA>
+BiocParallel           1.28.3        <NA>
+BiocVersion            3.14.0        <NA>
+Biostrings             2.62.0        <NA>
+bit                     4.0.4        <NA>
+bit64                   4.0.5        <NA>
+bitops                  1.0-7        <NA>
+brew                    1.0-8        <NA>
+brio                    1.1.3        <NA>
+bslib                   0.4.0        <NA>
+cachem                  1.0.6        <NA>
+Cairo                   1.6-0        <NA>
+calibrate               1.7.7        <NA>
+callr                   3.7.2        <NA>
+CGHbase                1.54.0        <NA>
+CGHcall                2.56.0        <NA>
+cli                     3.4.1        <NA>
+clipr                   0.8.0        <NA>
+colorspace              2.0-3        <NA>
+commonmark              1.8.0        <NA>
+cpp11                   0.4.3        <NA>
+crayon                  1.5.2        <NA>
+credentials             1.3.2        <NA>
+curl                    4.3.3        <NA>
+data.table             1.14.2        <NA>
+DelayedArray           0.20.0        <NA>
+desc                    1.4.2        <NA>
+diffobj                 0.3.5        <NA>
+digest                 0.6.29        <NA>
+diptest                0.76-0        <NA>
+DNAcopy                1.68.0        <NA>
+docopt                  0.7.1        <NA>
+doParallel             1.0.17        <NA>
+downlit                 0.4.2        <NA>
+dowser                  1.1.0        <NA>
+dplyr                  1.0.10        <NA>
+ellipsis                0.3.2        <NA>
+evaluate                 0.17        <NA>
+fansi                   1.0.3        <NA>
+farver                  2.1.1        <NA>
+fastmap                 1.1.0        <NA>
+fastmatch               1.1-3        <NA>
+fontawesome             0.3.0        <NA>
+foreach                 1.5.2        <NA>
+formatR                  1.12        <NA>
+fs                      1.5.2        <NA>
+futile.logger           1.4.3        <NA>
+futile.options          1.0.1        <NA>
+future                 1.28.0        <NA>
+future.apply            1.9.1        <NA>
+generics                0.1.3        <NA>
+GenomeInfoDb           1.30.1        <NA>
+GenomeInfoDbData        1.2.7        <NA>
+GenomicAlignments      1.30.0        <NA>
+GenomicRanges          1.46.1        <NA>
+gert                    1.9.1        <NA>
+ggfun                   0.0.7        <NA>
+ggplot2                 3.4.1        <NA>
+ggplotify               0.1.0        <NA>
+ggrepel                 0.9.3        <NA>
+ggtree                  3.2.1        <NA>
+gh                      1.3.1        <NA>
+gitcreds                0.1.2        <NA>
+globals                0.16.1        <NA>
+glue                    1.6.2        <NA>
+gridExtra                 2.3        <NA>
+gridGraphics            0.5-1        <NA>
+gtable                  0.3.1        <NA>
+gtools                  3.9.3        <NA>
+HiCcompare             1.16.0        <NA>
+highr                     0.9        <NA>
+hms                     1.1.2        <NA>
+htmltools               0.5.3        <NA>
+htmlwidgets             1.5.4        <NA>
+httpuv                  1.6.6        <NA>
+httr                    1.4.4        <NA>
+igraph                  1.3.5        <NA>
+impute                 1.68.0        <NA>
+ini                     0.3.1        <NA>
+InteractionSet         1.22.0        <NA>
+IRanges                2.28.0        <NA>
+isoband                 0.2.6        <NA>
+iterators              1.0.14        <NA>
+jquerylib               0.1.4        <NA>
+jsonlite                1.8.2        <NA>
+knitr                    1.40        <NA>
+labeling                0.4.2        <NA>
+lambda.r                1.2.4        <NA>
+later                   1.3.0        <NA>
+lazyeval                0.2.2        <NA>
+lemon                   0.4.6        <NA>
+lifecycle               1.0.3        <NA>
+limma                  3.50.3        <NA>
+linl                    0.0.4        <NA>
+listenv                 0.8.0        <NA>
+lubridate               1.8.0        <NA>
+magrittr                2.0.3        <NA>
+markdown                  1.1        <NA>
+marray                 1.72.0        <NA>
+MatrixGenerics          1.6.0        <NA>
+matrixStats            0.62.0        <NA>
+memoise                 2.0.1        <NA>
+mgcv                   1.8-40 recommended
+mime                     0.12        <NA>
+miniUI                0.1.1.1        <NA>
+munsell                 0.5.0        <NA>
+openssl                 2.0.3        <NA>
+parallelly             1.32.1        <NA>
+patchwork               1.1.2        <NA>
+pdftools                3.3.1        <NA>
+phangorn               2.10.0        <NA>
+pheatmap               1.0.12        <NA>
+phylotate                 1.3        <NA>
+pillar                  1.8.1        <NA>
+pinp                   0.0.10        <NA>
+pixmap                 0.4-12        <NA>
+pkgbuild                1.3.1        <NA>
+pkgconfig               2.0.3        <NA>
+pkgload                 1.3.0        <NA>
+plyr                    1.8.7        <NA>
+praise                  1.0.0        <NA>
+prettyunits             1.1.1        <NA>
+processx                3.7.0        <NA>
+profvis                 0.3.7        <NA>
+progress                1.2.2        <NA>
+promises              1.2.0.1        <NA>
+ps                      1.7.1        <NA>
+purrr                   0.3.5        <NA>
+QDNAseq                1.30.0        <NA>
+qpdf                    1.3.0        <NA>
+qqman                   0.1.8        <NA>
+quadprog                1.5-8        <NA>
+R.methodsS3             1.8.2        <NA>
+R.oo                   1.25.0        <NA>
+R.utils                2.12.0        <NA>
+R6                      2.5.1        <NA>
+rappdirs                0.3.3        <NA>
+rcmdcheck               1.4.0        <NA>
+RColorBrewer            1.1-3        <NA>
+Rcpp                    1.0.9        <NA>
+RCurl                1.98-1.9        <NA>
+readr                   2.1.3        <NA>
+rematch2                2.1.2        <NA>
+remotes                 2.4.2        <NA>
+reshape2                1.4.4        <NA>
+rhdf5                  2.38.1        <NA>
+rhdf5filters            1.6.0        <NA>
+Rhdf5lib               1.16.0        <NA>
+Rhtslib                1.26.0        <NA>
+rlang                   1.1.0        <NA>
+rmarkdown                2.17        <NA>
+roxygen2                7.2.1        <NA>
+rprojroot               2.0.3        <NA>
+Rsamtools              2.10.0        <NA>
+rstudioapi               0.14        <NA>
+rversions               2.1.2        <NA>
+S4Vectors              0.32.4        <NA>
+sass                    0.4.2        <NA>
+scales                  1.2.1        <NA>
+scoper                  1.2.1        <NA>
+segmented               1.6-0        <NA>
+seqinr                 4.2-16        <NA>
+sessioninfo             1.2.2        <NA>
+shazam                  1.1.2        <NA>
+shiny                   1.7.2        <NA>
+snow                    0.4-4        <NA>
+snowfall             1.84-6.2        <NA>
+sourcetools             0.1.7        <NA>
+sp                      1.5-0        <NA>
+stringi                 1.7.8        <NA>
+stringr                 1.4.1        <NA>
+SummarizedExperiment   1.24.0        <NA>
+svglite                 2.1.1        <NA>
+sys                       3.4        <NA>
+systemfonts             1.0.4        <NA>
+testthat                3.1.5        <NA>
+tibble                  3.1.8        <NA>
+tidyr                   1.2.1        <NA>
+tidyselect              1.2.0        <NA>
+tidytree                0.4.1        <NA>
+tint                    0.1.3        <NA>
+tinytex                  0.42        <NA>
+treeio                 1.18.1        <NA>
+tzdb                    0.3.0        <NA>
+urlchecker              1.0.1        <NA>
+usethis                 2.1.6        <NA>
+utf8                    1.2.2        <NA>
+vctrs                   0.6.1        <NA>
+viridisLite             0.4.1        <NA>
+vroom                   1.6.0        <NA>
+waldo                   0.4.0        <NA>
+whisker                   0.4        <NA>
+withr                   2.5.0        <NA>
+xfun                     0.33        <NA>
+xml2                    1.3.3        <NA>
+xopen                   1.0.0        <NA>
+xtable                  1.8-4        <NA>
+XVector                0.34.0        <NA>
+yaml                    2.3.5        <NA>
+yulab.utils             0.0.5        <NA>
+zip                     2.2.1        <NA>
+zlibbioc               1.40.0        <NA>
+littler                0.3.15        <NA>
+base                    4.1.2        base
+boot                   1.3-28 recommended
+class                  7.3-20 recommended
+cluster                 2.1.2 recommended
+codetools              0.2-18 recommended
+compiler                4.1.2        base
+datasets                4.1.2        base
+foreign                0.8-82 recommended
+graphics                4.1.2        base
+grDevices               4.1.2        base
+grid                    4.1.2        base
+KernSmooth            2.23-20 recommended
+lattice               0.20-45 recommended
+MASS                   7.3-55 recommended
+Matrix                  1.4-0 recommended
+methods                 4.1.2        base
+mgcv.1                 1.8-38 recommended
+nlme                  3.1-155 recommended
+nnet                   7.3-17 recommended
+parallel                4.1.2        base
+rpart                  4.1.16 recommended
+spatial                7.3-15 recommended
+splines                 4.1.2        base
+stats                   4.1.2        base
+stats4                  4.1.2        base
+survival               3.2-13 recommended
+tcltk                   4.1.2        base
+tools                   4.1.2        base
+utils                   4.1.2        base
+
+
+
+
+================
+
+R PACKAGES NOT INSTALLED
+
+================
+
+
+
+
+ALL THE PACKAGES HAVE BEEN INSTALLED
+
+
+
+
+
+
+================
+
+apt-get autoremove
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+apt-get clean
+
+================
+
+
+
+
+
+
+
+
+================
+
+rm
+
+================
+
+
+
+
+
+
+
+
+================
+
+LINUX PACKAGES INSTALLED
+
+================
+
+
+
+
+Package files:
+ 100 /var/lib/dpkg/status
+     release a=now
+Pinned packages:
diff --git a/R/v4.1.2/extended/v3.3/installed_r_packages.csv b/R/v4.1.2/extended/v3.3/installed_r_packages.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2b2c7b0705970079649c0986df06730a41be5aee
--- /dev/null
+++ b/R/v4.1.2/extended/v3.3/installed_r_packages.csv
@@ -0,0 +1,244 @@
+Package;LibPath;Version;Priority;Depends;Imports;LinkingTo;Suggests;Enhances;License;License_is_FOSS;License_restricts_use;OS_type;MD5sum;NeedsCompilation;Built
+ade4;/usr/local/lib/R/site-library;1.7-19;NA;R (>= 2.10);graphics, grDevices, methods, stats, utils, MASS, pixmap, sp;NA;ade4TkGUI, adegraphics, adephylo, ape, CircStats, deldir,lattice, spdep, splancs, waveslim, progress, foreach, parallel,doParallel, iterators;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+airr;/usr/local/lib/R/site-library;1.4.1;NA;R (>= 3.1.2);jsonlite, methods, readr, stats, stringi, tools, yaml;NA;knitr, rmarkdown, tibble, testthat;NA;CC BY 4.0;NA;NA;NA;NA;no;4.1.2
+alakazam;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 4.0), ggplot2 (>= 3.3.4);airr (>= 1.3), ape, dplyr (>= 1.0), graphics, grid, igraph (>=1.0), Matrix (>= 1.3-0), methods, progress, Rcpp (>= 0.12.12),readr, rlang, scales, seqinr, stats, stringi, tibble, tidyr (>=1.0), utils, Biostrings (>= 2.56.0), GenomicAlignments (>=1.24.0), IRanges (>= 2.22.2);Rcpp;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;yes;4.1.2
+ape;/usr/local/lib/R/site-library;5.6-2;NA;R (>= 3.2.0);nlme, lattice, graphics, methods, stats, tools, utils,parallel, Rcpp (>= 0.12.0);Rcpp;gee, expm, igraph, phangorn;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+aplot;/usr/local/lib/R/site-library;0.1.8;NA;NA;ggfun (>= 0.0.6), ggplot2, ggplotify, patchwork, magrittr,methods, utils;NA;ggtree;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+askpass;/usr/local/lib/R/site-library;1.1;NA;NA;sys (>= 2.1);NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+base64enc;/usr/local/lib/R/site-library;0.1-3;NA;R (>= 2.9.0);NA;NA;NA;png;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+BH;/usr/local/lib/R/site-library;1.78.0-0;NA;NA;NA;NA;NA;NA;BSL-1.0;NA;NA;NA;NA;no;4.1.2
+binb;/usr/local/lib/R/site-library;0.0.6;NA;NA;rmarkdown, knitr;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+Biobase;/usr/local/lib/R/site-library;2.54.0;NA;R (>= 2.10), BiocGenerics (>= 0.27.1), utils;methods;NA;tools, tkWidgets, ALL, RUnit, golubEsets;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+BiocGenerics;/usr/local/lib/R/site-library;0.40.0;NA;R (>= 4.0.0), methods, utils, graphics, stats;methods, utils, graphics, stats;NA;Biobase, S4Vectors, IRanges, GenomicRanges, DelayedArray,Biostrings, Rsamtools, AnnotationDbi, affy, affyPLM, DESeq2,flowClust, MSnbase, annotate, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+BiocManager;/usr/local/lib/R/site-library;1.30.18;NA;NA;utils;NA;BiocVersion, remotes, rmarkdown, testthat, withr, curl, knitr;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+BiocParallel;/usr/local/lib/R/site-library;1.28.3;NA;methods, R (>= 3.5.0);stats, utils, futile.logger, parallel, snow;BH;BiocGenerics, tools, foreach, BatchJobs, BBmisc, doParallel,Rmpi, GenomicRanges, RNAseqData.HNRNPC.bam.chr14,TxDb.Hsapiens.UCSC.hg19.knownGene, VariantAnnotation,Rsamtools, GenomicAlignments, ShortRead, codetools, RUnit,BiocStyle, knitr, batchtools, data.table;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+BiocVersion;/usr/local/lib/R/site-library;3.14.0;NA;R (>= 4.1.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+Biostrings;/usr/local/lib/R/site-library;2.62.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9), XVector (>= 0.29.2),GenomeInfoDb;methods, utils, grDevices, graphics, stats, crayon;S4Vectors, IRanges, XVector;BSgenome (>= 1.13.14), BSgenome.Celegans.UCSC.ce2 (>=1.3.11), BSgenome.Dmelanogaster.UCSC.dm3 (>= 1.3.11),BSgenome.Hsapiens.UCSC.hg18, drosophila2probe, hgu95av2probe,hgu133aprobe, GenomicFeatures (>= 1.3.14), hgu95av2cdf, affy(>= 1.41.3), affydata (>= 1.11.5), RUnit;Rmpi;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+bit;/usr/local/lib/R/site-library;4.0.4;NA;R (>= 2.9.2);NA;NA;testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,microbenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0);NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+bit64;/usr/local/lib/R/site-library;4.0.5;NA;R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats;NA;NA;NA;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+bitops;/usr/local/lib/R/site-library;1.0-7;NA;NA;NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+brew;/usr/local/lib/R/site-library;1.0-8;NA;NA;NA;NA;testthat (>= 3.0.0);NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+brio;/usr/local/lib/R/site-library;1.1.3;NA;NA;NA;NA;covr, testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+bslib;/usr/local/lib/R/site-library;0.4.0;NA;R (>= 2.10);grDevices, htmltools (>= 0.5.2), jsonlite, sass (>= 0.4.0),jquerylib (>= 0.1.3), rlang, cachem, memoise;NA;shiny (>= 1.6.0), rmarkdown (>= 2.7), thematic, knitr,testthat, withr, rappdirs, curl, magrittr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+cachem;/usr/local/lib/R/site-library;1.0.6;NA;NA;rlang, fastmap;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+Cairo;/usr/local/lib/R/site-library;1.6-0;NA;R (>= 2.4.0);grDevices, graphics;NA;png;FastRWeb;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+calibrate;/usr/local/lib/R/site-library;1.7.7;NA;R (>= 3.5.0), MASS;NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+callr;/usr/local/lib/R/site-library;3.7.2;NA;R (>= 3.4);processx (>= 3.6.1), R6, utils;NA;cli (>= 1.1.0), covr, mockery, ps, rprojroot, spelling,testthat (>= 3.0.0), withr (>= 2.3.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+CGHbase;/usr/local/lib/R/site-library;1.54.0;NA;R (>= 2.10), methods, Biobase (>= 2.5.5), marray;NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.1.2
+CGHcall;/usr/local/lib/R/site-library;2.56.0;NA;R (>= 2.0.0), impute(>= 1.8.0), DNAcopy (>= 1.6.0), methods,Biobase, CGHbase (>= 1.15.1), snowfall;NA;NA;NA;NA;GPL (http://www.gnu.org/copyleft/gpl.html);NA;NA;NA;NA;no;4.1.2
+cli;/usr/local/lib/R/site-library;3.4.1;NA;R (>= 3.4);utils;NA;callr, covr, digest, glue (>= 1.6.0), grDevices, htmltools,htmlwidgets, knitr, methods, mockery, processx, ps (>=1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,rstudioapi, testthat, tibble, whoami, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+clipr;/usr/local/lib/R/site-library;0.8.0;NA;NA;utils;NA;covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=2.0.0);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+colorspace;/usr/local/lib/R/site-library;2.0-3;NA;R (>= 3.0.0), methods;graphics, grDevices, stats;NA;datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,tcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,knitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,wesanderson;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+commonmark;/usr/local/lib/R/site-library;1.8.0;NA;NA;NA;NA;curl, testthat, xml2;NA;BSD_2_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+cpp11;/usr/local/lib/R/site-library;0.4.3;NA;NA;NA;NA;bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,knitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,testthat, tibble, utils, vctrs, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+crayon;/usr/local/lib/R/site-library;1.5.2;NA;NA;grDevices, methods, utils;NA;mockery, rstudioapi, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+credentials;/usr/local/lib/R/site-library;1.3.2;NA;NA;openssl (>= 1.3), sys (>= 2.1), curl, jsonlite, askpass;NA;testthat, knitr, rmarkdown;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+curl;/usr/local/lib/R/site-library;4.3.3;NA;R (>= 3.0.0);NA;NA;spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,magrittr, httpuv (>= 1.4.4), webutils;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+data.table;/usr/local/lib/R/site-library;1.14.2;NA;R (>= 3.1.0);methods;NA;bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,nanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown;NA;MPL-2.0 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+DelayedArray;/usr/local/lib/R/site-library;0.20.0;NA;R (>= 4.0.0), methods, stats4, Matrix, BiocGenerics (>=0.37.0), MatrixGenerics (>= 1.1.3), S4Vectors (>= 0.27.2),IRanges (>= 2.17.3);stats;S4Vectors;BiocParallel, HDF5Array (>= 1.17.12), genefilter,SummarizedExperiment, airway, lobstr, DelayedMatrixStats,knitr, rmarkdown, BiocStyle, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+desc;/usr/local/lib/R/site-library;1.4.2;NA;R (>= 3.4);cli, R6, rprojroot, utils;NA;callr, covr, gh, spelling, testthat, whoami, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+diffobj;/usr/local/lib/R/site-library;0.3.5;NA;R (>= 3.1.0);crayon (>= 1.3.2), tools, methods, utils, stats;NA;knitr, rmarkdown;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+digest;/usr/local/lib/R/site-library;0.6.29;NA;R (>= 3.3.0);utils;NA;tinytest, simplermarkdown;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+diptest;/usr/local/lib/R/site-library;0.76-0;NA;NA;graphics, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+DNAcopy;/usr/local/lib/R/site-library;1.68.0;NA;NA;NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+docopt;/usr/local/lib/R/site-library;0.7.1;NA;NA;methods;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+doParallel;/usr/local/lib/R/site-library;1.0.17;NA;R (>= 2.14.0), foreach (>= 1.2.0), iterators (>= 1.0.0),parallel, utils;NA;NA;caret, mlbench, rpart, RUnit;compiler;GPL-2;NA;NA;NA;NA;no;4.1.2
+downlit;/usr/local/lib/R/site-library;0.4.2;NA;R (>= 3.4.0);brio, desc, digest, evaluate, fansi, memoise, rlang, vctrs,withr, yaml;NA;covr, htmltools, jsonlite, MASS, MassSpecWavelet, pkgload,rmarkdown, testthat (>= 3.0.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+dowser;/usr/local/lib/R/site-library;1.1.0;NA;R (>= 3.1.2), ggplot2 (>= 3.2.0);alakazam (>= 1.1.0), ape (>= 5.6), Biostrings, dplyr (>=0.8.1), ggtree, graphics, gridExtra, markdown, methods,phangorn (>= 2.7.1), phylotate, RColorBrewer, rlang, shazam (>=1.1.0), stats, stringr, tidyselect, tidyr, utils;NA;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;no;4.1.2
+dplyr;/usr/local/lib/R/site-library;1.0.10;NA;R (>= 3.4.0);generics, glue (>= 1.3.2), lifecycle (>= 1.0.1), magrittr (>=1.5), methods, R6, rlang (>= 1.0.2), tibble (>= 2.1.3),tidyselect (>= 1.1.1), utils, vctrs (>= 0.4.1), pillar (>=1.5.1);NA;bench, broom, callr, covr, DBI, dbplyr (>= 1.4.3), ggplot2,knitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,rmarkdown, RMySQL, RPostgreSQL, RSQLite, testthat (>= 3.1.1),tidyr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ellipsis;/usr/local/lib/R/site-library;0.3.2;NA;R (>= 3.2);rlang (>= 0.3.0);NA;covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+evaluate;/usr/local/lib/R/site-library;0.17;NA;R (>= 3.0.2);methods;NA;covr, ggplot2, lattice, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+fansi;/usr/local/lib/R/site-library;1.0.3;NA;R (>= 3.1.0);grDevices, utils;NA;unitizer, knitr, rmarkdown;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+farver;/usr/local/lib/R/site-library;2.1.1;NA;NA;NA;NA;covr, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+fastmap;/usr/local/lib/R/site-library;1.1.0;NA;NA;NA;NA;testthat (>= 2.1.1);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+fastmatch;/usr/local/lib/R/site-library;1.1-3;NA;R (>= 2.3.0);NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+fontawesome;/usr/local/lib/R/site-library;0.3.0;NA;R (>= 3.3.0);rlang (>= 0.4.10), htmltools (>= 0.5.1.1);NA;covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0),rsvg;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+foreach;/usr/local/lib/R/site-library;1.5.2;NA;R (>= 2.5.0);codetools, utils, iterators;NA;randomForest, doMC, doParallel, testthat, knitr, rmarkdown;NA;Apache License (== 2.0);NA;NA;NA;NA;no;4.1.2
+formatR;/usr/local/lib/R/site-library;1.12;NA;R (>= 3.2.3);NA;NA;rstudioapi, shiny, testit, rmarkdown, knitr;NA;GPL;NA;NA;NA;NA;no;4.1.2
+fs;/usr/local/lib/R/site-library;1.5.2;NA;R (>= 3.1);methods;NA;testthat, covr, pillar (>= 1.0.0), tibble (>= 1.1.0), crayon,rmarkdown, knitr, withr, spelling, vctrs (>= 0.3.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+futile.logger;/usr/local/lib/R/site-library;1.4.3;NA;R (>= 3.0.0);utils, lambda.r (>= 1.1.0), futile.options;NA;testthat, jsonlite;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+futile.options;/usr/local/lib/R/site-library;1.0.1;NA;R (>= 2.8.0);NA;NA;NA;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+future;/usr/local/lib/R/site-library;1.28.0;NA;NA;digest, globals (>= 0.16.0), listenv (>= 0.8.0), parallel,parallelly (>= 1.32.1), tools, utils;NA;methods, RhpcBLASctl, R.rsp, markdown;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+future.apply;/usr/local/lib/R/site-library;1.9.1;NA;R (>= 3.2.0), future (>= 1.27.0);globals (>= 0.16.1), parallel, utils;NA;datasets, stats, tools, listenv (>= 0.8.0), R.rsp, markdown;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+generics;/usr/local/lib/R/site-library;0.1.3;NA;R (>= 3.2);methods;NA;covr, pkgload, testthat (>= 3.0.0), tibble, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+GenomeInfoDb;/usr/local/lib/R/site-library;1.30.1;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.25.12), IRanges (>= 2.13.12);stats, stats4, utils, RCurl, GenomeInfoDbData;NA;GenomicRanges, Rsamtools, GenomicAlignments, GenomicFeatures,TxDb.Dmelanogaster.UCSC.dm3.ensGene, BSgenome,BSgenome.Scerevisiae.UCSC.sacCer2, BSgenome.Celegans.UCSC.ce2,BSgenome.Hsapiens.NCBI.GRCh38, RUnit, BiocStyle, knitr;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+GenomeInfoDbData;/usr/local/lib/R/site-library;1.2.7;NA;R (>= 3.5.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+GenomicAlignments;/usr/local/lib/R/site-library;1.30.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>= 1.13.1),GenomicRanges (>= 1.41.5), SummarizedExperiment (>= 1.9.13),Biostrings (>= 2.55.7), Rsamtools (>= 1.31.2);methods, utils, stats, BiocGenerics, S4Vectors, IRanges,GenomicRanges, Biostrings, Rsamtools, BiocParallel;S4Vectors, IRanges;ShortRead, rtracklayer, BSgenome, GenomicFeatures,RNAseqData.HNRNPC.bam.chr14, pasillaBamSubset,TxDb.Hsapiens.UCSC.hg19.knownGene,TxDb.Dmelanogaster.UCSC.dm3.ensGene,BSgenome.Dmelanogaster.UCSC.dm3, BSgenome.Hsapiens.UCSC.hg19,DESeq2, edgeR, RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+GenomicRanges;/usr/local/lib/R/site-library;1.46.1;NA;R (>= 4.0.0), methods, stats4, BiocGenerics (>= 0.37.0),S4Vectors (>= 0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>=1.15.2);utils, stats, XVector (>= 0.29.2);S4Vectors, IRanges;Matrix, Biobase, AnnotationDbi, annotate, Biostrings (>=2.25.3), SummarizedExperiment (>= 0.1.5), Rsamtools (>=1.13.53), GenomicAlignments, rtracklayer, BSgenome,GenomicFeatures, Gviz, VariantAnnotation, AnnotationHub,DESeq2, DEXSeq, edgeR, KEGGgraph, RNAseqData.HNRNPC.bam.chr14,pasillaBamSubset, KEGGREST, hgu95av2.db, hgu95av2probe,BSgenome.Scerevisiae.UCSC.sacCer2, BSgenome.Hsapiens.UCSC.hg19,BSgenome.Mmusculus.UCSC.mm10,TxDb.Athaliana.BioMart.plantsmart22,TxDb.Dmelanogaster.UCSC.dm3.ensGene,TxDb.Hsapiens.UCSC.hg19.knownGene,TxDb.Mmusculus.UCSC.mm10.knownGene, RUnit, digest, knitr,rmarkdown, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+gert;/usr/local/lib/R/site-library;1.9.1;NA;NA;askpass, credentials (>= 1.2.1), openssl (>= 2.0.3),rstudioapi (>= 0.11), sys, zip (>= 2.1.0);NA;spelling, knitr, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ggfun;/usr/local/lib/R/site-library;0.0.7;NA;NA;ggplot2, grid, rlang, utils;NA;ggplotify, knitr, rmarkdown, prettydoc, tidyr, ggnewscale;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+ggplot2;/usr/local/lib/R/site-library;3.4.1;NA;R (>= 3.3);cli, glue, grDevices, grid, gtable (>= 0.1.1), isoband,lifecycle (> 1.0.1), MASS, mgcv, rlang (>= 1.0.0), scales (>=1.2.0), stats, tibble, vctrs (>= 0.5.0), withr (>= 2.5.0);NA;covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, lattice,mapproj, maps, maptools, multcomp, munsell, nlme, profvis,quantreg, ragg, RColorBrewer, rgeos, rmarkdown, rpart, sf (>=0.7-3), svglite (>= 1.2.0.9001), testthat (>= 3.1.2), vdiffr(>= 1.0.0), xml2;sp;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+ggplotify;/usr/local/lib/R/site-library;0.1.0;NA;R (>= 3.4.0);ggplot2, graphics, grDevices, grid, gridGraphics, yulab.utils;NA;aplot, colorspace, cowplot, ggimage, knitr, rmarkdown,lattice, prettydoc, vcd, utils;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+ggrepel;/usr/local/lib/R/site-library;0.9.3;NA;R (>= 3.0.0), ggplot2 (>= 2.2.0);grid, Rcpp, rlang (>= 0.3.0), scales (>= 0.5.0), withr (>=2.5.0);Rcpp;knitr, rmarkdown, testthat, svglite, vdiffr, gridExtra,devtools, prettydoc, ggbeeswarm, dplyr, magrittr, readr,stringr;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ggtree;/usr/local/lib/R/site-library;3.2.1;NA;R (>= 3.5.0);ape, aplot (>= 0.0.4), dplyr, ggplot2 (>= 3.0.0), grid,magrittr, methods, purrr, rlang, ggfun, yulab.utils, tidyr,tidytree (>= 0.2.6), treeio (>= 1.8.0), utils, scales;NA;emojifont, ggimage, ggplotify, grDevices, knitr, prettydoc,rmarkdown, stats, testthat, tibble;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+gh;/usr/local/lib/R/site-library;1.3.1;NA;R (>= 3.4);cli (>= 3.0.1), gitcreds, httr (>= 1.2), ini, jsonlite;NA;covr, knitr, mockery, rmarkdown, rprojroot, spelling,testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+gitcreds;/usr/local/lib/R/site-library;0.1.2;NA;R (>= 3.4);NA;NA;codetools, covr, knitr, mockery, oskeyring, rmarkdown,testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+globals;/usr/local/lib/R/site-library;0.16.1;NA;R (>= 3.1.2);codetools;NA;NA;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+glue;/usr/local/lib/R/site-library;1.6.2;NA;R (>= 3.4);methods;NA;covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,microbenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,testthat (>= 3.0.0), vctrs (>= 0.3.0), waldo (>= 0.3.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+gridExtra;/usr/local/lib/R/site-library;2.3;NA;NA;gtable, grid, grDevices, graphics, utils;NA;ggplot2, egg, lattice, knitr, testthat;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+gridGraphics;/usr/local/lib/R/site-library;0.5-1;NA;grid, graphics;grDevices;NA;magick (>= 1.3), pdftools (>= 1.6);NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+gtable;/usr/local/lib/R/site-library;0.3.1;NA;R (>= 3.0);grid;NA;covr, testthat, knitr, rmarkdown, ggplot2, profvis;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+gtools;/usr/local/lib/R/site-library;3.9.3;NA;methods, stats, utils;NA;NA;car, gplots, knitr, rstudioapi, SGP, taxize;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+HiCcompare;/usr/local/lib/R/site-library;1.16.0;NA;R (>= 3.4.0), dplyr;data.table, ggplot2, gridExtra, mgcv, stats, InteractionSet,GenomicRanges, IRanges, S4Vectors, BiocParallel, QDNAseq,KernSmooth, methods, utils, graphics, pheatmap, gtools, rhdf5;NA;knitr, rmarkdown, testthat, multiHiCcompare;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+highr;/usr/local/lib/R/site-library;0.9;NA;R (>= 3.2.3);xfun (>= 0.18);NA;knitr, markdown, testit;NA;GPL;NA;NA;NA;NA;no;4.1.2
+hms;/usr/local/lib/R/site-library;1.1.2;NA;NA;ellipsis (>= 0.3.2), lifecycle, methods, pkgconfig, rlang,vctrs (>= 0.3.8);NA;crayon, lubridate, pillar (>= 1.1.0), testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+htmltools;/usr/local/lib/R/site-library;0.5.3;NA;R (>= 2.14.1);utils, digest, grDevices, base64enc, rlang (>= 0.4.10),fastmap (>= 1.1.0);NA;markdown, testthat, withr, Cairo, ragg, shiny;knitr;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+htmlwidgets;/usr/local/lib/R/site-library;1.5.4;NA;NA;grDevices, htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml;NA;knitr (>= 1.8), rmarkdown, testthat;shiny (>= 1.1);MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+httpuv;/usr/local/lib/R/site-library;1.6.6;NA;R (>= 2.15.1);Rcpp (>= 1.0.7), utils, R6, promises, later (>= 0.8.0);Rcpp, later;testthat, callr, curl, websocket;NA;GPL (>= 2) | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+httr;/usr/local/lib/R/site-library;1.4.4;NA;R (>= 3.2);curl (>= 3.0.0), jsonlite, mime, openssl (>= 0.8), R6;NA;covr, httpuv, jpeg, knitr, png, readr, rmarkdown, testthat(>= 0.8.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+igraph;/usr/local/lib/R/site-library;1.3.5;NA;methods;graphics, grDevices, magrittr, Matrix, pkgconfig (>= 2.0.0),rlang, stats, utils;NA;ape, graph, igraphdata, rgl, scales, stats4, tcltk, testthat,withr, digest;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+impute;/usr/local/lib/R/site-library;1.68.0;NA;R (>= 2.10);NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+ini;/usr/local/lib/R/site-library;0.3.1;NA;NA;NA;NA;testthat;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+InteractionSet;/usr/local/lib/R/site-library;1.22.0;NA;GenomicRanges, SummarizedExperiment;methods, Matrix, Rcpp, BiocGenerics, S4Vectors (>= 0.27.12),IRanges, GenomeInfoDb;Rcpp;testthat, knitr, rmarkdown, BiocStyle;NA;GPL-3;NA;NA;NA;NA;yes;4.1.2
+IRanges;/usr/local/lib/R/site-library;2.28.0;NA;R (>= 4.0.0), methods, utils, stats, BiocGenerics (>= 0.39.2),S4Vectors (>= 0.29.19);stats4;S4Vectors;XVector, GenomicRanges, Rsamtools, GenomicAlignments,GenomicFeatures, BSgenome.Celegans.UCSC.ce2, pasillaBamSubset,RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+isoband;/usr/local/lib/R/site-library;0.2.6;NA;NA;grid, utils;NA;covr, ggplot2, knitr, magick, microbenchmark, rmarkdown, sf,testthat, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+iterators;/usr/local/lib/R/site-library;1.0.14;NA;R (>= 2.5.0), utils;NA;NA;RUnit, foreach;NA;Apache License (== 2.0);NA;NA;NA;NA;no;4.1.2
+jquerylib;/usr/local/lib/R/site-library;0.1.4;NA;NA;htmltools;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+jsonlite;/usr/local/lib/R/site-library;1.8.2;NA;methods;NA;NA;httr, vctrs, testthat, knitr, rmarkdown, R.rsp, sf;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+knitr;/usr/local/lib/R/site-library;1.40;NA;R (>= 3.3.0);evaluate (>= 0.15), highr, methods, stringr (>= 0.6), yaml (>=2.1.19), xfun (>= 0.29), tools;NA;markdown, formatR, testit, digest, rgl (>= 0.95.1201),codetools, rmarkdown, htmlwidgets (>= 0.7), webshot, tikzDevice(>= 0.10), tinytex, reticulate (>= 1.4), JuliaCall (>= 0.11.1),magick, png, jpeg, gifski, xml2 (>= 1.2.0), httr, DBI (>=0.4-1), showtext, tibble, sass, bslib, ragg, gridSVG, styler(>= 1.2.0), targets (>= 0.6.0);NA;GPL;NA;NA;NA;NA;no;4.1.2
+labeling;/usr/local/lib/R/site-library;0.4.2;NA;NA;stats, graphics;NA;NA;NA;MIT + file LICENSE | Unlimited;NA;NA;NA;NA;no;4.1.2
+lambda.r;/usr/local/lib/R/site-library;1.2.4;NA;R (>= 3.0.0);formatR;NA;testit;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+later;/usr/local/lib/R/site-library;1.3.0;NA;NA;Rcpp (>= 0.12.9), rlang;Rcpp;knitr, rmarkdown, testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+lazyeval;/usr/local/lib/R/site-library;0.2.2;NA;R (>= 3.1.0);NA;NA;knitr, rmarkdown (>= 0.2.65), testthat, covr;NA;GPL-3;NA;NA;NA;NA;yes;4.1.2
+lemon;/usr/local/lib/R/site-library;0.4.6;NA;R (>= 3.1.0);ggplot2 (>= 3.4.0), plyr, grid, gridExtra, gtable, knitr (>=1.12), lattice, scales;NA;rmarkdown, stringr, dplyr, testthat, vdiffr, diffviewer;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+lifecycle;/usr/local/lib/R/site-library;1.0.3;NA;R (>= 3.4);cli (>= 3.4.0), glue, rlang (>= 1.0.6);NA;covr, crayon, knitr, lintr, rmarkdown, testthat (>= 3.0.1),tibble, tidyverse, tools, vctrs, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+limma;/usr/local/lib/R/site-library;3.50.3;NA;R (>= 3.6.0);grDevices, graphics, stats, utils, methods;NA;affy, AnnotationDbi, BiasedUrn, Biobase, ellipse, GO.db,gplots, illuminaio, locfit, MASS, org.Hs.eg.db, splines,statmod (>= 1.2.2), vsn;NA;GPL (>=2);NA;NA;NA;NA;yes;4.1.2
+linl;/usr/local/lib/R/site-library;0.0.4;NA;NA;rmarkdown, knitr;NA;testthat, yaml;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+listenv;/usr/local/lib/R/site-library;0.8.0;NA;R (>= 3.1.2);NA;NA;R.utils, R.rsp, markdown;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+lubridate;/usr/local/lib/R/site-library;1.8.0;NA;methods, R (>= 3.2);generics;cpp11 (>= 0.2.7);covr, knitr, testthat (>= 2.1.0), vctrs (>= 0.3.0), rmarkdown;chron, timeDate, tis, zoo;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+magrittr;/usr/local/lib/R/site-library;2.0.3;NA;R (>= 3.4.0);NA;NA;covr, knitr, rlang, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+markdown;/usr/local/lib/R/site-library;1.1;NA;R (>= 2.11.1);utils, xfun, mime (>= 0.3);NA;knitr, RCurl;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+marray;/usr/local/lib/R/site-library;1.72.0;NA;R (>= 2.10.0), limma, methods;NA;NA;tkWidgets;NA;LGPL;NA;NA;NA;NA;no;4.1.2
+MatrixGenerics;/usr/local/lib/R/site-library;1.6.0;NA;matrixStats (>= 0.60.1);methods;NA;sparseMatrixStats, DelayedMatrixStats, SummarizedExperiment,testthat (>= 2.1.0);NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+matrixStats;/usr/local/lib/R/site-library;0.62.0;NA;R (>= 2.12.0);NA;NA;base64enc, ggplot2, knitr, markdown, microbenchmark,R.devices, R.rsp;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+memoise;/usr/local/lib/R/site-library;2.0.1;NA;NA;rlang (>= 0.4.10), cachem;NA;digest, aws.s3, covr, googleAuthR, googleCloudStorageR, httr,testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+mgcv;/usr/local/lib/R/site-library;1.8-40;recommended;R (>= 3.6.0), nlme (>= 3.1-64);methods, stats, graphics, Matrix, splines, utils;NA;parallel, survival, MASS;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+mime;/usr/local/lib/R/site-library;0.12;NA;NA;tools;NA;NA;NA;GPL;NA;NA;NA;NA;yes;4.1.2
+miniUI;/usr/local/lib/R/site-library;0.1.1.1;NA;NA;shiny (>= 0.13), htmltools (>= 0.3), utils;NA;NA;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+munsell;/usr/local/lib/R/site-library;0.5.0;NA;NA;colorspace, methods;NA;ggplot2, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+openssl;/usr/local/lib/R/site-library;2.0.3;NA;NA;askpass;NA;curl, testthat (>= 2.1.0), digest, knitr, rmarkdown,jsonlite, jose, sodium;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+parallelly;/usr/local/lib/R/site-library;1.32.1;NA;NA;parallel, tools, utils;NA;NA;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+patchwork;/usr/local/lib/R/site-library;1.1.2;NA;NA;ggplot2 (>= 3.0.0), gtable, grid, stats, grDevices, utils,graphics;NA;knitr, rmarkdown, gridGraphics, gridExtra, ragg, testthat (>=2.1.0), vdiffr, covr, png;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pdftools;/usr/local/lib/R/site-library;3.3.1;NA;NA;Rcpp (>= 0.12.12), qpdf;Rcpp;png, webp, tesseract, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+phangorn;/usr/local/lib/R/site-library;2.10.0;NA;ape (>= 5.6), R (>= 4.1.0);digest, fastmatch, generics, graphics, grDevices, igraph (>=1.0), Matrix, methods, parallel, quadprog, Rcpp, stats, utils;Rcpp;Biostrings, knitr, magick, prettydoc, rgl, rmarkdown, seqinr,seqLogo, tinytest, xtable;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+pheatmap;/usr/local/lib/R/site-library;1.0.12;NA;R (>= 2.0);grid, RColorBrewer, scales, gtable, stats, grDevices, graphics;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+phylotate;/usr/local/lib/R/site-library;1.3;NA;R (>= 3.0.0);NA;NA;ape;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pillar;/usr/local/lib/R/site-library;1.8.1;NA;NA;cli (>= 2.3.0), fansi, glue, lifecycle, rlang (>= 1.0.2), utf8(>= 1.1.0), utils, vctrs (>= 0.3.8);NA;bit64, debugme, DiagrammeR, dplyr, formattable, ggplot2,knitr, lubridate, nanotime, nycflights13, palmerpenguins,rmarkdown, scales, stringi, survival, testthat (>= 3.1.1),tibble, units (>= 0.7.2), vdiffr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pinp;/usr/local/lib/R/site-library;0.0.10;NA;NA;rmarkdown, knitr;NA;NA;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+pixmap;/usr/local/lib/R/site-library;0.4-12;NA;NA;methods, graphics, grDevices;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+pkgbuild;/usr/local/lib/R/site-library;1.3.1;NA;R (>= 3.1);callr (>= 3.2.0), cli, crayon, desc, prettyunits, R6,rprojroot, withr (>= 2.3.0);NA;Rcpp, cpp11, testthat, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pkgconfig;/usr/local/lib/R/site-library;2.0.3;NA;NA;utils;NA;covr, testthat, disposables (>= 1.0.3);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pkgload;/usr/local/lib/R/site-library;1.3.0;NA;R (>= 3.4.0);cli (>= 3.3.0), crayon, desc, fs, glue, methods, rlang (>=1.0.3), rprojroot, utils, withr (>= 2.4.3);NA;bitops, covr, mathjaxr, pak, pkgbuild, Rcpp, remotes,rstudioapi, testthat (>= 3.1.0);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+plyr;/usr/local/lib/R/site-library;1.8.7;NA;R (>= 3.1.0);Rcpp (>= 0.11.0);Rcpp;abind, covr, doParallel, foreach, iterators, itertools,tcltk, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+praise;/usr/local/lib/R/site-library;1.0.0;NA;NA;NA;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+prettyunits;/usr/local/lib/R/site-library;1.1.1;NA;NA;NA;NA;codetools, covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+processx;/usr/local/lib/R/site-library;3.7.0;NA;R (>= 3.4.0);ps (>= 1.2.0), R6, utils;NA;callr (>= 3.7.0), cli (>= 3.3.0), codetools, covr, curl,debugme, parallel, rlang (>= 1.0.2), testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+profvis;/usr/local/lib/R/site-library;0.3.7;NA;R (>= 3.0);htmlwidgets (>= 0.3.2), stringr;NA;knitr, ggplot2, rmarkdown, testthat, devtools, shiny,htmltools;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+progress;/usr/local/lib/R/site-library;1.2.2;NA;NA;hms, prettyunits, R6, crayon;NA;Rcpp, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+promises;/usr/local/lib/R/site-library;1.2.0.1;NA;NA;R6, Rcpp, later, rlang, stats, magrittr;later, Rcpp;testthat, future (>= 1.21.0), fastmap (>= 1.1.0), purrr,knitr, rmarkdown, vembedr, spelling;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ps;/usr/local/lib/R/site-library;1.7.1;NA;R (>= 3.4);utils;NA;callr, covr, curl, pillar, pingr, processx (>= 3.1.0), R6,rlang, testthat (>= 3.0.0),;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+purrr;/usr/local/lib/R/site-library;0.3.5;NA;R (>= 3.2);magrittr (>= 1.5), rlang (>= 0.3.1);NA;covr, crayon, dplyr (>= 0.7.8), httr, knitr, rmarkdown,testthat, tibble, tidyselect, vctrs;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+QDNAseq;/usr/local/lib/R/site-library;1.30.0;NA;R (>= 3.1.0);graphics, methods, stats, utils, Biobase (>= 2.18.0), CGHbase(>= 1.18.0), CGHcall (>= 2.18.0), DNAcopy (>= 1.32.0),GenomicRanges (>= 1.20), IRanges (>= 2.2), matrixStats (>=0.60.0), R.utils (>= 2.9.0), Rsamtools (>= 1.20), future.apply(>= 1.8.1);NA;BiocStyle (>= 1.8.0), BSgenome (>= 1.38.0), digest (>=0.6.20), GenomeInfoDb (>= 1.6.0), future (>= 1.22.1),parallelly (>= 1.28.1), R.cache (>= 0.13.0), QDNAseq.hg19,QDNAseq.mm10;NA;GPL;NA;NA;NA;NA;no;4.1.2
+qpdf;/usr/local/lib/R/site-library;1.3.0;NA;NA;Rcpp, askpass, curl;Rcpp;testthat;NA;Apache License 2.0;NA;NA;NA;NA;yes;4.1.2
+qqman;/usr/local/lib/R/site-library;0.1.8;NA;R (>= 3.0.0),;calibrate;NA;knitr, rmarkdown;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+quadprog;/usr/local/lib/R/site-library;1.5-8;NA;R (>= 3.1.0);NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+R.methodsS3;/usr/local/lib/R/site-library;1.8.2;NA;R (>= 2.13.0);utils;NA;codetools;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R.oo;/usr/local/lib/R/site-library;1.25.0;NA;R (>= 2.13.0), R.methodsS3 (>= 1.8.1);methods, utils;NA;tools;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R.utils;/usr/local/lib/R/site-library;2.12.0;NA;R (>= 2.14.0), R.oo (>= 1.24.0);methods, utils, tools, R.methodsS3 (>= 1.8.1);NA;datasets, digest (>= 0.6.10);NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R6;/usr/local/lib/R/site-library;2.5.1;NA;R (>= 3.0);NA;NA;testthat, pryr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+rappdirs;/usr/local/lib/R/site-library;0.3.3;NA;R (>= 3.2);NA;NA;roxygen2, testthat (>= 3.0.0), covr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rcmdcheck;/usr/local/lib/R/site-library;1.4.0;NA;NA;callr (>= 3.1.1.9000), cli (>= 3.0.0), curl, desc (>= 1.2.0),digest, pkgbuild, prettyunits, R6, rprojroot, sessioninfo (>=1.1.1), utils, withr, xopen;NA;covr, knitr, mockery, processx, ps, rmarkdown, svglite,testthat, webfakes;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+RColorBrewer;/usr/local/lib/R/site-library;1.1-3;NA;R (>= 2.0.0);NA;NA;NA;NA;Apache License 2.0;NA;NA;NA;NA;no;4.1.2
+Rcpp;/usr/local/lib/R/site-library;1.0.9;NA;NA;methods, utils;NA;tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+RCurl;/usr/local/lib/R/site-library;1.98-1.9;NA;R (>= 3.4.0), methods;bitops;NA;XML;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+readr;/usr/local/lib/R/site-library;2.1.3;NA;R (>= 3.4);cli (>= 3.2.0), clipr, crayon, hms (>= 0.4.1), lifecycle (>=0.2.0), methods, R6, rlang, tibble, utils, vroom (>= 1.6.0);cpp11, tzdb (>= 0.1.1);covr, curl, datasets, knitr, rmarkdown, spelling, stringi,testthat (>= 3.1.2), tzdb (>= 0.1.1), waldo, withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rematch2;/usr/local/lib/R/site-library;2.1.2;NA;NA;tibble;NA;covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+remotes;/usr/local/lib/R/site-library;2.4.2;NA;R (>= 3.0.0);methods, stats, tools, utils;NA;brew, callr, codetools, curl, covr, git2r (>= 0.23.0), knitr,mockery, pkgbuild (>= 1.0.1), pingr, rmarkdown, rprojroot,testthat, webfakes, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+reshape2;/usr/local/lib/R/site-library;1.4.4;NA;R (>= 3.1);plyr (>= 1.8.1), Rcpp, stringr;Rcpp;covr, lattice, testthat (>= 0.8.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rhdf5;/usr/local/lib/R/site-library;2.38.1;NA;R (>= 4.0.0), methods;Rhdf5lib (>= 1.13.4), rhdf5filters;Rhdf5lib;bit64, BiocStyle, knitr, rmarkdown, testthat, microbenchmark,dplyr, ggplot2, mockery;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+rhdf5filters;/usr/local/lib/R/site-library;1.6.0;NA;NA;NA;Rhdf5lib;BiocStyle, knitr, rmarkdown, testthat (>= 2.1.0), rhdf5 (>=2.34.0);NA;BSD_2_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+Rhdf5lib;/usr/local/lib/R/site-library;1.16.0;NA;R (>= 4.0.0);NA;NA;BiocStyle, knitr, rmarkdown, tinytest, mockery;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+Rhtslib;/usr/local/lib/R/site-library;1.26.0;NA;NA;zlibbioc;zlibbioc;knitr, rmarkdown, BiocStyle;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+rlang;/usr/local/lib/R/site-library;1.1.0;NA;R (>= 3.5.0);utils;NA;cli (>= 3.1.0), covr, crayon, fs, glue, knitr, magrittr,methods, pillar, rmarkdown, stats, testthat (>= 3.0.0), tibble,usethis, vctrs (>= 0.2.3), withr;winch;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rmarkdown;/usr/local/lib/R/site-library;2.17;NA;R (>= 3.0);bslib (>= 0.2.5.1), evaluate (>= 0.13), htmltools (>= 0.5.1),jquerylib, jsonlite, knitr (>= 1.22), methods, stringr (>=1.2.0), tinytex (>= 0.31), tools, utils, xfun (>= 0.30), yaml(>= 2.1.19);NA;digest, dygraphs, fs, rsconnect, downlit (>= 0.4.0), katex(>= 1.4.0), sass (>= 0.4.0), shiny (>= 1.6.0), testthat (>=3.0.3), tibble, tufte, vctrs, withr (>= 2.4.2);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+roxygen2;/usr/local/lib/R/site-library;7.2.1;NA;R (>= 3.3);brew, cli (>= 3.3.0), commonmark, desc (>= 1.2.0), digest,knitr, methods, pkgload (>= 1.0.2), purrr (>= 0.3.3), R6 (>=2.1.2), rlang (>= 1.0.0), stringi, stringr (>= 1.0.0), utils,withr, xml2;cpp11;covr, R.methodsS3, R.oo, rmarkdown, testthat (>= 3.1.2), yaml;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rprojroot;/usr/local/lib/R/site-library;2.0.3;NA;R (>= 3.0.0);NA;NA;covr, knitr, lifecycle, mockr, rmarkdown, testthat (>=3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+Rsamtools;/usr/local/lib/R/site-library;2.10.0;NA;methods, GenomeInfoDb (>= 1.1.3), GenomicRanges (>= 1.31.8),Biostrings (>= 2.47.6), R (>= 3.5.0);utils, BiocGenerics (>= 0.25.1), S4Vectors (>= 0.17.25),IRanges (>= 2.13.12), XVector (>= 0.19.7), zlibbioc, bitops,BiocParallel, stats;Rhtslib (>= 1.17.7), S4Vectors, IRanges, XVector, Biostrings;GenomicAlignments, ShortRead (>= 1.19.10), GenomicFeatures,TxDb.Dmelanogaster.UCSC.dm3.ensGene,TxDb.Hsapiens.UCSC.hg18.knownGene, RNAseqData.HNRNPC.bam.chr14,BSgenome.Hsapiens.UCSC.hg19, RUnit, BiocStyle;NA;Artistic-2.0 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rstudioapi;/usr/local/lib/R/site-library;0.14;NA;NA;NA;NA;testthat, knitr, rmarkdown, clipr, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+rversions;/usr/local/lib/R/site-library;2.1.2;NA;NA;curl, utils, xml2 (>= 1.0.0);NA;covr, mockery, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+S4Vectors;/usr/local/lib/R/site-library;0.32.4;NA;R (>= 4.0.0), methods, utils, stats, stats4, BiocGenerics (>=0.37.0);NA;NA;IRanges, GenomicRanges, SummarizedExperiment, Matrix,DelayedArray, ShortRead, graph, data.table, RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+sass;/usr/local/lib/R/site-library;0.4.2;NA;NA;fs, rlang (>= 0.4.10), htmltools (>= 0.5.1), R6, rappdirs;NA;testthat, knitr, rmarkdown, withr, shiny, curl;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+scales;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 3.2);farver (>= 2.0.3), labeling, lifecycle, munsell (>= 0.5), R6,RColorBrewer, rlang (>= 1.0.0), viridisLite;NA;bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), stringi,testthat (>= 3.0.0), waldo (>= 0.4.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+scoper;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 4.0), ggplot2 (>= 3.3.4);alakazam (>= 1.2.0), shazam (>= 1.1.0), data.table,doParallel, dplyr (>= 1.0), foreach, methods, Rcpp (>=0.12.12), rlang, scales, stats, stringi, tidyr (>= 1.0);Rcpp;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;yes;4.1.2
+segmented;/usr/local/lib/R/site-library;1.6-0;NA;MASS, nlme;NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.1.2
+seqinr;/usr/local/lib/R/site-library;4.2-16;NA;R (>= 2.10.0);ade4,segmented;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+sessioninfo;/usr/local/lib/R/site-library;1.2.2;NA;R (>= 2.10);cli (>= 3.1.0), tools, utils;NA;callr, covr, mockery, reticulate, rmarkdown, testthat, withr;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+shazam;/usr/local/lib/R/site-library;1.1.2;NA;R (>= 3.5.0), ggplot2 (>= 3.3.4);alakazam (>= 1.1.0), ape, diptest, doParallel, dplyr (>=0.8.1), foreach, graphics, grid, igraph, iterators, KernSmooth,lazyeval, MASS, methods, parallel, progress, rlang, scales,seqinr, stats, stringi (>= 1.1.3), tidyr, tidyselect, utils;NA;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;no;4.1.2
+shiny;/usr/local/lib/R/site-library;1.7.2;NA;R (>= 3.0.2), methods;utils, grDevices, httpuv (>= 1.5.2), mime (>= 0.3), jsonlite(>= 0.9.16), xtable, fontawesome (>= 0.2.1), htmltools (>=0.5.2), R6 (>= 2.0), sourcetools, later (>= 1.0.0), promises(>= 1.1.0), tools, crayon, rlang (>= 0.4.10), fastmap (>=1.1.0), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=0.3.0), cachem, ellipsis, lifecycle (>= 0.2.0);NA;datasets, Cairo (>= 1.5-5), testthat (>= 3.0.0), knitr (>=1.6), markdown, rmarkdown, ggplot2, reactlog (>= 1.0.0),magrittr, yaml, future, dygraphs, ragg, showtext, sass;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;no;4.1.2
+snow;/usr/local/lib/R/site-library;0.4-4;NA;R (>= 2.13.1), utils;NA;NA;rlecuyer;Rmpi;GPL;NA;NA;NA;NA;no;4.1.2
+snowfall;/usr/local/lib/R/site-library;1.84-6.2;NA;R (>= 2.10), snow;NA;NA;Rmpi;NA;GPL;NA;NA;NA;NA;no;4.1.2
+sourcetools;/usr/local/lib/R/site-library;0.1.7;NA;R (>= 3.0.2);NA;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+sp;/usr/local/lib/R/site-library;1.5-0;NA;R (>= 3.0.0), methods;utils, stats, graphics, grDevices, lattice, grid;NA;RColorBrewer, rgdal (>= 1.2-3), rgeos (>= 0.3-13), gstat,maptools, deldir, knitr, rmarkdown, sf;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+stringi;/usr/local/lib/R/site-library;1.7.8;NA;R (>= 3.1);tools, utils, stats;NA;NA;NA;file LICENSE;NA;NA;NA;NA;yes;4.1.2
+stringr;/usr/local/lib/R/site-library;1.4.1;NA;R (>= 3.1);glue (>= 1.2.0), magrittr, stringi (>= 1.1.7);NA;covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat;NA;GPL-2 | file LICENSE;NA;NA;NA;NA;no;4.1.2
+SummarizedExperiment;/usr/local/lib/R/site-library;1.24.0;NA;R (>= 4.0.0), methods, MatrixGenerics (>= 1.1.3),GenomicRanges (>= 1.41.5), Biobase;utils, stats, tools, Matrix, BiocGenerics (>= 0.37.0),S4Vectors (>= 0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>=1.13.1), DelayedArray (>= 0.15.10);NA;HDF5Array (>= 1.7.5), annotate, AnnotationDbi, hgu95av2.db,GenomicFeatures, TxDb.Hsapiens.UCSC.hg19.knownGene, jsonlite,rhdf5, airway, BiocStyle, knitr, rmarkdown, RUnit, testthat,digest;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+svglite;/usr/local/lib/R/site-library;2.1.1;NA;R (>= 3.0.0);systemfonts (>= 1.0.0);cpp11, systemfonts;covr, fontquiver (>= 0.2.0), htmltools, knitr, rmarkdown,testthat, xml2 (>= 1.0.0);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+sys;/usr/local/lib/R/site-library;3.4;NA;NA;NA;NA;unix (>= 1.4), spelling, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+systemfonts;/usr/local/lib/R/site-library;1.0.4;NA;R (>= 3.2.0);NA;cpp11 (>= 0.2.1);testthat (>= 2.1.0), covr, knitr, rmarkdown, tools;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+testthat;/usr/local/lib/R/site-library;3.1.5;NA;R (>= 3.1);brio, callr (>= 3.5.1), cli (>= 3.4.0), desc, digest, ellipsis(>= 0.2.0), evaluate, jsonlite, lifecycle, magrittr, methods,pkgload, praise, processx, ps (>= 1.3.4), R6 (>= 2.2.0), rlang(>= 1.0.1), utils, waldo (>= 0.4.0), withr (>= 2.4.3);NA;covr, curl (>= 0.9.5), diffviewer (>= 0.1.0), knitr, mockery,rmarkdown, rstudioapi, shiny, usethis, vctrs (>= 0.1.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tibble;/usr/local/lib/R/site-library;3.1.8;NA;R (>= 3.1.0);fansi (>= 0.4.0), lifecycle (>= 1.0.0), magrittr, methods,pillar (>= 1.7.0), pkgconfig, rlang (>= 1.0.2), utils, vctrs(>= 0.3.8);NA;bench, bit64, blob, brio, callr, cli, covr, crayon (>=1.3.4), DiagrammeR, dplyr, evaluate, formattable, ggplot2, hms,htmltools, knitr, lubridate, mockr, nycflights13, pkgbuild,pkgload, purrr, rmarkdown, stringi, testthat (>= 3.0.2), tidyr,withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tidyr;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 3.1);dplyr (>= 1.0.0), ellipsis (>= 0.1.0), glue, lifecycle,magrittr, purrr, rlang, tibble (>= 2.1.1), tidyselect (>=1.1.0), utils, vctrs (>= 0.3.7);cpp11 (>= 0.4.0);covr, data.table, jsonlite, knitr, readr, repurrrsive (>=1.0.0), rmarkdown, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tidyselect;/usr/local/lib/R/site-library;1.2.0;NA;R (>= 3.4);cli (>= 3.3.0), glue (>= 1.3.0), lifecycle (>= 1.0.3), rlang(>= 1.0.4), vctrs (>= 0.4.1), withr;NA;covr, crayon, dplyr, knitr, magrittr, rmarkdown, stringr,testthat (>= 3.1.1), tibble (>= 2.1.3);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+tidytree;/usr/local/lib/R/site-library;0.4.1;NA;R (>= 3.4.0);ape, dplyr, lazyeval, magrittr, methods, rlang, tibble, tidyr,tidyselect, yulab.utils (>= 0.0.4), pillar;NA;knitr, rmarkdown, prettydoc, testthat, utils;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+tint;/usr/local/lib/R/site-library;0.1.3;NA;NA;htmltools, knitr, rmarkdown;NA;ggplot2;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+tinytex;/usr/local/lib/R/site-library;0.42;NA;NA;xfun (>= 0.29);NA;testit, rstudioapi;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+treeio;/usr/local/lib/R/site-library;1.18.1;NA;R (>= 3.6.0);ape, dplyr, jsonlite, magrittr, methods, rlang, tibble,tidytree (>= 0.3.0), utils;NA;Biostrings, ggplot2, ggtree, igraph, knitr, rmarkdown,phangorn, prettydoc, testthat, tidyr, vroom, xml2, yaml;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+tzdb;/usr/local/lib/R/site-library;0.3.0;NA;R (>= 3.4.0);NA;cpp11 (>= 0.4.2);covr, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+urlchecker;/usr/local/lib/R/site-library;1.0.1;NA;R (>= 3.3);cli, curl, tools, xml2;NA;covr;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+usethis;/usr/local/lib/R/site-library;2.1.6;NA;R (>= 3.4);cli (>= 3.0.1), clipr (>= 0.3.0), crayon, curl (>= 2.7), desc(>= 1.4.0), fs (>= 1.3.0), gert (>= 1.4.1), gh (>= 1.2.1), glue(>= 1.3.0), jsonlite, lifecycle (>= 1.0.0), purrr, rappdirs,rlang (>= 1.0.0), rprojroot (>= 1.2), rstudioapi, stats, utils,whisker, withr (>= 2.3.0), yaml;NA;covr, knitr, magick, mockr, pkgload, rmarkdown, roxygen2 (>=7.1.2), spelling (>= 1.2), styler (>= 1.2.0), testthat (>=3.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+utf8;/usr/local/lib/R/site-library;1.2.2;NA;R (>= 2.10);NA;NA;cli, covr, knitr, rlang, rmarkdown, testthat (>= 3.0.0),withr;NA;Apache License (== 2.0) | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+vctrs;/usr/local/lib/R/site-library;0.6.1;NA;R (>= 3.5.0);cli (>= 3.4.0), glue, lifecycle (>= 1.0.3), rlang (>= 1.1.0);NA;bit64, covr, crayon, dplyr (>= 0.8.5), generics, knitr,pillar (>= 1.4.4), pkgdown (>= 2.0.1), rmarkdown, testthat (>=3.0.0), tibble (>= 3.1.3), waldo (>= 0.2.0), withr, xml2,zeallot;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+viridisLite;/usr/local/lib/R/site-library;0.4.1;NA;R (>= 2.10);NA;NA;hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+vroom;/usr/local/lib/R/site-library;1.6.0;NA;R (>= 3.4);bit64, cli (>= 3.2.0), crayon, glue, hms, lifecycle, methods,rlang (>= 0.4.2), stats, tibble (>= 2.0.0), tidyselect, tzdb(>= 0.1.1), vctrs (>= 0.2.0), withr;cpp11 (>= 0.2.0), progress (>= 1.2.1), tzdb (>= 0.1.1);archive, bench (>= 1.1.0), covr, curl, dplyr, forcats, fs,ggplot2, knitr, patchwork, prettyunits, purrr, rmarkdown,rstudioapi, scales, spelling, testthat (>= 2.1.0), tidyr,utils, waldo, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+waldo;/usr/local/lib/R/site-library;0.4.0;NA;NA;cli, diffobj (>= 0.3.4), fansi, glue, methods, rematch2, rlang(>= 1.0.0), tibble;NA;covr, R6, testthat (>= 3.0.0), withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+whisker;/usr/local/lib/R/site-library;0.4;NA;NA;NA;NA;markdown;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+withr;/usr/local/lib/R/site-library;2.5.0;NA;R (>= 3.2.0);graphics, grDevices, stats;NA;callr, covr, DBI, knitr, lattice, methods, rlang, rmarkdown(>= 2.12), RSQLite, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+xfun;/usr/local/lib/R/site-library;0.33;NA;NA;stats, tools;NA;testit, parallel, codetools, rstudioapi, tinytex (>= 0.30),mime, markdown, knitr, htmltools, remotes, pak, rhub, renv,curl, jsonlite, magick, rmarkdown;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+xml2;/usr/local/lib/R/site-library;1.3.3;NA;R (>= 3.1.0);methods;NA;covr, curl, httr, knitr, magrittr, mockery, rmarkdown,testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+xopen;/usr/local/lib/R/site-library;1.0.0;NA;R (>= 3.1);processx;NA;ps, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+xtable;/usr/local/lib/R/site-library;1.8-4;NA;R (>= 2.10.0);stats, utils;NA;knitr, plm, zoo, survival;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+XVector;/usr/local/lib/R/site-library;0.34.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9);methods, utils, tools, zlibbioc, BiocGenerics, S4Vectors,IRanges;S4Vectors, IRanges;Biostrings, drosophila2probe, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+yaml;/usr/local/lib/R/site-library;2.3.5;NA;NA;NA;NA;RUnit;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+yulab.utils;/usr/local/lib/R/site-library;0.0.5;NA;NA;utils;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+zip;/usr/local/lib/R/site-library;2.2.1;NA;NA;NA;NA;covr, processx, R6, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+zlibbioc;/usr/local/lib/R/site-library;1.40.0;NA;NA;NA;NA;NA;NA;Artistic-2.0 + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+littler;/usr/lib/R/site-library;0.3.15;NA;NA;NA;NA;simplermarkdown, docopt, rcmdcheck, foghorn;NA;GPL (>= 2);NA;NA;unix;NA;yes;4.1.2
+base;/usr/lib/R/library;4.1.2;base;NA;NA;NA;methods;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+boot;/usr/lib/R/library;1.3-28;recommended;R (>= 3.0.0), graphics, stats;NA;NA;MASS, survival;NA;Unlimited;NA;NA;NA;NA;no;4.0.5
+class;/usr/lib/R/library;7.3-20;recommended;R (>= 3.0.0), stats, utils;MASS;NA;NA;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+cluster;/usr/lib/R/library;2.1.2;recommended;R (>= 3.4.0);graphics, grDevices, stats, utils;NA;MASS, Matrix;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+codetools;/usr/lib/R/library;0.2-18;recommended;R (>= 2.1);NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.0.3
+compiler;/usr/lib/R/library;4.1.2;base;NA;NA;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+datasets;/usr/lib/R/library;4.1.2;base;NA;NA;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+foreign;/usr/lib/R/library;0.8-82;recommended;R (>= 4.0.0);methods, utils, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+graphics;/usr/lib/R/library;4.1.2;base;NA;grDevices;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+grDevices;/usr/lib/R/library;4.1.2;base;NA;NA;NA;KernSmooth;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+grid;/usr/lib/R/library;4.1.2;base;NA;grDevices, utils;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+KernSmooth;/usr/lib/R/library;2.23-20;recommended;R (>= 2.5.0), stats;NA;NA;MASS, carData;NA;Unlimited;NA;NA;NA;NA;yes;4.0.5
+lattice;/usr/lib/R/library;0.20-45;recommended;R (>= 3.0.0);grid, grDevices, graphics, stats, utils;NA;KernSmooth, MASS, latticeExtra;chron;GPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+MASS;/usr/lib/R/library;7.3-55;recommended;R (>= 3.3.0), grDevices, graphics, stats, utils;methods;NA;lattice, nlme, nnet, survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+Matrix;/usr/lib/R/library;1.4-0;recommended;R (>= 3.5.0);methods, graphics, grid, stats, utils, lattice;NA;expm, MASS;MatrixModels, graph, SparseM, sfsmisc, igraph, maptools, sp,spdep;GPL (>= 2) | file LICENCE;NA;NA;NA;NA;yes;4.1.2
+methods;/usr/lib/R/library;4.1.2;base;NA;utils, stats;NA;codetools;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+mgcv;/usr/lib/R/library;1.8-38;recommended;R (>= 3.6.0), nlme (>= 3.1-64);methods, stats, graphics, Matrix, splines, utils;NA;parallel, survival, MASS;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+nlme;/usr/lib/R/library;3.1-155;recommended;R (>= 3.4.0);graphics, stats, utils, lattice;NA;Hmisc, MASS;NA;GPL (>= 2) | file LICENCE;NA;NA;NA;NA;yes;4.1.2
+nnet;/usr/lib/R/library;7.3-17;recommended;R (>= 3.0.0), stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+parallel;/usr/lib/R/library;4.1.2;base;NA;tools, compiler;NA;methods;snow, nws, Rmpi;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+rpart;/usr/lib/R/library;4.1.16;recommended;R (>= 2.15.0), graphics, stats, grDevices;NA;NA;survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+spatial;/usr/lib/R/library;7.3-15;recommended;R (>= 3.0.0), graphics, stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+splines;/usr/lib/R/library;4.1.2;base;NA;graphics, stats;NA;Matrix, methods;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+stats;/usr/lib/R/library;4.1.2;base;NA;utils, grDevices, graphics;NA;MASS, Matrix, SuppDists, methods, stats4;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+stats4;/usr/lib/R/library;4.1.2;base;NA;graphics, methods, stats;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+survival;/usr/lib/R/library;3.2-13;recommended;R (>= 3.5.0);graphics, Matrix, methods, splines, stats, utils;NA;NA;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+tcltk;/usr/lib/R/library;4.1.2;base;NA;utils;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+tools;/usr/lib/R/library;4.1.2;base;NA;NA;NA;codetools, methods, xml2, curl, commonmark;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+utils;/usr/lib/R/library;4.1.2;base;NA;NA;NA;methods, xml2, commonmark;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
diff --git a/R/v4.1.2/ig_clustering/v1.3/Dockerfile b/R/v4.1.2/ig_clustering/v1.3/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..96dcef2da8208c0f63339e42c52a914b6e39d637
--- /dev/null
+++ b/R/v4.1.2/ig_clustering/v1.3/Dockerfile
@@ -0,0 +1,158 @@
+#########################################################################
+##                                                                     ##
+##     Dockerfile                                                      ##
+##     R ig_clustering                                                 ##
+##                                                                     ##
+##     Gael A. Millot                                                  ##
+##     Bioinformatics and Biostatistics Hub                            ##
+##     Computational Biology Department                                ##
+##     Institut Pasteur Paris                                          ##
+##                                                                     ##
+#########################################################################
+
+
+
+# to see the log of the building:
+# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
+# cat building.log
+
+# to export the log file of the image building from the container:
+# sudo docker images
+# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
+# exit
+# sudo docker container ls -a # to get all the active containers
+# sudo docker cp <containerNAMES>:/building.log </host/path/target>
+# sudo docker cp <containerNAMES>:/installed_r_packages.csv </host/path/target>
+
+# base image:
+FROM gmillot/r_v4.1.2_ig_clustering_v1.2:gitlab_v9.8
+# Warning: the name must be exactly what is written in the docker images interface, or sudo docker image ls. Here, the image is present locally, or distantly on the gmillot repo. Thus, gmillot/r-base:4.0.5 is correct.
+
+LABEL Gael.Millot=gael.millot@pasteur.fr
+LABEL gitlab.dockerfiles="https://gitlab.pasteur.fr/gmillot/dockerfiles"
+
+
+ENV APT_GET_LINUX_LIB=""
+
+ENV APT_LINUX_LIB=""
+
+ENV CRANREPO="'https://cran.irsn.fr/'"
+
+ENV BIOCONDUCTOR_REPO="'https://cloud.r-project.org'"
+
+ENV RLIB="\
+  'lemon' \
+"
+
+
+# fun.warning.capture from fun_get_message() of the cute package.
+# I used a first loop because I cannot use array in dockerfiles.
+# Inactivate sink(file = tempo, append = TRUE, type = 'message') for debbuging.
+RUN echo "\n\n\n\n================\n\napt-get update\n\n================\n\n\n\n" > building.log \
+  && add-apt-repository -y ppa:cran/poppler \
+  && apt-get update \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt-get install\n\n================\n\n\n\n" >> building.log \
+  && apt-get install -y $APT_GET_LINUX_LIB \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt install\n\n================\n\n\n\n" >> building.log \
+  && apt -y install $APT_LINUX_LIB \
+    | tee -a building.log \
+  && RLIB_LENGTH=0 \
+  && for i2 in $RLIB ; do RLIB_LENGTH=$((RLIB_LENGTH+1)) ; done \
+  && COUNT=0 \
+  && for i2 in $RLIB ; do \
+    COUNT=$((COUNT+1)) ; \
+    Rscript --vanilla -e " \
+      options(warn = 1, verbose = TRUE) ; \
+      tempo <- file('building.log', open = 'a+b') ; \
+      sink(file = tempo, append = TRUE, type = 'message') ; \
+      fun.warning.capture <- function(expr){ \
+        W <- NULL ; \
+        w.handler <- function(w){ \
+          W <<- w ; \
+          invokeRestart('muffleWarning') \
+        } ; \
+        output <- list( \
+          value = suppressMessages(withCallingHandlers(tryCatch(expr, error = function(e){e}), warning = w.handler)),  \
+          warning = W \
+        ) ; \
+        return(if(is.null(output\$warning)){NULL}else{as.character(output\$warning)}) \
+      } ; \
+      message(paste0('\n\n\n\n================\n\nR PACKAGE INSTALLATION ', $COUNT, ' / ', $RLIB_LENGTH, ': ', $i2, '\n\n================\n\n\n\n')) ; \
+      if( ! ($i2 %in% c('ggplot2', 'SARTools'))){ \
+        tempo.warn <- fun.warning.capture(exp = install.packages(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repo = $CRANREPO)) ; \
+        if(is.null(tempo.warn)){ \
+            tempo <- paste0('STANDARD INSTALLATION ATTEMPT FOR ', $i2) ; \
+            message(paste0('\n\n', tempo, '\n\n')) ; \
+            cat(paste0('\n\n\n', tempo, '\n\n\n')) ; \
+            install.packages(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repo = $CRANREPO) \
+        }else{ \
+            tempo <- paste0('BiocManager INSTALLATION ATTEMPT FOR ', $i2) ; \
+            message(paste0('\n\n', tempo, '\n\n')) ; \
+            cat(paste0('\n\n\n', tempo, '\n\n\n')) ; \
+            BiocManager::install(pkgs = $i2, lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, update = FALSE, site_repository = $BIOCONDUCTOR_REPO) \
+        } \
+      }else if($i2 == 'ggplot2'){ \
+        devtools::install_version(package = 'ggplot2', version = '3.3.3', lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, repos = $CRANREPO) \
+      }else if($i2 == 'SARTools'){ \
+        devtools::install_github('PF2-pasteur-fr/SARTools', build_opts='--no-resave-data', lib = '/usr/local/lib/R/site-library', dependencies = NA, verbose = TRUE, upgrade = "always") \
+      } \
+    " ; \
+  done \
+  && Rscript --vanilla -e  " \
+    options(warn = 1, verbose = TRUE) ; \
+    args <- commandArgs(trailingOnly = TRUE) ; \
+    if(any(is.na(args))){ \
+        stop(paste0('\n\n================\n\nERROR IN plot_insertion.R\nTHE args OBJECT HAS NA\n\n================\n\n'), call. = FALSE) \
+    } ; \
+    tempo.arg.names <- c( \
+        'RLIB' \
+    ) ; \
+    if(length(args) != length(tempo.arg.names)){ \
+        stop(paste0('\n\n================\n\nERROR IN plot_insertion.R\nTHE NUMBER OF ELEMENTS IN args (', length(args),') IS DIFFERENT FROM THE NUMBER OF ELEMENTS IN tempo.arg.names (', length(tempo.arg.names),')\nargs:', paste0(args, collapse = ','), '\ntempo.arg.names:', paste0(tempo.arg.names, collapse = ','), '\n\n================\n\n'), call. = FALSE) \
+    } ; \
+    for(i1 in 1:length(tempo.arg.names)){ \
+        assign(tempo.arg.names[i1], args[i1]) \
+    } ; \
+    RLIB <- strsplit(RLIB, split = ',')[[1]] ; \
+    RLIB <- RLIB[RLIB != ''] ; \
+    if(file.exists('installed_r_packages.csv')){ \
+      file.remove('installed_r_packages.csv') \
+    } ; \
+    if(file.exists('not_installed_r_packages.txt')){ \
+      file.remove('not_installed_r_packages.txt') \
+    } ; \
+    tempo <- file('building.log', open = 'a+b') ; \
+    sink(file = tempo, append = TRUE, type = 'message') ; \
+    message(paste0('\n\n\n\n================\n\nR PACKAGES INSTALLED\n\n================\n\n\n\n')) ; \
+    message('SEE ALSO THE installed_r_packages.csv TABLE IN THE ROOT OF THE CONTAINER\n\n') ; \
+    capture.output(as.data.frame(installed.packages())[1:4], file = tempo, append = TRUE, type = 'output') ; \
+    df <- as.data.frame(installed.packages()) ; \
+    for (i2 in 1:length(df)){ \
+      df[, i2] <- gsub(x = df[, i2], replacement = '', pattern = '\n', fixed = TRUE) \
+    } ; \
+    write.table(x = df, file = 'installed_r_packages.csv', row.names = FALSE, col.names = TRUE, append = FALSE, quote = FALSE, sep = ';') ; \
+    message(paste0('\n\n\n\n================\n\nR PACKAGES NOT INSTALLED\n\n================\n\n\n\n')) ; \
+    df2 <- as.data.frame(RLIB[ ! RLIB %in% df[ , 'Package']]) ; \
+    if(nrow(df2) == 0){ \
+      message('ALL THE PACKAGES HAVE BEEN INSTALLED\n\n') \
+    }else{ \
+      message('SEE ALSO THE not_installed_r_packages.txt TABLE IN THE ROOT OF THE CONTAINER\n\n') ; \
+      names(df2) <- 'Name' ; \
+      capture.output(df2, file = tempo, append = TRUE, type = 'output') ; \
+      write.table(x = df2, file = 'not_installed_r_packages.txt', row.names = FALSE, col.names = TRUE, append = FALSE, quote = FALSE, sep = ';') ; \
+    } \
+  " $(echo "$RLIB" | sed 's/ \{1,\}/,/g' | sed "s/'//g") \
+  && echo "\n\n\n\n================\n\napt-get autoremove\n\n================\n\n\n\n" >> building.log \
+  && apt-get autoremove -y \
+    | tee -a building.log ; echo "\n\n\n\n================\n\napt-get clean\n\n================\n\n\n\n" >> building.log \
+  && apt-get clean \
+    | tee -a building.log ; echo "\n\n\n\n================\n\nrm\n\n================\n\n\n\n" >> building.log \
+  && rm -rf /var/lib/apt/lists/* \
+    | tee -a building.log \
+  && echo "\n\n\n\n================\n\nLINUX PACKAGES INSTALLED\n\n================\n\n\n\n" >> /building.log \
+  && apt-cache policy $APT_GET_LINUX_LIB $APT_LINUX_LIB \
+    >> /building.log
+
+# dependencies=NA means c("Depends", "Imports", "LinkingTo"). Do no use TRUE -> install suggesting packages which inflates tremendously the image.
+
+ENTRYPOINT ["/usr/bin/R"]
diff --git a/R/v4.1.2/ig_clustering/v1.3/building.log b/R/v4.1.2/ig_clustering/v1.3/building.log
new file mode 100644
index 0000000000000000000000000000000000000000..ae9b201bf3ca79f36f1766fa77babd7bdd9b0ca5
--- /dev/null
+++ b/R/v4.1.2/ig_clustering/v1.3/building.log
@@ -0,0 +1,689 @@
+
+
+
+
+================
+
+apt-get update
+
+================
+
+
+
+
+Hit:1 http://ppa.launchpad.net/c2d4u.team/c2d4u4.0+/ubuntu focal InRelease
+Hit:2 http://ppa.launchpad.net/cran/poppler/ubuntu focal InRelease
+Hit:3 http://ppa.launchpad.net/marutter/rrutter4.0/ubuntu focal InRelease
+Hit:4 http://archive.ubuntu.com/ubuntu focal InRelease
+Hit:5 http://security.ubuntu.com/ubuntu focal-security InRelease
+Hit:6 http://archive.ubuntu.com/ubuntu focal-updates InRelease
+Hit:7 http://archive.ubuntu.com/ubuntu focal-backports InRelease
+Reading package lists...
+
+
+
+
+================
+
+apt-get install
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+apt install
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+R PACKAGE INSTALLATION 1 / 1: lemon
+
+================
+
+
+
+
+trying URL 'https://cran.irsn.fr/src/contrib/rlang_1.1.0.tar.gz'
+Content type 'application/x-gzip' length 761991 bytes (744 KB)
+==================================================
+downloaded 744 KB
+
+trying URL 'https://cran.irsn.fr/src/contrib/vctrs_0.6.1.tar.gz'
+Content type 'application/x-gzip' length 964734 bytes (942 KB)
+==================================================
+downloaded 942 KB
+
+trying URL 'https://cran.irsn.fr/src/contrib/ggplot2_3.4.1.tar.gz'
+Content type 'application/x-gzip' length 3150856 bytes (3.0 MB)
+==================================================
+downloaded 3.0 MB
+
+trying URL 'https://cran.irsn.fr/src/contrib/lemon_0.4.6.tar.gz'
+Content type 'application/x-gzip' length 2843925 bytes (2.7 MB)
+==================================================
+downloaded 2.7 MB
+
+
+The downloaded source packages are in
+	‘/tmp/RtmphyDX7o/downloaded_packages’
+
+
+STANDARD INSTALLATION ATTEMPT FOR lemon
+
+
+system (cmd0): /usr/lib/R/bin/R CMD INSTALL
+trying URL 'https://cran.irsn.fr/src/contrib/lemon_0.4.6.tar.gz'
+Content type 'application/x-gzip' length 2843925 bytes (2.7 MB)
+==================================================
+downloaded 2.7 MB
+
+foundpkgs: lemon, /tmp/RtmphyDX7o/downloaded_packages/lemon_0.4.6.tar.gz
+files: /tmp/RtmphyDX7o/downloaded_packages/lemon_0.4.6.tar.gz
+1): succeeded '/usr/lib/R/bin/R CMD INSTALL -l '/usr/local/lib/R/site-library' '/tmp/RtmphyDX7o/downloaded_packages/lemon_0.4.6.tar.gz''
+
+The downloaded source packages are in
+	‘/tmp/RtmphyDX7o/downloaded_packages’
+
+
+
+
+================
+
+R PACKAGES INSTALLED
+
+================
+
+
+
+
+SEE ALSO THE installed_r_packages.csv TABLE IN THE ROOT OF THE CONTAINER
+
+
+now dyn.load("/usr/lib/R/library/tools/libs/tools.so") ...
+                                  Package                       LibPath
+ade4                                 ade4 /usr/local/lib/R/site-library
+airr                                 airr /usr/local/lib/R/site-library
+alakazam                         alakazam /usr/local/lib/R/site-library
+ape                                   ape /usr/local/lib/R/site-library
+aplot                               aplot /usr/local/lib/R/site-library
+askpass                           askpass /usr/local/lib/R/site-library
+base64enc                       base64enc /usr/local/lib/R/site-library
+BH                                     BH /usr/local/lib/R/site-library
+binb                                 binb /usr/local/lib/R/site-library
+Biobase                           Biobase /usr/local/lib/R/site-library
+BiocGenerics                 BiocGenerics /usr/local/lib/R/site-library
+BiocManager                   BiocManager /usr/local/lib/R/site-library
+BiocParallel                 BiocParallel /usr/local/lib/R/site-library
+BiocVersion                   BiocVersion /usr/local/lib/R/site-library
+Biostrings                     Biostrings /usr/local/lib/R/site-library
+bit                                   bit /usr/local/lib/R/site-library
+bit64                               bit64 /usr/local/lib/R/site-library
+bitops                             bitops /usr/local/lib/R/site-library
+brew                                 brew /usr/local/lib/R/site-library
+brio                                 brio /usr/local/lib/R/site-library
+bslib                               bslib /usr/local/lib/R/site-library
+cachem                             cachem /usr/local/lib/R/site-library
+Cairo                               Cairo /usr/local/lib/R/site-library
+calibrate                       calibrate /usr/local/lib/R/site-library
+callr                               callr /usr/local/lib/R/site-library
+CGHbase                           CGHbase /usr/local/lib/R/site-library
+CGHcall                           CGHcall /usr/local/lib/R/site-library
+cli                                   cli /usr/local/lib/R/site-library
+clipr                               clipr /usr/local/lib/R/site-library
+colorspace                     colorspace /usr/local/lib/R/site-library
+commonmark                     commonmark /usr/local/lib/R/site-library
+cpp11                               cpp11 /usr/local/lib/R/site-library
+crayon                             crayon /usr/local/lib/R/site-library
+credentials                   credentials /usr/local/lib/R/site-library
+curl                                 curl /usr/local/lib/R/site-library
+data.table                     data.table /usr/local/lib/R/site-library
+DelayedArray                 DelayedArray /usr/local/lib/R/site-library
+desc                                 desc /usr/local/lib/R/site-library
+diffobj                           diffobj /usr/local/lib/R/site-library
+digest                             digest /usr/local/lib/R/site-library
+diptest                           diptest /usr/local/lib/R/site-library
+DNAcopy                           DNAcopy /usr/local/lib/R/site-library
+docopt                             docopt /usr/local/lib/R/site-library
+doParallel                     doParallel /usr/local/lib/R/site-library
+downlit                           downlit /usr/local/lib/R/site-library
+dowser                             dowser /usr/local/lib/R/site-library
+dplyr                               dplyr /usr/local/lib/R/site-library
+ellipsis                         ellipsis /usr/local/lib/R/site-library
+evaluate                         evaluate /usr/local/lib/R/site-library
+fansi                               fansi /usr/local/lib/R/site-library
+farver                             farver /usr/local/lib/R/site-library
+fastmap                           fastmap /usr/local/lib/R/site-library
+fastmatch                       fastmatch /usr/local/lib/R/site-library
+fontawesome                   fontawesome /usr/local/lib/R/site-library
+foreach                           foreach /usr/local/lib/R/site-library
+formatR                           formatR /usr/local/lib/R/site-library
+fs                                     fs /usr/local/lib/R/site-library
+futile.logger               futile.logger /usr/local/lib/R/site-library
+futile.options             futile.options /usr/local/lib/R/site-library
+future                             future /usr/local/lib/R/site-library
+future.apply                 future.apply /usr/local/lib/R/site-library
+generics                         generics /usr/local/lib/R/site-library
+GenomeInfoDb                 GenomeInfoDb /usr/local/lib/R/site-library
+GenomeInfoDbData         GenomeInfoDbData /usr/local/lib/R/site-library
+GenomicAlignments       GenomicAlignments /usr/local/lib/R/site-library
+GenomicRanges               GenomicRanges /usr/local/lib/R/site-library
+gert                                 gert /usr/local/lib/R/site-library
+ggfun                               ggfun /usr/local/lib/R/site-library
+ggplot2                           ggplot2 /usr/local/lib/R/site-library
+ggplotify                       ggplotify /usr/local/lib/R/site-library
+ggrepel                           ggrepel /usr/local/lib/R/site-library
+ggtree                             ggtree /usr/local/lib/R/site-library
+gh                                     gh /usr/local/lib/R/site-library
+gitcreds                         gitcreds /usr/local/lib/R/site-library
+globals                           globals /usr/local/lib/R/site-library
+glue                                 glue /usr/local/lib/R/site-library
+gridExtra                       gridExtra /usr/local/lib/R/site-library
+gridGraphics                 gridGraphics /usr/local/lib/R/site-library
+gtable                             gtable /usr/local/lib/R/site-library
+gtools                             gtools /usr/local/lib/R/site-library
+HiCcompare                     HiCcompare /usr/local/lib/R/site-library
+highr                               highr /usr/local/lib/R/site-library
+hms                                   hms /usr/local/lib/R/site-library
+htmltools                       htmltools /usr/local/lib/R/site-library
+htmlwidgets                   htmlwidgets /usr/local/lib/R/site-library
+httpuv                             httpuv /usr/local/lib/R/site-library
+httr                                 httr /usr/local/lib/R/site-library
+igraph                             igraph /usr/local/lib/R/site-library
+impute                             impute /usr/local/lib/R/site-library
+ini                                   ini /usr/local/lib/R/site-library
+InteractionSet             InteractionSet /usr/local/lib/R/site-library
+IRanges                           IRanges /usr/local/lib/R/site-library
+isoband                           isoband /usr/local/lib/R/site-library
+iterators                       iterators /usr/local/lib/R/site-library
+jquerylib                       jquerylib /usr/local/lib/R/site-library
+jsonlite                         jsonlite /usr/local/lib/R/site-library
+knitr                               knitr /usr/local/lib/R/site-library
+labeling                         labeling /usr/local/lib/R/site-library
+lambda.r                         lambda.r /usr/local/lib/R/site-library
+later                               later /usr/local/lib/R/site-library
+lazyeval                         lazyeval /usr/local/lib/R/site-library
+lemon                               lemon /usr/local/lib/R/site-library
+lifecycle                       lifecycle /usr/local/lib/R/site-library
+limma                               limma /usr/local/lib/R/site-library
+linl                                 linl /usr/local/lib/R/site-library
+listenv                           listenv /usr/local/lib/R/site-library
+lubridate                       lubridate /usr/local/lib/R/site-library
+magrittr                         magrittr /usr/local/lib/R/site-library
+markdown                         markdown /usr/local/lib/R/site-library
+marray                             marray /usr/local/lib/R/site-library
+MatrixGenerics             MatrixGenerics /usr/local/lib/R/site-library
+matrixStats                   matrixStats /usr/local/lib/R/site-library
+memoise                           memoise /usr/local/lib/R/site-library
+mgcv                                 mgcv /usr/local/lib/R/site-library
+mime                                 mime /usr/local/lib/R/site-library
+miniUI                             miniUI /usr/local/lib/R/site-library
+munsell                           munsell /usr/local/lib/R/site-library
+openssl                           openssl /usr/local/lib/R/site-library
+parallelly                     parallelly /usr/local/lib/R/site-library
+patchwork                       patchwork /usr/local/lib/R/site-library
+pdftools                         pdftools /usr/local/lib/R/site-library
+phangorn                         phangorn /usr/local/lib/R/site-library
+pheatmap                         pheatmap /usr/local/lib/R/site-library
+phylotate                       phylotate /usr/local/lib/R/site-library
+pillar                             pillar /usr/local/lib/R/site-library
+pinp                                 pinp /usr/local/lib/R/site-library
+pixmap                             pixmap /usr/local/lib/R/site-library
+pkgbuild                         pkgbuild /usr/local/lib/R/site-library
+pkgconfig                       pkgconfig /usr/local/lib/R/site-library
+pkgload                           pkgload /usr/local/lib/R/site-library
+plyr                                 plyr /usr/local/lib/R/site-library
+praise                             praise /usr/local/lib/R/site-library
+prettyunits                   prettyunits /usr/local/lib/R/site-library
+processx                         processx /usr/local/lib/R/site-library
+profvis                           profvis /usr/local/lib/R/site-library
+progress                         progress /usr/local/lib/R/site-library
+promises                         promises /usr/local/lib/R/site-library
+ps                                     ps /usr/local/lib/R/site-library
+purrr                               purrr /usr/local/lib/R/site-library
+QDNAseq                           QDNAseq /usr/local/lib/R/site-library
+qpdf                                 qpdf /usr/local/lib/R/site-library
+qqman                               qqman /usr/local/lib/R/site-library
+quadprog                         quadprog /usr/local/lib/R/site-library
+R.methodsS3                   R.methodsS3 /usr/local/lib/R/site-library
+R.oo                                 R.oo /usr/local/lib/R/site-library
+R.utils                           R.utils /usr/local/lib/R/site-library
+R6                                     R6 /usr/local/lib/R/site-library
+rappdirs                         rappdirs /usr/local/lib/R/site-library
+rcmdcheck                       rcmdcheck /usr/local/lib/R/site-library
+RColorBrewer                 RColorBrewer /usr/local/lib/R/site-library
+Rcpp                                 Rcpp /usr/local/lib/R/site-library
+RCurl                               RCurl /usr/local/lib/R/site-library
+readr                               readr /usr/local/lib/R/site-library
+rematch2                         rematch2 /usr/local/lib/R/site-library
+remotes                           remotes /usr/local/lib/R/site-library
+reshape2                         reshape2 /usr/local/lib/R/site-library
+rhdf5                               rhdf5 /usr/local/lib/R/site-library
+rhdf5filters                 rhdf5filters /usr/local/lib/R/site-library
+Rhdf5lib                         Rhdf5lib /usr/local/lib/R/site-library
+Rhtslib                           Rhtslib /usr/local/lib/R/site-library
+rlang                               rlang /usr/local/lib/R/site-library
+rmarkdown                       rmarkdown /usr/local/lib/R/site-library
+roxygen2                         roxygen2 /usr/local/lib/R/site-library
+rprojroot                       rprojroot /usr/local/lib/R/site-library
+Rsamtools                       Rsamtools /usr/local/lib/R/site-library
+rstudioapi                     rstudioapi /usr/local/lib/R/site-library
+rversions                       rversions /usr/local/lib/R/site-library
+S4Vectors                       S4Vectors /usr/local/lib/R/site-library
+sass                                 sass /usr/local/lib/R/site-library
+scales                             scales /usr/local/lib/R/site-library
+scoper                             scoper /usr/local/lib/R/site-library
+segmented                       segmented /usr/local/lib/R/site-library
+seqinr                             seqinr /usr/local/lib/R/site-library
+sessioninfo                   sessioninfo /usr/local/lib/R/site-library
+shazam                             shazam /usr/local/lib/R/site-library
+shiny                               shiny /usr/local/lib/R/site-library
+snow                                 snow /usr/local/lib/R/site-library
+snowfall                         snowfall /usr/local/lib/R/site-library
+sourcetools                   sourcetools /usr/local/lib/R/site-library
+sp                                     sp /usr/local/lib/R/site-library
+stringi                           stringi /usr/local/lib/R/site-library
+stringr                           stringr /usr/local/lib/R/site-library
+SummarizedExperiment SummarizedExperiment /usr/local/lib/R/site-library
+svglite                           svglite /usr/local/lib/R/site-library
+sys                                   sys /usr/local/lib/R/site-library
+systemfonts                   systemfonts /usr/local/lib/R/site-library
+testthat                         testthat /usr/local/lib/R/site-library
+tibble                             tibble /usr/local/lib/R/site-library
+tidyr                               tidyr /usr/local/lib/R/site-library
+tidyselect                     tidyselect /usr/local/lib/R/site-library
+tidytree                         tidytree /usr/local/lib/R/site-library
+tint                                 tint /usr/local/lib/R/site-library
+tinytex                           tinytex /usr/local/lib/R/site-library
+treeio                             treeio /usr/local/lib/R/site-library
+tzdb                                 tzdb /usr/local/lib/R/site-library
+urlchecker                     urlchecker /usr/local/lib/R/site-library
+usethis                           usethis /usr/local/lib/R/site-library
+utf8                                 utf8 /usr/local/lib/R/site-library
+vctrs                               vctrs /usr/local/lib/R/site-library
+viridisLite                   viridisLite /usr/local/lib/R/site-library
+vroom                               vroom /usr/local/lib/R/site-library
+waldo                               waldo /usr/local/lib/R/site-library
+whisker                           whisker /usr/local/lib/R/site-library
+withr                               withr /usr/local/lib/R/site-library
+xfun                                 xfun /usr/local/lib/R/site-library
+xml2                                 xml2 /usr/local/lib/R/site-library
+xopen                               xopen /usr/local/lib/R/site-library
+xtable                             xtable /usr/local/lib/R/site-library
+XVector                           XVector /usr/local/lib/R/site-library
+yaml                                 yaml /usr/local/lib/R/site-library
+yulab.utils                   yulab.utils /usr/local/lib/R/site-library
+zip                                   zip /usr/local/lib/R/site-library
+zlibbioc                         zlibbioc /usr/local/lib/R/site-library
+littler                           littler       /usr/lib/R/site-library
+base                                 base            /usr/lib/R/library
+boot                                 boot            /usr/lib/R/library
+class                               class            /usr/lib/R/library
+cluster                           cluster            /usr/lib/R/library
+codetools                       codetools            /usr/lib/R/library
+compiler                         compiler            /usr/lib/R/library
+datasets                         datasets            /usr/lib/R/library
+foreign                           foreign            /usr/lib/R/library
+graphics                         graphics            /usr/lib/R/library
+grDevices                       grDevices            /usr/lib/R/library
+grid                                 grid            /usr/lib/R/library
+KernSmooth                     KernSmooth            /usr/lib/R/library
+lattice                           lattice            /usr/lib/R/library
+MASS                                 MASS            /usr/lib/R/library
+Matrix                             Matrix            /usr/lib/R/library
+methods                           methods            /usr/lib/R/library
+mgcv.1                               mgcv            /usr/lib/R/library
+nlme                                 nlme            /usr/lib/R/library
+nnet                                 nnet            /usr/lib/R/library
+parallel                         parallel            /usr/lib/R/library
+rpart                               rpart            /usr/lib/R/library
+spatial                           spatial            /usr/lib/R/library
+splines                           splines            /usr/lib/R/library
+stats                               stats            /usr/lib/R/library
+stats4                             stats4            /usr/lib/R/library
+survival                         survival            /usr/lib/R/library
+tcltk                               tcltk            /usr/lib/R/library
+tools                               tools            /usr/lib/R/library
+utils                               utils            /usr/lib/R/library
+                      Version    Priority
+ade4                   1.7-19        <NA>
+airr                    1.4.1        <NA>
+alakazam                1.2.1        <NA>
+ape                     5.6-2        <NA>
+aplot                   0.1.8        <NA>
+askpass                   1.1        <NA>
+base64enc               0.1-3        <NA>
+BH                   1.78.0-0        <NA>
+binb                    0.0.6        <NA>
+Biobase                2.54.0        <NA>
+BiocGenerics           0.40.0        <NA>
+BiocManager           1.30.18        <NA>
+BiocParallel           1.28.3        <NA>
+BiocVersion            3.14.0        <NA>
+Biostrings             2.62.0        <NA>
+bit                     4.0.4        <NA>
+bit64                   4.0.5        <NA>
+bitops                  1.0-7        <NA>
+brew                    1.0-8        <NA>
+brio                    1.1.3        <NA>
+bslib                   0.4.0        <NA>
+cachem                  1.0.6        <NA>
+Cairo                   1.6-0        <NA>
+calibrate               1.7.7        <NA>
+callr                   3.7.2        <NA>
+CGHbase                1.54.0        <NA>
+CGHcall                2.56.0        <NA>
+cli                     3.4.1        <NA>
+clipr                   0.8.0        <NA>
+colorspace              2.0-3        <NA>
+commonmark              1.8.0        <NA>
+cpp11                   0.4.3        <NA>
+crayon                  1.5.2        <NA>
+credentials             1.3.2        <NA>
+curl                    4.3.3        <NA>
+data.table             1.14.2        <NA>
+DelayedArray           0.20.0        <NA>
+desc                    1.4.2        <NA>
+diffobj                 0.3.5        <NA>
+digest                 0.6.29        <NA>
+diptest                0.76-0        <NA>
+DNAcopy                1.68.0        <NA>
+docopt                  0.7.1        <NA>
+doParallel             1.0.17        <NA>
+downlit                 0.4.2        <NA>
+dowser                  1.1.0        <NA>
+dplyr                  1.0.10        <NA>
+ellipsis                0.3.2        <NA>
+evaluate                 0.17        <NA>
+fansi                   1.0.3        <NA>
+farver                  2.1.1        <NA>
+fastmap                 1.1.0        <NA>
+fastmatch               1.1-3        <NA>
+fontawesome             0.3.0        <NA>
+foreach                 1.5.2        <NA>
+formatR                  1.12        <NA>
+fs                      1.5.2        <NA>
+futile.logger           1.4.3        <NA>
+futile.options          1.0.1        <NA>
+future                 1.28.0        <NA>
+future.apply            1.9.1        <NA>
+generics                0.1.3        <NA>
+GenomeInfoDb           1.30.1        <NA>
+GenomeInfoDbData        1.2.7        <NA>
+GenomicAlignments      1.30.0        <NA>
+GenomicRanges          1.46.1        <NA>
+gert                    1.9.1        <NA>
+ggfun                   0.0.7        <NA>
+ggplot2                 3.4.1        <NA>
+ggplotify               0.1.0        <NA>
+ggrepel                 0.9.3        <NA>
+ggtree                  3.2.1        <NA>
+gh                      1.3.1        <NA>
+gitcreds                0.1.2        <NA>
+globals                0.16.1        <NA>
+glue                    1.6.2        <NA>
+gridExtra                 2.3        <NA>
+gridGraphics            0.5-1        <NA>
+gtable                  0.3.1        <NA>
+gtools                  3.9.3        <NA>
+HiCcompare             1.16.0        <NA>
+highr                     0.9        <NA>
+hms                     1.1.2        <NA>
+htmltools               0.5.3        <NA>
+htmlwidgets             1.5.4        <NA>
+httpuv                  1.6.6        <NA>
+httr                    1.4.4        <NA>
+igraph                  1.3.5        <NA>
+impute                 1.68.0        <NA>
+ini                     0.3.1        <NA>
+InteractionSet         1.22.0        <NA>
+IRanges                2.28.0        <NA>
+isoband                 0.2.6        <NA>
+iterators              1.0.14        <NA>
+jquerylib               0.1.4        <NA>
+jsonlite                1.8.2        <NA>
+knitr                    1.40        <NA>
+labeling                0.4.2        <NA>
+lambda.r                1.2.4        <NA>
+later                   1.3.0        <NA>
+lazyeval                0.2.2        <NA>
+lemon                   0.4.6        <NA>
+lifecycle               1.0.3        <NA>
+limma                  3.50.3        <NA>
+linl                    0.0.4        <NA>
+listenv                 0.8.0        <NA>
+lubridate               1.8.0        <NA>
+magrittr                2.0.3        <NA>
+markdown                  1.1        <NA>
+marray                 1.72.0        <NA>
+MatrixGenerics          1.6.0        <NA>
+matrixStats            0.62.0        <NA>
+memoise                 2.0.1        <NA>
+mgcv                   1.8-40 recommended
+mime                     0.12        <NA>
+miniUI                0.1.1.1        <NA>
+munsell                 0.5.0        <NA>
+openssl                 2.0.3        <NA>
+parallelly             1.32.1        <NA>
+patchwork               1.1.2        <NA>
+pdftools                3.3.1        <NA>
+phangorn               2.10.0        <NA>
+pheatmap               1.0.12        <NA>
+phylotate                 1.3        <NA>
+pillar                  1.8.1        <NA>
+pinp                   0.0.10        <NA>
+pixmap                 0.4-12        <NA>
+pkgbuild                1.3.1        <NA>
+pkgconfig               2.0.3        <NA>
+pkgload                 1.3.0        <NA>
+plyr                    1.8.7        <NA>
+praise                  1.0.0        <NA>
+prettyunits             1.1.1        <NA>
+processx                3.7.0        <NA>
+profvis                 0.3.7        <NA>
+progress                1.2.2        <NA>
+promises              1.2.0.1        <NA>
+ps                      1.7.1        <NA>
+purrr                   0.3.5        <NA>
+QDNAseq                1.30.0        <NA>
+qpdf                    1.3.0        <NA>
+qqman                   0.1.8        <NA>
+quadprog                1.5-8        <NA>
+R.methodsS3             1.8.2        <NA>
+R.oo                   1.25.0        <NA>
+R.utils                2.12.0        <NA>
+R6                      2.5.1        <NA>
+rappdirs                0.3.3        <NA>
+rcmdcheck               1.4.0        <NA>
+RColorBrewer            1.1-3        <NA>
+Rcpp                    1.0.9        <NA>
+RCurl                1.98-1.9        <NA>
+readr                   2.1.3        <NA>
+rematch2                2.1.2        <NA>
+remotes                 2.4.2        <NA>
+reshape2                1.4.4        <NA>
+rhdf5                  2.38.1        <NA>
+rhdf5filters            1.6.0        <NA>
+Rhdf5lib               1.16.0        <NA>
+Rhtslib                1.26.0        <NA>
+rlang                   1.1.0        <NA>
+rmarkdown                2.17        <NA>
+roxygen2                7.2.1        <NA>
+rprojroot               2.0.3        <NA>
+Rsamtools              2.10.0        <NA>
+rstudioapi               0.14        <NA>
+rversions               2.1.2        <NA>
+S4Vectors              0.32.4        <NA>
+sass                    0.4.2        <NA>
+scales                  1.2.1        <NA>
+scoper                  1.2.1        <NA>
+segmented               1.6-0        <NA>
+seqinr                 4.2-16        <NA>
+sessioninfo             1.2.2        <NA>
+shazam                  1.1.2        <NA>
+shiny                   1.7.2        <NA>
+snow                    0.4-4        <NA>
+snowfall             1.84-6.2        <NA>
+sourcetools             0.1.7        <NA>
+sp                      1.5-0        <NA>
+stringi                 1.7.8        <NA>
+stringr                 1.4.1        <NA>
+SummarizedExperiment   1.24.0        <NA>
+svglite                 2.1.1        <NA>
+sys                       3.4        <NA>
+systemfonts             1.0.4        <NA>
+testthat                3.1.5        <NA>
+tibble                  3.1.8        <NA>
+tidyr                   1.2.1        <NA>
+tidyselect              1.2.0        <NA>
+tidytree                0.4.1        <NA>
+tint                    0.1.3        <NA>
+tinytex                  0.42        <NA>
+treeio                 1.18.1        <NA>
+tzdb                    0.3.0        <NA>
+urlchecker              1.0.1        <NA>
+usethis                 2.1.6        <NA>
+utf8                    1.2.2        <NA>
+vctrs                   0.6.1        <NA>
+viridisLite             0.4.1        <NA>
+vroom                   1.6.0        <NA>
+waldo                   0.4.0        <NA>
+whisker                   0.4        <NA>
+withr                   2.5.0        <NA>
+xfun                     0.33        <NA>
+xml2                    1.3.3        <NA>
+xopen                   1.0.0        <NA>
+xtable                  1.8-4        <NA>
+XVector                0.34.0        <NA>
+yaml                    2.3.5        <NA>
+yulab.utils             0.0.5        <NA>
+zip                     2.2.1        <NA>
+zlibbioc               1.40.0        <NA>
+littler                0.3.15        <NA>
+base                    4.1.2        base
+boot                   1.3-28 recommended
+class                  7.3-20 recommended
+cluster                 2.1.2 recommended
+codetools              0.2-18 recommended
+compiler                4.1.2        base
+datasets                4.1.2        base
+foreign                0.8-82 recommended
+graphics                4.1.2        base
+grDevices               4.1.2        base
+grid                    4.1.2        base
+KernSmooth            2.23-20 recommended
+lattice               0.20-45 recommended
+MASS                   7.3-55 recommended
+Matrix                  1.4-0 recommended
+methods                 4.1.2        base
+mgcv.1                 1.8-38 recommended
+nlme                  3.1-155 recommended
+nnet                   7.3-17 recommended
+parallel                4.1.2        base
+rpart                  4.1.16 recommended
+spatial                7.3-15 recommended
+splines                 4.1.2        base
+stats                   4.1.2        base
+stats4                  4.1.2        base
+survival               3.2-13 recommended
+tcltk                   4.1.2        base
+tools                   4.1.2        base
+utils                   4.1.2        base
+
+
+
+
+================
+
+R PACKAGES NOT INSTALLED
+
+================
+
+
+
+
+ALL THE PACKAGES HAVE BEEN INSTALLED
+
+
+
+
+
+
+================
+
+apt-get autoremove
+
+================
+
+
+
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 162 not upgraded.
+
+
+
+
+================
+
+apt-get clean
+
+================
+
+
+
+
+
+
+
+
+================
+
+rm
+
+================
+
+
+
+
+
+
+
+
+================
+
+LINUX PACKAGES INSTALLED
+
+================
+
+
+
+
+Package files:
+ 100 /var/lib/dpkg/status
+     release a=now
+Pinned packages:
diff --git a/R/v4.1.2/ig_clustering/v1.3/installed_r_packages.csv b/R/v4.1.2/ig_clustering/v1.3/installed_r_packages.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2b2c7b0705970079649c0986df06730a41be5aee
--- /dev/null
+++ b/R/v4.1.2/ig_clustering/v1.3/installed_r_packages.csv
@@ -0,0 +1,244 @@
+Package;LibPath;Version;Priority;Depends;Imports;LinkingTo;Suggests;Enhances;License;License_is_FOSS;License_restricts_use;OS_type;MD5sum;NeedsCompilation;Built
+ade4;/usr/local/lib/R/site-library;1.7-19;NA;R (>= 2.10);graphics, grDevices, methods, stats, utils, MASS, pixmap, sp;NA;ade4TkGUI, adegraphics, adephylo, ape, CircStats, deldir,lattice, spdep, splancs, waveslim, progress, foreach, parallel,doParallel, iterators;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+airr;/usr/local/lib/R/site-library;1.4.1;NA;R (>= 3.1.2);jsonlite, methods, readr, stats, stringi, tools, yaml;NA;knitr, rmarkdown, tibble, testthat;NA;CC BY 4.0;NA;NA;NA;NA;no;4.1.2
+alakazam;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 4.0), ggplot2 (>= 3.3.4);airr (>= 1.3), ape, dplyr (>= 1.0), graphics, grid, igraph (>=1.0), Matrix (>= 1.3-0), methods, progress, Rcpp (>= 0.12.12),readr, rlang, scales, seqinr, stats, stringi, tibble, tidyr (>=1.0), utils, Biostrings (>= 2.56.0), GenomicAlignments (>=1.24.0), IRanges (>= 2.22.2);Rcpp;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;yes;4.1.2
+ape;/usr/local/lib/R/site-library;5.6-2;NA;R (>= 3.2.0);nlme, lattice, graphics, methods, stats, tools, utils,parallel, Rcpp (>= 0.12.0);Rcpp;gee, expm, igraph, phangorn;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+aplot;/usr/local/lib/R/site-library;0.1.8;NA;NA;ggfun (>= 0.0.6), ggplot2, ggplotify, patchwork, magrittr,methods, utils;NA;ggtree;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+askpass;/usr/local/lib/R/site-library;1.1;NA;NA;sys (>= 2.1);NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+base64enc;/usr/local/lib/R/site-library;0.1-3;NA;R (>= 2.9.0);NA;NA;NA;png;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+BH;/usr/local/lib/R/site-library;1.78.0-0;NA;NA;NA;NA;NA;NA;BSL-1.0;NA;NA;NA;NA;no;4.1.2
+binb;/usr/local/lib/R/site-library;0.0.6;NA;NA;rmarkdown, knitr;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+Biobase;/usr/local/lib/R/site-library;2.54.0;NA;R (>= 2.10), BiocGenerics (>= 0.27.1), utils;methods;NA;tools, tkWidgets, ALL, RUnit, golubEsets;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+BiocGenerics;/usr/local/lib/R/site-library;0.40.0;NA;R (>= 4.0.0), methods, utils, graphics, stats;methods, utils, graphics, stats;NA;Biobase, S4Vectors, IRanges, GenomicRanges, DelayedArray,Biostrings, Rsamtools, AnnotationDbi, affy, affyPLM, DESeq2,flowClust, MSnbase, annotate, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+BiocManager;/usr/local/lib/R/site-library;1.30.18;NA;NA;utils;NA;BiocVersion, remotes, rmarkdown, testthat, withr, curl, knitr;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+BiocParallel;/usr/local/lib/R/site-library;1.28.3;NA;methods, R (>= 3.5.0);stats, utils, futile.logger, parallel, snow;BH;BiocGenerics, tools, foreach, BatchJobs, BBmisc, doParallel,Rmpi, GenomicRanges, RNAseqData.HNRNPC.bam.chr14,TxDb.Hsapiens.UCSC.hg19.knownGene, VariantAnnotation,Rsamtools, GenomicAlignments, ShortRead, codetools, RUnit,BiocStyle, knitr, batchtools, data.table;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+BiocVersion;/usr/local/lib/R/site-library;3.14.0;NA;R (>= 4.1.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+Biostrings;/usr/local/lib/R/site-library;2.62.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9), XVector (>= 0.29.2),GenomeInfoDb;methods, utils, grDevices, graphics, stats, crayon;S4Vectors, IRanges, XVector;BSgenome (>= 1.13.14), BSgenome.Celegans.UCSC.ce2 (>=1.3.11), BSgenome.Dmelanogaster.UCSC.dm3 (>= 1.3.11),BSgenome.Hsapiens.UCSC.hg18, drosophila2probe, hgu95av2probe,hgu133aprobe, GenomicFeatures (>= 1.3.14), hgu95av2cdf, affy(>= 1.41.3), affydata (>= 1.11.5), RUnit;Rmpi;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+bit;/usr/local/lib/R/site-library;4.0.4;NA;R (>= 2.9.2);NA;NA;testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,microbenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0);NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+bit64;/usr/local/lib/R/site-library;4.0.5;NA;R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats;NA;NA;NA;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+bitops;/usr/local/lib/R/site-library;1.0-7;NA;NA;NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+brew;/usr/local/lib/R/site-library;1.0-8;NA;NA;NA;NA;testthat (>= 3.0.0);NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+brio;/usr/local/lib/R/site-library;1.1.3;NA;NA;NA;NA;covr, testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+bslib;/usr/local/lib/R/site-library;0.4.0;NA;R (>= 2.10);grDevices, htmltools (>= 0.5.2), jsonlite, sass (>= 0.4.0),jquerylib (>= 0.1.3), rlang, cachem, memoise;NA;shiny (>= 1.6.0), rmarkdown (>= 2.7), thematic, knitr,testthat, withr, rappdirs, curl, magrittr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+cachem;/usr/local/lib/R/site-library;1.0.6;NA;NA;rlang, fastmap;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+Cairo;/usr/local/lib/R/site-library;1.6-0;NA;R (>= 2.4.0);grDevices, graphics;NA;png;FastRWeb;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+calibrate;/usr/local/lib/R/site-library;1.7.7;NA;R (>= 3.5.0), MASS;NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+callr;/usr/local/lib/R/site-library;3.7.2;NA;R (>= 3.4);processx (>= 3.6.1), R6, utils;NA;cli (>= 1.1.0), covr, mockery, ps, rprojroot, spelling,testthat (>= 3.0.0), withr (>= 2.3.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+CGHbase;/usr/local/lib/R/site-library;1.54.0;NA;R (>= 2.10), methods, Biobase (>= 2.5.5), marray;NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.1.2
+CGHcall;/usr/local/lib/R/site-library;2.56.0;NA;R (>= 2.0.0), impute(>= 1.8.0), DNAcopy (>= 1.6.0), methods,Biobase, CGHbase (>= 1.15.1), snowfall;NA;NA;NA;NA;GPL (http://www.gnu.org/copyleft/gpl.html);NA;NA;NA;NA;no;4.1.2
+cli;/usr/local/lib/R/site-library;3.4.1;NA;R (>= 3.4);utils;NA;callr, covr, digest, glue (>= 1.6.0), grDevices, htmltools,htmlwidgets, knitr, methods, mockery, processx, ps (>=1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,rstudioapi, testthat, tibble, whoami, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+clipr;/usr/local/lib/R/site-library;0.8.0;NA;NA;utils;NA;covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=2.0.0);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+colorspace;/usr/local/lib/R/site-library;2.0-3;NA;R (>= 3.0.0), methods;graphics, grDevices, stats;NA;datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,tcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,knitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,wesanderson;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+commonmark;/usr/local/lib/R/site-library;1.8.0;NA;NA;NA;NA;curl, testthat, xml2;NA;BSD_2_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+cpp11;/usr/local/lib/R/site-library;0.4.3;NA;NA;NA;NA;bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,knitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,testthat, tibble, utils, vctrs, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+crayon;/usr/local/lib/R/site-library;1.5.2;NA;NA;grDevices, methods, utils;NA;mockery, rstudioapi, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+credentials;/usr/local/lib/R/site-library;1.3.2;NA;NA;openssl (>= 1.3), sys (>= 2.1), curl, jsonlite, askpass;NA;testthat, knitr, rmarkdown;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+curl;/usr/local/lib/R/site-library;4.3.3;NA;R (>= 3.0.0);NA;NA;spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,magrittr, httpuv (>= 1.4.4), webutils;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+data.table;/usr/local/lib/R/site-library;1.14.2;NA;R (>= 3.1.0);methods;NA;bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,nanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown;NA;MPL-2.0 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+DelayedArray;/usr/local/lib/R/site-library;0.20.0;NA;R (>= 4.0.0), methods, stats4, Matrix, BiocGenerics (>=0.37.0), MatrixGenerics (>= 1.1.3), S4Vectors (>= 0.27.2),IRanges (>= 2.17.3);stats;S4Vectors;BiocParallel, HDF5Array (>= 1.17.12), genefilter,SummarizedExperiment, airway, lobstr, DelayedMatrixStats,knitr, rmarkdown, BiocStyle, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+desc;/usr/local/lib/R/site-library;1.4.2;NA;R (>= 3.4);cli, R6, rprojroot, utils;NA;callr, covr, gh, spelling, testthat, whoami, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+diffobj;/usr/local/lib/R/site-library;0.3.5;NA;R (>= 3.1.0);crayon (>= 1.3.2), tools, methods, utils, stats;NA;knitr, rmarkdown;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+digest;/usr/local/lib/R/site-library;0.6.29;NA;R (>= 3.3.0);utils;NA;tinytest, simplermarkdown;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+diptest;/usr/local/lib/R/site-library;0.76-0;NA;NA;graphics, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+DNAcopy;/usr/local/lib/R/site-library;1.68.0;NA;NA;NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+docopt;/usr/local/lib/R/site-library;0.7.1;NA;NA;methods;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+doParallel;/usr/local/lib/R/site-library;1.0.17;NA;R (>= 2.14.0), foreach (>= 1.2.0), iterators (>= 1.0.0),parallel, utils;NA;NA;caret, mlbench, rpart, RUnit;compiler;GPL-2;NA;NA;NA;NA;no;4.1.2
+downlit;/usr/local/lib/R/site-library;0.4.2;NA;R (>= 3.4.0);brio, desc, digest, evaluate, fansi, memoise, rlang, vctrs,withr, yaml;NA;covr, htmltools, jsonlite, MASS, MassSpecWavelet, pkgload,rmarkdown, testthat (>= 3.0.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+dowser;/usr/local/lib/R/site-library;1.1.0;NA;R (>= 3.1.2), ggplot2 (>= 3.2.0);alakazam (>= 1.1.0), ape (>= 5.6), Biostrings, dplyr (>=0.8.1), ggtree, graphics, gridExtra, markdown, methods,phangorn (>= 2.7.1), phylotate, RColorBrewer, rlang, shazam (>=1.1.0), stats, stringr, tidyselect, tidyr, utils;NA;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;no;4.1.2
+dplyr;/usr/local/lib/R/site-library;1.0.10;NA;R (>= 3.4.0);generics, glue (>= 1.3.2), lifecycle (>= 1.0.1), magrittr (>=1.5), methods, R6, rlang (>= 1.0.2), tibble (>= 2.1.3),tidyselect (>= 1.1.1), utils, vctrs (>= 0.4.1), pillar (>=1.5.1);NA;bench, broom, callr, covr, DBI, dbplyr (>= 1.4.3), ggplot2,knitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,rmarkdown, RMySQL, RPostgreSQL, RSQLite, testthat (>= 3.1.1),tidyr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ellipsis;/usr/local/lib/R/site-library;0.3.2;NA;R (>= 3.2);rlang (>= 0.3.0);NA;covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+evaluate;/usr/local/lib/R/site-library;0.17;NA;R (>= 3.0.2);methods;NA;covr, ggplot2, lattice, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+fansi;/usr/local/lib/R/site-library;1.0.3;NA;R (>= 3.1.0);grDevices, utils;NA;unitizer, knitr, rmarkdown;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+farver;/usr/local/lib/R/site-library;2.1.1;NA;NA;NA;NA;covr, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+fastmap;/usr/local/lib/R/site-library;1.1.0;NA;NA;NA;NA;testthat (>= 2.1.1);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+fastmatch;/usr/local/lib/R/site-library;1.1-3;NA;R (>= 2.3.0);NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+fontawesome;/usr/local/lib/R/site-library;0.3.0;NA;R (>= 3.3.0);rlang (>= 0.4.10), htmltools (>= 0.5.1.1);NA;covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0),rsvg;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+foreach;/usr/local/lib/R/site-library;1.5.2;NA;R (>= 2.5.0);codetools, utils, iterators;NA;randomForest, doMC, doParallel, testthat, knitr, rmarkdown;NA;Apache License (== 2.0);NA;NA;NA;NA;no;4.1.2
+formatR;/usr/local/lib/R/site-library;1.12;NA;R (>= 3.2.3);NA;NA;rstudioapi, shiny, testit, rmarkdown, knitr;NA;GPL;NA;NA;NA;NA;no;4.1.2
+fs;/usr/local/lib/R/site-library;1.5.2;NA;R (>= 3.1);methods;NA;testthat, covr, pillar (>= 1.0.0), tibble (>= 1.1.0), crayon,rmarkdown, knitr, withr, spelling, vctrs (>= 0.3.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+futile.logger;/usr/local/lib/R/site-library;1.4.3;NA;R (>= 3.0.0);utils, lambda.r (>= 1.1.0), futile.options;NA;testthat, jsonlite;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+futile.options;/usr/local/lib/R/site-library;1.0.1;NA;R (>= 2.8.0);NA;NA;NA;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+future;/usr/local/lib/R/site-library;1.28.0;NA;NA;digest, globals (>= 0.16.0), listenv (>= 0.8.0), parallel,parallelly (>= 1.32.1), tools, utils;NA;methods, RhpcBLASctl, R.rsp, markdown;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+future.apply;/usr/local/lib/R/site-library;1.9.1;NA;R (>= 3.2.0), future (>= 1.27.0);globals (>= 0.16.1), parallel, utils;NA;datasets, stats, tools, listenv (>= 0.8.0), R.rsp, markdown;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+generics;/usr/local/lib/R/site-library;0.1.3;NA;R (>= 3.2);methods;NA;covr, pkgload, testthat (>= 3.0.0), tibble, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+GenomeInfoDb;/usr/local/lib/R/site-library;1.30.1;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.25.12), IRanges (>= 2.13.12);stats, stats4, utils, RCurl, GenomeInfoDbData;NA;GenomicRanges, Rsamtools, GenomicAlignments, GenomicFeatures,TxDb.Dmelanogaster.UCSC.dm3.ensGene, BSgenome,BSgenome.Scerevisiae.UCSC.sacCer2, BSgenome.Celegans.UCSC.ce2,BSgenome.Hsapiens.NCBI.GRCh38, RUnit, BiocStyle, knitr;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+GenomeInfoDbData;/usr/local/lib/R/site-library;1.2.7;NA;R (>= 3.5.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+GenomicAlignments;/usr/local/lib/R/site-library;1.30.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>= 1.13.1),GenomicRanges (>= 1.41.5), SummarizedExperiment (>= 1.9.13),Biostrings (>= 2.55.7), Rsamtools (>= 1.31.2);methods, utils, stats, BiocGenerics, S4Vectors, IRanges,GenomicRanges, Biostrings, Rsamtools, BiocParallel;S4Vectors, IRanges;ShortRead, rtracklayer, BSgenome, GenomicFeatures,RNAseqData.HNRNPC.bam.chr14, pasillaBamSubset,TxDb.Hsapiens.UCSC.hg19.knownGene,TxDb.Dmelanogaster.UCSC.dm3.ensGene,BSgenome.Dmelanogaster.UCSC.dm3, BSgenome.Hsapiens.UCSC.hg19,DESeq2, edgeR, RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+GenomicRanges;/usr/local/lib/R/site-library;1.46.1;NA;R (>= 4.0.0), methods, stats4, BiocGenerics (>= 0.37.0),S4Vectors (>= 0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>=1.15.2);utils, stats, XVector (>= 0.29.2);S4Vectors, IRanges;Matrix, Biobase, AnnotationDbi, annotate, Biostrings (>=2.25.3), SummarizedExperiment (>= 0.1.5), Rsamtools (>=1.13.53), GenomicAlignments, rtracklayer, BSgenome,GenomicFeatures, Gviz, VariantAnnotation, AnnotationHub,DESeq2, DEXSeq, edgeR, KEGGgraph, RNAseqData.HNRNPC.bam.chr14,pasillaBamSubset, KEGGREST, hgu95av2.db, hgu95av2probe,BSgenome.Scerevisiae.UCSC.sacCer2, BSgenome.Hsapiens.UCSC.hg19,BSgenome.Mmusculus.UCSC.mm10,TxDb.Athaliana.BioMart.plantsmart22,TxDb.Dmelanogaster.UCSC.dm3.ensGene,TxDb.Hsapiens.UCSC.hg19.knownGene,TxDb.Mmusculus.UCSC.mm10.knownGene, RUnit, digest, knitr,rmarkdown, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+gert;/usr/local/lib/R/site-library;1.9.1;NA;NA;askpass, credentials (>= 1.2.1), openssl (>= 2.0.3),rstudioapi (>= 0.11), sys, zip (>= 2.1.0);NA;spelling, knitr, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ggfun;/usr/local/lib/R/site-library;0.0.7;NA;NA;ggplot2, grid, rlang, utils;NA;ggplotify, knitr, rmarkdown, prettydoc, tidyr, ggnewscale;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+ggplot2;/usr/local/lib/R/site-library;3.4.1;NA;R (>= 3.3);cli, glue, grDevices, grid, gtable (>= 0.1.1), isoband,lifecycle (> 1.0.1), MASS, mgcv, rlang (>= 1.0.0), scales (>=1.2.0), stats, tibble, vctrs (>= 0.5.0), withr (>= 2.5.0);NA;covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, lattice,mapproj, maps, maptools, multcomp, munsell, nlme, profvis,quantreg, ragg, RColorBrewer, rgeos, rmarkdown, rpart, sf (>=0.7-3), svglite (>= 1.2.0.9001), testthat (>= 3.1.2), vdiffr(>= 1.0.0), xml2;sp;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+ggplotify;/usr/local/lib/R/site-library;0.1.0;NA;R (>= 3.4.0);ggplot2, graphics, grDevices, grid, gridGraphics, yulab.utils;NA;aplot, colorspace, cowplot, ggimage, knitr, rmarkdown,lattice, prettydoc, vcd, utils;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+ggrepel;/usr/local/lib/R/site-library;0.9.3;NA;R (>= 3.0.0), ggplot2 (>= 2.2.0);grid, Rcpp, rlang (>= 0.3.0), scales (>= 0.5.0), withr (>=2.5.0);Rcpp;knitr, rmarkdown, testthat, svglite, vdiffr, gridExtra,devtools, prettydoc, ggbeeswarm, dplyr, magrittr, readr,stringr;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ggtree;/usr/local/lib/R/site-library;3.2.1;NA;R (>= 3.5.0);ape, aplot (>= 0.0.4), dplyr, ggplot2 (>= 3.0.0), grid,magrittr, methods, purrr, rlang, ggfun, yulab.utils, tidyr,tidytree (>= 0.2.6), treeio (>= 1.8.0), utils, scales;NA;emojifont, ggimage, ggplotify, grDevices, knitr, prettydoc,rmarkdown, stats, testthat, tibble;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+gh;/usr/local/lib/R/site-library;1.3.1;NA;R (>= 3.4);cli (>= 3.0.1), gitcreds, httr (>= 1.2), ini, jsonlite;NA;covr, knitr, mockery, rmarkdown, rprojroot, spelling,testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+gitcreds;/usr/local/lib/R/site-library;0.1.2;NA;R (>= 3.4);NA;NA;codetools, covr, knitr, mockery, oskeyring, rmarkdown,testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+globals;/usr/local/lib/R/site-library;0.16.1;NA;R (>= 3.1.2);codetools;NA;NA;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+glue;/usr/local/lib/R/site-library;1.6.2;NA;R (>= 3.4);methods;NA;covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,microbenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,testthat (>= 3.0.0), vctrs (>= 0.3.0), waldo (>= 0.3.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+gridExtra;/usr/local/lib/R/site-library;2.3;NA;NA;gtable, grid, grDevices, graphics, utils;NA;ggplot2, egg, lattice, knitr, testthat;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+gridGraphics;/usr/local/lib/R/site-library;0.5-1;NA;grid, graphics;grDevices;NA;magick (>= 1.3), pdftools (>= 1.6);NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+gtable;/usr/local/lib/R/site-library;0.3.1;NA;R (>= 3.0);grid;NA;covr, testthat, knitr, rmarkdown, ggplot2, profvis;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+gtools;/usr/local/lib/R/site-library;3.9.3;NA;methods, stats, utils;NA;NA;car, gplots, knitr, rstudioapi, SGP, taxize;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+HiCcompare;/usr/local/lib/R/site-library;1.16.0;NA;R (>= 3.4.0), dplyr;data.table, ggplot2, gridExtra, mgcv, stats, InteractionSet,GenomicRanges, IRanges, S4Vectors, BiocParallel, QDNAseq,KernSmooth, methods, utils, graphics, pheatmap, gtools, rhdf5;NA;knitr, rmarkdown, testthat, multiHiCcompare;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+highr;/usr/local/lib/R/site-library;0.9;NA;R (>= 3.2.3);xfun (>= 0.18);NA;knitr, markdown, testit;NA;GPL;NA;NA;NA;NA;no;4.1.2
+hms;/usr/local/lib/R/site-library;1.1.2;NA;NA;ellipsis (>= 0.3.2), lifecycle, methods, pkgconfig, rlang,vctrs (>= 0.3.8);NA;crayon, lubridate, pillar (>= 1.1.0), testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+htmltools;/usr/local/lib/R/site-library;0.5.3;NA;R (>= 2.14.1);utils, digest, grDevices, base64enc, rlang (>= 0.4.10),fastmap (>= 1.1.0);NA;markdown, testthat, withr, Cairo, ragg, shiny;knitr;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+htmlwidgets;/usr/local/lib/R/site-library;1.5.4;NA;NA;grDevices, htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml;NA;knitr (>= 1.8), rmarkdown, testthat;shiny (>= 1.1);MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+httpuv;/usr/local/lib/R/site-library;1.6.6;NA;R (>= 2.15.1);Rcpp (>= 1.0.7), utils, R6, promises, later (>= 0.8.0);Rcpp, later;testthat, callr, curl, websocket;NA;GPL (>= 2) | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+httr;/usr/local/lib/R/site-library;1.4.4;NA;R (>= 3.2);curl (>= 3.0.0), jsonlite, mime, openssl (>= 0.8), R6;NA;covr, httpuv, jpeg, knitr, png, readr, rmarkdown, testthat(>= 0.8.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+igraph;/usr/local/lib/R/site-library;1.3.5;NA;methods;graphics, grDevices, magrittr, Matrix, pkgconfig (>= 2.0.0),rlang, stats, utils;NA;ape, graph, igraphdata, rgl, scales, stats4, tcltk, testthat,withr, digest;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+impute;/usr/local/lib/R/site-library;1.68.0;NA;R (>= 2.10);NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+ini;/usr/local/lib/R/site-library;0.3.1;NA;NA;NA;NA;testthat;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+InteractionSet;/usr/local/lib/R/site-library;1.22.0;NA;GenomicRanges, SummarizedExperiment;methods, Matrix, Rcpp, BiocGenerics, S4Vectors (>= 0.27.12),IRanges, GenomeInfoDb;Rcpp;testthat, knitr, rmarkdown, BiocStyle;NA;GPL-3;NA;NA;NA;NA;yes;4.1.2
+IRanges;/usr/local/lib/R/site-library;2.28.0;NA;R (>= 4.0.0), methods, utils, stats, BiocGenerics (>= 0.39.2),S4Vectors (>= 0.29.19);stats4;S4Vectors;XVector, GenomicRanges, Rsamtools, GenomicAlignments,GenomicFeatures, BSgenome.Celegans.UCSC.ce2, pasillaBamSubset,RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+isoband;/usr/local/lib/R/site-library;0.2.6;NA;NA;grid, utils;NA;covr, ggplot2, knitr, magick, microbenchmark, rmarkdown, sf,testthat, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+iterators;/usr/local/lib/R/site-library;1.0.14;NA;R (>= 2.5.0), utils;NA;NA;RUnit, foreach;NA;Apache License (== 2.0);NA;NA;NA;NA;no;4.1.2
+jquerylib;/usr/local/lib/R/site-library;0.1.4;NA;NA;htmltools;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+jsonlite;/usr/local/lib/R/site-library;1.8.2;NA;methods;NA;NA;httr, vctrs, testthat, knitr, rmarkdown, R.rsp, sf;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+knitr;/usr/local/lib/R/site-library;1.40;NA;R (>= 3.3.0);evaluate (>= 0.15), highr, methods, stringr (>= 0.6), yaml (>=2.1.19), xfun (>= 0.29), tools;NA;markdown, formatR, testit, digest, rgl (>= 0.95.1201),codetools, rmarkdown, htmlwidgets (>= 0.7), webshot, tikzDevice(>= 0.10), tinytex, reticulate (>= 1.4), JuliaCall (>= 0.11.1),magick, png, jpeg, gifski, xml2 (>= 1.2.0), httr, DBI (>=0.4-1), showtext, tibble, sass, bslib, ragg, gridSVG, styler(>= 1.2.0), targets (>= 0.6.0);NA;GPL;NA;NA;NA;NA;no;4.1.2
+labeling;/usr/local/lib/R/site-library;0.4.2;NA;NA;stats, graphics;NA;NA;NA;MIT + file LICENSE | Unlimited;NA;NA;NA;NA;no;4.1.2
+lambda.r;/usr/local/lib/R/site-library;1.2.4;NA;R (>= 3.0.0);formatR;NA;testit;NA;LGPL-3;NA;NA;NA;NA;no;4.1.2
+later;/usr/local/lib/R/site-library;1.3.0;NA;NA;Rcpp (>= 0.12.9), rlang;Rcpp;knitr, rmarkdown, testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+lazyeval;/usr/local/lib/R/site-library;0.2.2;NA;R (>= 3.1.0);NA;NA;knitr, rmarkdown (>= 0.2.65), testthat, covr;NA;GPL-3;NA;NA;NA;NA;yes;4.1.2
+lemon;/usr/local/lib/R/site-library;0.4.6;NA;R (>= 3.1.0);ggplot2 (>= 3.4.0), plyr, grid, gridExtra, gtable, knitr (>=1.12), lattice, scales;NA;rmarkdown, stringr, dplyr, testthat, vdiffr, diffviewer;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+lifecycle;/usr/local/lib/R/site-library;1.0.3;NA;R (>= 3.4);cli (>= 3.4.0), glue, rlang (>= 1.0.6);NA;covr, crayon, knitr, lintr, rmarkdown, testthat (>= 3.0.1),tibble, tidyverse, tools, vctrs, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+limma;/usr/local/lib/R/site-library;3.50.3;NA;R (>= 3.6.0);grDevices, graphics, stats, utils, methods;NA;affy, AnnotationDbi, BiasedUrn, Biobase, ellipse, GO.db,gplots, illuminaio, locfit, MASS, org.Hs.eg.db, splines,statmod (>= 1.2.2), vsn;NA;GPL (>=2);NA;NA;NA;NA;yes;4.1.2
+linl;/usr/local/lib/R/site-library;0.0.4;NA;NA;rmarkdown, knitr;NA;testthat, yaml;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+listenv;/usr/local/lib/R/site-library;0.8.0;NA;R (>= 3.1.2);NA;NA;R.utils, R.rsp, markdown;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+lubridate;/usr/local/lib/R/site-library;1.8.0;NA;methods, R (>= 3.2);generics;cpp11 (>= 0.2.7);covr, knitr, testthat (>= 2.1.0), vctrs (>= 0.3.0), rmarkdown;chron, timeDate, tis, zoo;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+magrittr;/usr/local/lib/R/site-library;2.0.3;NA;R (>= 3.4.0);NA;NA;covr, knitr, rlang, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+markdown;/usr/local/lib/R/site-library;1.1;NA;R (>= 2.11.1);utils, xfun, mime (>= 0.3);NA;knitr, RCurl;NA;GPL-2;NA;NA;NA;NA;yes;4.1.2
+marray;/usr/local/lib/R/site-library;1.72.0;NA;R (>= 2.10.0), limma, methods;NA;NA;tkWidgets;NA;LGPL;NA;NA;NA;NA;no;4.1.2
+MatrixGenerics;/usr/local/lib/R/site-library;1.6.0;NA;matrixStats (>= 0.60.1);methods;NA;sparseMatrixStats, DelayedMatrixStats, SummarizedExperiment,testthat (>= 2.1.0);NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+matrixStats;/usr/local/lib/R/site-library;0.62.0;NA;R (>= 2.12.0);NA;NA;base64enc, ggplot2, knitr, markdown, microbenchmark,R.devices, R.rsp;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+memoise;/usr/local/lib/R/site-library;2.0.1;NA;NA;rlang (>= 0.4.10), cachem;NA;digest, aws.s3, covr, googleAuthR, googleCloudStorageR, httr,testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+mgcv;/usr/local/lib/R/site-library;1.8-40;recommended;R (>= 3.6.0), nlme (>= 3.1-64);methods, stats, graphics, Matrix, splines, utils;NA;parallel, survival, MASS;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+mime;/usr/local/lib/R/site-library;0.12;NA;NA;tools;NA;NA;NA;GPL;NA;NA;NA;NA;yes;4.1.2
+miniUI;/usr/local/lib/R/site-library;0.1.1.1;NA;NA;shiny (>= 0.13), htmltools (>= 0.3), utils;NA;NA;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+munsell;/usr/local/lib/R/site-library;0.5.0;NA;NA;colorspace, methods;NA;ggplot2, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+openssl;/usr/local/lib/R/site-library;2.0.3;NA;NA;askpass;NA;curl, testthat (>= 2.1.0), digest, knitr, rmarkdown,jsonlite, jose, sodium;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+parallelly;/usr/local/lib/R/site-library;1.32.1;NA;NA;parallel, tools, utils;NA;NA;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+patchwork;/usr/local/lib/R/site-library;1.1.2;NA;NA;ggplot2 (>= 3.0.0), gtable, grid, stats, grDevices, utils,graphics;NA;knitr, rmarkdown, gridGraphics, gridExtra, ragg, testthat (>=2.1.0), vdiffr, covr, png;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pdftools;/usr/local/lib/R/site-library;3.3.1;NA;NA;Rcpp (>= 0.12.12), qpdf;Rcpp;png, webp, tesseract, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+phangorn;/usr/local/lib/R/site-library;2.10.0;NA;ape (>= 5.6), R (>= 4.1.0);digest, fastmatch, generics, graphics, grDevices, igraph (>=1.0), Matrix, methods, parallel, quadprog, Rcpp, stats, utils;Rcpp;Biostrings, knitr, magick, prettydoc, rgl, rmarkdown, seqinr,seqLogo, tinytest, xtable;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+pheatmap;/usr/local/lib/R/site-library;1.0.12;NA;R (>= 2.0);grid, RColorBrewer, scales, gtable, stats, grDevices, graphics;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+phylotate;/usr/local/lib/R/site-library;1.3;NA;R (>= 3.0.0);NA;NA;ape;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pillar;/usr/local/lib/R/site-library;1.8.1;NA;NA;cli (>= 2.3.0), fansi, glue, lifecycle, rlang (>= 1.0.2), utf8(>= 1.1.0), utils, vctrs (>= 0.3.8);NA;bit64, debugme, DiagrammeR, dplyr, formattable, ggplot2,knitr, lubridate, nanotime, nycflights13, palmerpenguins,rmarkdown, scales, stringi, survival, testthat (>= 3.1.1),tibble, units (>= 0.7.2), vdiffr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pinp;/usr/local/lib/R/site-library;0.0.10;NA;NA;rmarkdown, knitr;NA;NA;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+pixmap;/usr/local/lib/R/site-library;0.4-12;NA;NA;methods, graphics, grDevices;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+pkgbuild;/usr/local/lib/R/site-library;1.3.1;NA;R (>= 3.1);callr (>= 3.2.0), cli, crayon, desc, prettyunits, R6,rprojroot, withr (>= 2.3.0);NA;Rcpp, cpp11, testthat, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pkgconfig;/usr/local/lib/R/site-library;2.0.3;NA;NA;utils;NA;covr, testthat, disposables (>= 1.0.3);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+pkgload;/usr/local/lib/R/site-library;1.3.0;NA;R (>= 3.4.0);cli (>= 3.3.0), crayon, desc, fs, glue, methods, rlang (>=1.0.3), rprojroot, utils, withr (>= 2.4.3);NA;bitops, covr, mathjaxr, pak, pkgbuild, Rcpp, remotes,rstudioapi, testthat (>= 3.1.0);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+plyr;/usr/local/lib/R/site-library;1.8.7;NA;R (>= 3.1.0);Rcpp (>= 0.11.0);Rcpp;abind, covr, doParallel, foreach, iterators, itertools,tcltk, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+praise;/usr/local/lib/R/site-library;1.0.0;NA;NA;NA;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+prettyunits;/usr/local/lib/R/site-library;1.1.1;NA;NA;NA;NA;codetools, covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+processx;/usr/local/lib/R/site-library;3.7.0;NA;R (>= 3.4.0);ps (>= 1.2.0), R6, utils;NA;callr (>= 3.7.0), cli (>= 3.3.0), codetools, covr, curl,debugme, parallel, rlang (>= 1.0.2), testthat (>= 3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+profvis;/usr/local/lib/R/site-library;0.3.7;NA;R (>= 3.0);htmlwidgets (>= 0.3.2), stringr;NA;knitr, ggplot2, rmarkdown, testthat, devtools, shiny,htmltools;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+progress;/usr/local/lib/R/site-library;1.2.2;NA;NA;hms, prettyunits, R6, crayon;NA;Rcpp, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+promises;/usr/local/lib/R/site-library;1.2.0.1;NA;NA;R6, Rcpp, later, rlang, stats, magrittr;later, Rcpp;testthat, future (>= 1.21.0), fastmap (>= 1.1.0), purrr,knitr, rmarkdown, vembedr, spelling;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+ps;/usr/local/lib/R/site-library;1.7.1;NA;R (>= 3.4);utils;NA;callr, covr, curl, pillar, pingr, processx (>= 3.1.0), R6,rlang, testthat (>= 3.0.0),;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+purrr;/usr/local/lib/R/site-library;0.3.5;NA;R (>= 3.2);magrittr (>= 1.5), rlang (>= 0.3.1);NA;covr, crayon, dplyr (>= 0.7.8), httr, knitr, rmarkdown,testthat, tibble, tidyselect, vctrs;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+QDNAseq;/usr/local/lib/R/site-library;1.30.0;NA;R (>= 3.1.0);graphics, methods, stats, utils, Biobase (>= 2.18.0), CGHbase(>= 1.18.0), CGHcall (>= 2.18.0), DNAcopy (>= 1.32.0),GenomicRanges (>= 1.20), IRanges (>= 2.2), matrixStats (>=0.60.0), R.utils (>= 2.9.0), Rsamtools (>= 1.20), future.apply(>= 1.8.1);NA;BiocStyle (>= 1.8.0), BSgenome (>= 1.38.0), digest (>=0.6.20), GenomeInfoDb (>= 1.6.0), future (>= 1.22.1),parallelly (>= 1.28.1), R.cache (>= 0.13.0), QDNAseq.hg19,QDNAseq.mm10;NA;GPL;NA;NA;NA;NA;no;4.1.2
+qpdf;/usr/local/lib/R/site-library;1.3.0;NA;NA;Rcpp, askpass, curl;Rcpp;testthat;NA;Apache License 2.0;NA;NA;NA;NA;yes;4.1.2
+qqman;/usr/local/lib/R/site-library;0.1.8;NA;R (>= 3.0.0),;calibrate;NA;knitr, rmarkdown;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+quadprog;/usr/local/lib/R/site-library;1.5-8;NA;R (>= 3.1.0);NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+R.methodsS3;/usr/local/lib/R/site-library;1.8.2;NA;R (>= 2.13.0);utils;NA;codetools;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R.oo;/usr/local/lib/R/site-library;1.25.0;NA;R (>= 2.13.0), R.methodsS3 (>= 1.8.1);methods, utils;NA;tools;NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R.utils;/usr/local/lib/R/site-library;2.12.0;NA;R (>= 2.14.0), R.oo (>= 1.24.0);methods, utils, tools, R.methodsS3 (>= 1.8.1);NA;datasets, digest (>= 0.6.10);NA;LGPL (>= 2.1);NA;NA;NA;NA;no;4.1.2
+R6;/usr/local/lib/R/site-library;2.5.1;NA;R (>= 3.0);NA;NA;testthat, pryr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+rappdirs;/usr/local/lib/R/site-library;0.3.3;NA;R (>= 3.2);NA;NA;roxygen2, testthat (>= 3.0.0), covr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rcmdcheck;/usr/local/lib/R/site-library;1.4.0;NA;NA;callr (>= 3.1.1.9000), cli (>= 3.0.0), curl, desc (>= 1.2.0),digest, pkgbuild, prettyunits, R6, rprojroot, sessioninfo (>=1.1.1), utils, withr, xopen;NA;covr, knitr, mockery, processx, ps, rmarkdown, svglite,testthat, webfakes;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+RColorBrewer;/usr/local/lib/R/site-library;1.1-3;NA;R (>= 2.0.0);NA;NA;NA;NA;Apache License 2.0;NA;NA;NA;NA;no;4.1.2
+Rcpp;/usr/local/lib/R/site-library;1.0.9;NA;NA;methods, utils;NA;tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+RCurl;/usr/local/lib/R/site-library;1.98-1.9;NA;R (>= 3.4.0), methods;bitops;NA;XML;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+readr;/usr/local/lib/R/site-library;2.1.3;NA;R (>= 3.4);cli (>= 3.2.0), clipr, crayon, hms (>= 0.4.1), lifecycle (>=0.2.0), methods, R6, rlang, tibble, utils, vroom (>= 1.6.0);cpp11, tzdb (>= 0.1.1);covr, curl, datasets, knitr, rmarkdown, spelling, stringi,testthat (>= 3.1.2), tzdb (>= 0.1.1), waldo, withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rematch2;/usr/local/lib/R/site-library;2.1.2;NA;NA;tibble;NA;covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+remotes;/usr/local/lib/R/site-library;2.4.2;NA;R (>= 3.0.0);methods, stats, tools, utils;NA;brew, callr, codetools, curl, covr, git2r (>= 0.23.0), knitr,mockery, pkgbuild (>= 1.0.1), pingr, rmarkdown, rprojroot,testthat, webfakes, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+reshape2;/usr/local/lib/R/site-library;1.4.4;NA;R (>= 3.1);plyr (>= 1.8.1), Rcpp, stringr;Rcpp;covr, lattice, testthat (>= 0.8.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rhdf5;/usr/local/lib/R/site-library;2.38.1;NA;R (>= 4.0.0), methods;Rhdf5lib (>= 1.13.4), rhdf5filters;Rhdf5lib;bit64, BiocStyle, knitr, rmarkdown, testthat, microbenchmark,dplyr, ggplot2, mockery;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+rhdf5filters;/usr/local/lib/R/site-library;1.6.0;NA;NA;NA;Rhdf5lib;BiocStyle, knitr, rmarkdown, testthat (>= 2.1.0), rhdf5 (>=2.34.0);NA;BSD_2_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+Rhdf5lib;/usr/local/lib/R/site-library;1.16.0;NA;R (>= 4.0.0);NA;NA;BiocStyle, knitr, rmarkdown, tinytest, mockery;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+Rhtslib;/usr/local/lib/R/site-library;1.26.0;NA;NA;zlibbioc;zlibbioc;knitr, rmarkdown, BiocStyle;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+rlang;/usr/local/lib/R/site-library;1.1.0;NA;R (>= 3.5.0);utils;NA;cli (>= 3.1.0), covr, crayon, fs, glue, knitr, magrittr,methods, pillar, rmarkdown, stats, testthat (>= 3.0.0), tibble,usethis, vctrs (>= 0.2.3), withr;winch;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rmarkdown;/usr/local/lib/R/site-library;2.17;NA;R (>= 3.0);bslib (>= 0.2.5.1), evaluate (>= 0.13), htmltools (>= 0.5.1),jquerylib, jsonlite, knitr (>= 1.22), methods, stringr (>=1.2.0), tinytex (>= 0.31), tools, utils, xfun (>= 0.30), yaml(>= 2.1.19);NA;digest, dygraphs, fs, rsconnect, downlit (>= 0.4.0), katex(>= 1.4.0), sass (>= 0.4.0), shiny (>= 1.6.0), testthat (>=3.0.3), tibble, tufte, vctrs, withr (>= 2.4.2);NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+roxygen2;/usr/local/lib/R/site-library;7.2.1;NA;R (>= 3.3);brew, cli (>= 3.3.0), commonmark, desc (>= 1.2.0), digest,knitr, methods, pkgload (>= 1.0.2), purrr (>= 0.3.3), R6 (>=2.1.2), rlang (>= 1.0.0), stringi, stringr (>= 1.0.0), utils,withr, xml2;cpp11;covr, R.methodsS3, R.oo, rmarkdown, testthat (>= 3.1.2), yaml;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rprojroot;/usr/local/lib/R/site-library;2.0.3;NA;R (>= 3.0.0);NA;NA;covr, knitr, lifecycle, mockr, rmarkdown, testthat (>=3.0.0), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+Rsamtools;/usr/local/lib/R/site-library;2.10.0;NA;methods, GenomeInfoDb (>= 1.1.3), GenomicRanges (>= 1.31.8),Biostrings (>= 2.47.6), R (>= 3.5.0);utils, BiocGenerics (>= 0.25.1), S4Vectors (>= 0.17.25),IRanges (>= 2.13.12), XVector (>= 0.19.7), zlibbioc, bitops,BiocParallel, stats;Rhtslib (>= 1.17.7), S4Vectors, IRanges, XVector, Biostrings;GenomicAlignments, ShortRead (>= 1.19.10), GenomicFeatures,TxDb.Dmelanogaster.UCSC.dm3.ensGene,TxDb.Hsapiens.UCSC.hg18.knownGene, RNAseqData.HNRNPC.bam.chr14,BSgenome.Hsapiens.UCSC.hg19, RUnit, BiocStyle;NA;Artistic-2.0 | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+rstudioapi;/usr/local/lib/R/site-library;0.14;NA;NA;NA;NA;testthat, knitr, rmarkdown, clipr, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+rversions;/usr/local/lib/R/site-library;2.1.2;NA;NA;curl, utils, xml2 (>= 1.0.0);NA;covr, mockery, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+S4Vectors;/usr/local/lib/R/site-library;0.32.4;NA;R (>= 4.0.0), methods, utils, stats, stats4, BiocGenerics (>=0.37.0);NA;NA;IRanges, GenomicRanges, SummarizedExperiment, Matrix,DelayedArray, ShortRead, graph, data.table, RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+sass;/usr/local/lib/R/site-library;0.4.2;NA;NA;fs, rlang (>= 0.4.10), htmltools (>= 0.5.1), R6, rappdirs;NA;testthat, knitr, rmarkdown, withr, shiny, curl;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+scales;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 3.2);farver (>= 2.0.3), labeling, lifecycle, munsell (>= 0.5), R6,RColorBrewer, rlang (>= 1.0.0), viridisLite;NA;bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), stringi,testthat (>= 3.0.0), waldo (>= 0.4.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+scoper;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 4.0), ggplot2 (>= 3.3.4);alakazam (>= 1.2.0), shazam (>= 1.1.0), data.table,doParallel, dplyr (>= 1.0), foreach, methods, Rcpp (>=0.12.12), rlang, scales, stats, stringi, tidyr (>= 1.0);Rcpp;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;yes;4.1.2
+segmented;/usr/local/lib/R/site-library;1.6-0;NA;MASS, nlme;NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.1.2
+seqinr;/usr/local/lib/R/site-library;4.2-16;NA;R (>= 2.10.0);ade4,segmented;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+sessioninfo;/usr/local/lib/R/site-library;1.2.2;NA;R (>= 2.10);cli (>= 3.1.0), tools, utils;NA;callr, covr, mockery, reticulate, rmarkdown, testthat, withr;NA;GPL-2;NA;NA;NA;NA;no;4.1.2
+shazam;/usr/local/lib/R/site-library;1.1.2;NA;R (>= 3.5.0), ggplot2 (>= 3.3.4);alakazam (>= 1.1.0), ape, diptest, doParallel, dplyr (>=0.8.1), foreach, graphics, grid, igraph, iterators, KernSmooth,lazyeval, MASS, methods, parallel, progress, rlang, scales,seqinr, stats, stringi (>= 1.1.3), tidyr, tidyselect, utils;NA;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;no;4.1.2
+shiny;/usr/local/lib/R/site-library;1.7.2;NA;R (>= 3.0.2), methods;utils, grDevices, httpuv (>= 1.5.2), mime (>= 0.3), jsonlite(>= 0.9.16), xtable, fontawesome (>= 0.2.1), htmltools (>=0.5.2), R6 (>= 2.0), sourcetools, later (>= 1.0.0), promises(>= 1.1.0), tools, crayon, rlang (>= 0.4.10), fastmap (>=1.1.0), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=0.3.0), cachem, ellipsis, lifecycle (>= 0.2.0);NA;datasets, Cairo (>= 1.5-5), testthat (>= 3.0.0), knitr (>=1.6), markdown, rmarkdown, ggplot2, reactlog (>= 1.0.0),magrittr, yaml, future, dygraphs, ragg, showtext, sass;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;no;4.1.2
+snow;/usr/local/lib/R/site-library;0.4-4;NA;R (>= 2.13.1), utils;NA;NA;rlecuyer;Rmpi;GPL;NA;NA;NA;NA;no;4.1.2
+snowfall;/usr/local/lib/R/site-library;1.84-6.2;NA;R (>= 2.10), snow;NA;NA;Rmpi;NA;GPL;NA;NA;NA;NA;no;4.1.2
+sourcetools;/usr/local/lib/R/site-library;0.1.7;NA;R (>= 3.0.2);NA;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+sp;/usr/local/lib/R/site-library;1.5-0;NA;R (>= 3.0.0), methods;utils, stats, graphics, grDevices, lattice, grid;NA;RColorBrewer, rgdal (>= 1.2-3), rgeos (>= 0.3-13), gstat,maptools, deldir, knitr, rmarkdown, sf;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+stringi;/usr/local/lib/R/site-library;1.7.8;NA;R (>= 3.1);tools, utils, stats;NA;NA;NA;file LICENSE;NA;NA;NA;NA;yes;4.1.2
+stringr;/usr/local/lib/R/site-library;1.4.1;NA;R (>= 3.1);glue (>= 1.2.0), magrittr, stringi (>= 1.1.7);NA;covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat;NA;GPL-2 | file LICENSE;NA;NA;NA;NA;no;4.1.2
+SummarizedExperiment;/usr/local/lib/R/site-library;1.24.0;NA;R (>= 4.0.0), methods, MatrixGenerics (>= 1.1.3),GenomicRanges (>= 1.41.5), Biobase;utils, stats, tools, Matrix, BiocGenerics (>= 0.37.0),S4Vectors (>= 0.27.12), IRanges (>= 2.23.9), GenomeInfoDb (>=1.13.1), DelayedArray (>= 0.15.10);NA;HDF5Array (>= 1.7.5), annotate, AnnotationDbi, hgu95av2.db,GenomicFeatures, TxDb.Hsapiens.UCSC.hg19.knownGene, jsonlite,rhdf5, airway, BiocStyle, knitr, rmarkdown, RUnit, testthat,digest;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+svglite;/usr/local/lib/R/site-library;2.1.1;NA;R (>= 3.0.0);systemfonts (>= 1.0.0);cpp11, systemfonts;covr, fontquiver (>= 0.2.0), htmltools, knitr, rmarkdown,testthat, xml2 (>= 1.0.0);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+sys;/usr/local/lib/R/site-library;3.4;NA;NA;NA;NA;unix (>= 1.4), spelling, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+systemfonts;/usr/local/lib/R/site-library;1.0.4;NA;R (>= 3.2.0);NA;cpp11 (>= 0.2.1);testthat (>= 2.1.0), covr, knitr, rmarkdown, tools;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+testthat;/usr/local/lib/R/site-library;3.1.5;NA;R (>= 3.1);brio, callr (>= 3.5.1), cli (>= 3.4.0), desc, digest, ellipsis(>= 0.2.0), evaluate, jsonlite, lifecycle, magrittr, methods,pkgload, praise, processx, ps (>= 1.3.4), R6 (>= 2.2.0), rlang(>= 1.0.1), utils, waldo (>= 0.4.0), withr (>= 2.4.3);NA;covr, curl (>= 0.9.5), diffviewer (>= 0.1.0), knitr, mockery,rmarkdown, rstudioapi, shiny, usethis, vctrs (>= 0.1.0), xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tibble;/usr/local/lib/R/site-library;3.1.8;NA;R (>= 3.1.0);fansi (>= 0.4.0), lifecycle (>= 1.0.0), magrittr, methods,pillar (>= 1.7.0), pkgconfig, rlang (>= 1.0.2), utils, vctrs(>= 0.3.8);NA;bench, bit64, blob, brio, callr, cli, covr, crayon (>=1.3.4), DiagrammeR, dplyr, evaluate, formattable, ggplot2, hms,htmltools, knitr, lubridate, mockr, nycflights13, pkgbuild,pkgload, purrr, rmarkdown, stringi, testthat (>= 3.0.2), tidyr,withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tidyr;/usr/local/lib/R/site-library;1.2.1;NA;R (>= 3.1);dplyr (>= 1.0.0), ellipsis (>= 0.1.0), glue, lifecycle,magrittr, purrr, rlang, tibble (>= 2.1.1), tidyselect (>=1.1.0), utils, vctrs (>= 0.3.7);cpp11 (>= 0.4.0);covr, data.table, jsonlite, knitr, readr, repurrrsive (>=1.0.0), rmarkdown, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+tidyselect;/usr/local/lib/R/site-library;1.2.0;NA;R (>= 3.4);cli (>= 3.3.0), glue (>= 1.3.0), lifecycle (>= 1.0.3), rlang(>= 1.0.4), vctrs (>= 0.4.1), withr;NA;covr, crayon, dplyr, knitr, magrittr, rmarkdown, stringr,testthat (>= 3.1.1), tibble (>= 2.1.3);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+tidytree;/usr/local/lib/R/site-library;0.4.1;NA;R (>= 3.4.0);ape, dplyr, lazyeval, magrittr, methods, rlang, tibble, tidyr,tidyselect, yulab.utils (>= 0.0.4), pillar;NA;knitr, rmarkdown, prettydoc, testthat, utils;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+tint;/usr/local/lib/R/site-library;0.1.3;NA;NA;htmltools, knitr, rmarkdown;NA;ggplot2;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+tinytex;/usr/local/lib/R/site-library;0.42;NA;NA;xfun (>= 0.29);NA;testit, rstudioapi;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+treeio;/usr/local/lib/R/site-library;1.18.1;NA;R (>= 3.6.0);ape, dplyr, jsonlite, magrittr, methods, rlang, tibble,tidytree (>= 0.3.0), utils;NA;Biostrings, ggplot2, ggtree, igraph, knitr, rmarkdown,phangorn, prettydoc, testthat, tidyr, vroom, xml2, yaml;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+tzdb;/usr/local/lib/R/site-library;0.3.0;NA;R (>= 3.4.0);NA;cpp11 (>= 0.4.2);covr, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+urlchecker;/usr/local/lib/R/site-library;1.0.1;NA;R (>= 3.3);cli, curl, tools, xml2;NA;covr;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+usethis;/usr/local/lib/R/site-library;2.1.6;NA;R (>= 3.4);cli (>= 3.0.1), clipr (>= 0.3.0), crayon, curl (>= 2.7), desc(>= 1.4.0), fs (>= 1.3.0), gert (>= 1.4.1), gh (>= 1.2.1), glue(>= 1.3.0), jsonlite, lifecycle (>= 1.0.0), purrr, rappdirs,rlang (>= 1.0.0), rprojroot (>= 1.2), rstudioapi, stats, utils,whisker, withr (>= 2.3.0), yaml;NA;covr, knitr, magick, mockr, pkgload, rmarkdown, roxygen2 (>=7.1.2), spelling (>= 1.2), styler (>= 1.2.0), testthat (>=3.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+utf8;/usr/local/lib/R/site-library;1.2.2;NA;R (>= 2.10);NA;NA;cli, covr, knitr, rlang, rmarkdown, testthat (>= 3.0.0),withr;NA;Apache License (== 2.0) | file LICENSE;NA;NA;NA;NA;yes;4.1.2
+vctrs;/usr/local/lib/R/site-library;0.6.1;NA;R (>= 3.5.0);cli (>= 3.4.0), glue, lifecycle (>= 1.0.3), rlang (>= 1.1.0);NA;bit64, covr, crayon, dplyr (>= 0.8.5), generics, knitr,pillar (>= 1.4.4), pkgdown (>= 2.0.1), rmarkdown, testthat (>=3.0.0), tibble (>= 3.1.3), waldo (>= 0.2.0), withr, xml2,zeallot;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+viridisLite;/usr/local/lib/R/site-library;0.4.1;NA;R (>= 2.10);NA;NA;hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+vroom;/usr/local/lib/R/site-library;1.6.0;NA;R (>= 3.4);bit64, cli (>= 3.2.0), crayon, glue, hms, lifecycle, methods,rlang (>= 0.4.2), stats, tibble (>= 2.0.0), tidyselect, tzdb(>= 0.1.1), vctrs (>= 0.2.0), withr;cpp11 (>= 0.2.0), progress (>= 1.2.1), tzdb (>= 0.1.1);archive, bench (>= 1.1.0), covr, curl, dplyr, forcats, fs,ggplot2, knitr, patchwork, prettyunits, purrr, rmarkdown,rstudioapi, scales, spelling, testthat (>= 2.1.0), tidyr,utils, waldo, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+waldo;/usr/local/lib/R/site-library;0.4.0;NA;NA;cli, diffobj (>= 0.3.4), fansi, glue, methods, rematch2, rlang(>= 1.0.0), tibble;NA;covr, R6, testthat (>= 3.0.0), withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+whisker;/usr/local/lib/R/site-library;0.4;NA;NA;NA;NA;markdown;NA;GPL-3;NA;NA;NA;NA;no;4.1.2
+withr;/usr/local/lib/R/site-library;2.5.0;NA;R (>= 3.2.0);graphics, grDevices, stats;NA;callr, covr, DBI, knitr, lattice, methods, rlang, rmarkdown(>= 2.12), RSQLite, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+xfun;/usr/local/lib/R/site-library;0.33;NA;NA;stats, tools;NA;testit, parallel, codetools, rstudioapi, tinytex (>= 0.30),mime, markdown, knitr, htmltools, remotes, pak, rhub, renv,curl, jsonlite, magick, rmarkdown;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+xml2;/usr/local/lib/R/site-library;1.3.3;NA;R (>= 3.1.0);methods;NA;covr, curl, httr, knitr, magrittr, mockery, rmarkdown,testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+xopen;/usr/local/lib/R/site-library;1.0.0;NA;R (>= 3.1);processx;NA;ps, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.1.2
+xtable;/usr/local/lib/R/site-library;1.8-4;NA;R (>= 2.10.0);stats, utils;NA;knitr, plm, zoo, survival;NA;GPL (>= 2);NA;NA;NA;NA;no;4.1.2
+XVector;/usr/local/lib/R/site-library;0.34.0;NA;R (>= 4.0.0), methods, BiocGenerics (>= 0.37.0), S4Vectors (>=0.27.12), IRanges (>= 2.23.9);methods, utils, tools, zlibbioc, BiocGenerics, S4Vectors,IRanges;S4Vectors, IRanges;Biostrings, drosophila2probe, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.1.2
+yaml;/usr/local/lib/R/site-library;2.3.5;NA;NA;NA;NA;RUnit;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+yulab.utils;/usr/local/lib/R/site-library;0.0.5;NA;NA;utils;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.1.2
+zip;/usr/local/lib/R/site-library;2.2.1;NA;NA;NA;NA;covr, processx, R6, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+zlibbioc;/usr/local/lib/R/site-library;1.40.0;NA;NA;NA;NA;NA;NA;Artistic-2.0 + file LICENSE;NA;NA;NA;NA;yes;4.1.2
+littler;/usr/lib/R/site-library;0.3.15;NA;NA;NA;NA;simplermarkdown, docopt, rcmdcheck, foghorn;NA;GPL (>= 2);NA;NA;unix;NA;yes;4.1.2
+base;/usr/lib/R/library;4.1.2;base;NA;NA;NA;methods;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+boot;/usr/lib/R/library;1.3-28;recommended;R (>= 3.0.0), graphics, stats;NA;NA;MASS, survival;NA;Unlimited;NA;NA;NA;NA;no;4.0.5
+class;/usr/lib/R/library;7.3-20;recommended;R (>= 3.0.0), stats, utils;MASS;NA;NA;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+cluster;/usr/lib/R/library;2.1.2;recommended;R (>= 3.4.0);graphics, grDevices, stats, utils;NA;MASS, Matrix;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+codetools;/usr/lib/R/library;0.2-18;recommended;R (>= 2.1);NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.0.3
+compiler;/usr/lib/R/library;4.1.2;base;NA;NA;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+datasets;/usr/lib/R/library;4.1.2;base;NA;NA;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+foreign;/usr/lib/R/library;0.8-82;recommended;R (>= 4.0.0);methods, utils, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.2
+graphics;/usr/lib/R/library;4.1.2;base;NA;grDevices;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+grDevices;/usr/lib/R/library;4.1.2;base;NA;NA;NA;KernSmooth;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+grid;/usr/lib/R/library;4.1.2;base;NA;grDevices, utils;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+KernSmooth;/usr/lib/R/library;2.23-20;recommended;R (>= 2.5.0), stats;NA;NA;MASS, carData;NA;Unlimited;NA;NA;NA;NA;yes;4.0.5
+lattice;/usr/lib/R/library;0.20-45;recommended;R (>= 3.0.0);grid, grDevices, graphics, stats, utils;NA;KernSmooth, MASS, latticeExtra;chron;GPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+MASS;/usr/lib/R/library;7.3-55;recommended;R (>= 3.3.0), grDevices, graphics, stats, utils;methods;NA;lattice, nlme, nnet, survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+Matrix;/usr/lib/R/library;1.4-0;recommended;R (>= 3.5.0);methods, graphics, grid, stats, utils, lattice;NA;expm, MASS;MatrixModels, graph, SparseM, sfsmisc, igraph, maptools, sp,spdep;GPL (>= 2) | file LICENCE;NA;NA;NA;NA;yes;4.1.2
+methods;/usr/lib/R/library;4.1.2;base;NA;utils, stats;NA;codetools;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+mgcv;/usr/lib/R/library;1.8-38;recommended;R (>= 3.6.0), nlme (>= 3.1-64);methods, stats, graphics, Matrix, splines, utils;NA;parallel, survival, MASS;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+nlme;/usr/lib/R/library;3.1-155;recommended;R (>= 3.4.0);graphics, stats, utils, lattice;NA;Hmisc, MASS;NA;GPL (>= 2) | file LICENCE;NA;NA;NA;NA;yes;4.1.2
+nnet;/usr/lib/R/library;7.3-17;recommended;R (>= 3.0.0), stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+parallel;/usr/lib/R/library;4.1.2;base;NA;tools, compiler;NA;methods;snow, nws, Rmpi;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+rpart;/usr/lib/R/library;4.1.16;recommended;R (>= 2.15.0), graphics, stats, grDevices;NA;NA;survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+spatial;/usr/lib/R/library;7.3-15;recommended;R (>= 3.0.0), graphics, stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.1.2
+splines;/usr/lib/R/library;4.1.2;base;NA;graphics, stats;NA;Matrix, methods;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+stats;/usr/lib/R/library;4.1.2;base;NA;utils, grDevices, graphics;NA;MASS, Matrix, SuppDists, methods, stats4;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+stats4;/usr/lib/R/library;4.1.2;base;NA;graphics, methods, stats;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;NA;4.1.2
+survival;/usr/lib/R/library;3.2-13;recommended;R (>= 3.5.0);graphics, Matrix, methods, splines, stats, utils;NA;NA;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.1.1
+tcltk;/usr/lib/R/library;4.1.2;base;NA;utils;NA;NA;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+tools;/usr/lib/R/library;4.1.2;base;NA;NA;NA;codetools, methods, xml2, curl, commonmark;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
+utils;/usr/lib/R/library;4.1.2;base;NA;NA;NA;methods, xml2, commonmark;NA;Part of R 4.1.2;NA;NA;NA;NA;yes;4.1.2
diff --git a/README.md b/README.md
index a0253055fb4b9553c54509a85919bddb24908cb4..f1bd777faec8cb916425ab67e79ca90b2c652b97 100644
--- a/README.md
+++ b/README.md
@@ -72,6 +72,13 @@ Hub-CDB Institut Pasteur & DSI Institut Pasteur
 Use the gitlab tag of the docker image (e.g., gitlab_v5.0) to get the description of the modifications below
 
 
+### 9.9
+
+Dockerfiles modified: <br />
+R/v4.1.2/extended/v3.3 at date 20230331: from gmillot/r_v4.1.2_extended_v3.2:gitlab_v9.8  with lemon added<br />
+R/v4.1.2/ig_clustering/v1.3 at date 20230331: from gmillot/r_v4.1.2_ig_clustering_v1.2:gitlab_v9.8  with lemon added<br />
+
+
 ### 9.8
 
 Dockerfiles modified: <br />