diff --git a/README.md b/README.md
index d78d7ca58564943684992536d4cb8048b30f5db9..4cb28f903bd69e75632126388a53db84e9f237de 100644
--- a/README.md
+++ b/README.md
@@ -72,6 +72,12 @@ 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
 
 
+### 10.1
+
+Dockerfiles modified: <br />
+fedora\v33\immcantation\v1.2 at date 20230407: from gmillot/immcantation_v1.1:gitlab_v10.0  with lubridate added<br />
+
+
 ### 10.0
 
 Dockerfiles modified: <br />
diff --git a/fedora/v33/immcantation/v1.1/Dockerfile b/fedora/v33/immcantation/v1.1/Dockerfile
index 5cf64c782c48f538f743d4389de5acea1a49fe0a..48c304a1c5b5440864add34d98ad5c5535ba7895 100644
--- a/fedora/v33/immcantation/v1.1/Dockerfile
+++ b/fedora/v33/immcantation/v1.1/Dockerfile
@@ -46,7 +46,8 @@ ENV RLIB="\
 # 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 RLIB_LENGTH=0 \
+RUN echo "" > building.log \
+  && RLIB_LENGTH=0 \
   && for i2 in $RLIB ; do RLIB_LENGTH=$((RLIB_LENGTH+1)) ; done \
   && COUNT=0 \
   && for i2 in $RLIB ; do \
diff --git a/fedora/v33/immcantation/v1.2/Dockerfile b/fedora/v33/immcantation/v1.2/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..b94800254a24d69fa693aae1c9214c08260cfb64
--- /dev/null
+++ b/fedora/v33/immcantation/v1.2/Dockerfile
@@ -0,0 +1,142 @@
+#########################################################################
+##                                                                     ##
+##     Dockerfile                                                      ##
+##     fedora base                                                     ##
+##                                                                     ##
+##     Gael A. Millot                                                  ##
+##     Bioinformatics and Biostatistics Hub                            ##
+##     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>
+
+# see https://immcantation.readthedocs.io/en/stable/docker/intro.html
+FROM gmillot/immcantation_v1.1:gitlab_v10.0
+
+
+LABEL Gael.Millot=gael.millot@pasteur.fr
+LABEL gitlab.dockerfiles="https://gitlab.pasteur.fr/gmillot/dockerfiles"
+
+LABEL Gael.Millot=gael.millot@pasteur.fr
+LABEL gitlab.dockerfiles="https://gitlab.pasteur.fr/gmillot/dockerfiles"
+
+
+
+ENV CRANREPO="'https://cran.irsn.fr/'"
+
+ENV BIOCONDUCTOR_REPO="'https://cloud.r-project.org'"
+
+ENV RLIB="\
+  'lubridate' \
+"
+
+
+# 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 "" > 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,  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,  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,  dependencies = NA, verbose = TRUE, update = FALSE, site_repository = $BIOCONDUCTOR_REPO) \
+        } \
+      }else if($i2 == 'ggplot2'){ \
+        devtools::install_version(package = 'ggplot2', version = '3.3.3',  dependencies = NA, verbose = TRUE, repos = $CRANREPO) \
+      }else if($i2 == 'SARTools'){ \
+        devtools::install_github('PF2-pasteur-fr/SARTools', build_opts='--no-resave-data',  dependencies = NA, verbose = TRUE, upgrade = "always") \
+      } \
+    " | tee -a building.log ; \
+  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") | tee -a building.log
+
+# dependencies=NA means c("Depends", "Imports", "LinkingTo"). Do no use TRUE -> install suggesting packages which inflates tremendously the image.
+
+ENTRYPOINT ["/bin/bash"]
+
+
+
diff --git a/fedora/v33/immcantation/v1.2/building.log b/fedora/v33/immcantation/v1.2/building.log
new file mode 100644
index 0000000000000000000000000000000000000000..a1437e95d4d29fac0836b5af2c04f274e3c65da3
--- /dev/null
+++ b/fedora/v33/immcantation/v1.2/building.log
@@ -0,0 +1,716 @@
+
+
+
+
+
+================
+
+R PACKAGE INSTALLATION 1 / 1: lubridate
+
+================
+
+
+
+
+trying URL 'https://cran.irsn.fr/src/contrib/timechange_0.2.0.tar.gz'
+Content type 'application/x-gzip' length 102806 bytes (100 KB)
+==================================================
+downloaded 100 KB
+
+trying URL 'https://cran.irsn.fr/src/contrib/lubridate_1.9.2.tar.gz'
+Content type 'application/x-gzip' length 427200 bytes (417 KB)
+==================================================
+downloaded 417 KB
+
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c common.cpp -o common.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cpp11.cpp -o cpp11.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c get.cpp -o get.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c parse.c -o parse.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c round.cpp -o round.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c tzone.cpp -o tzone.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c update.cpp -o update.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_fixed.cc -o cctz/src/time_zone_fixed.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_if.cc -o cctz/src/time_zone_if.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_impl.cc -o cctz/src/time_zone_impl.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_info.cc -o cctz/src/time_zone_info.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_libc.cc -o cctz/src/time_zone_libc.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_lookup.cc -o cctz/src/time_zone_lookup.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/time_zone_posix.cc -o cctz/src/time_zone_posix.o
+g++ -m64 -std=gnu++11 -I"/usr/include/R" -DNDEBUG -I. -I./cctz/src/ -I'/usr/lib64/R/library/cpp11/include' -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c cctz/src/zone_info_source.cc -o cctz/src/zone_info_source.o
+ar rcs libcctz.a ./cctz/src/time_zone_fixed.o ./cctz/src/time_zone_if.o ./cctz/src/time_zone_impl.o ./cctz/src/time_zone_info.o ./cctz/src/time_zone_libc.o ./cctz/src/time_zone_lookup.o ./cctz/src/time_zone_posix.o ./cctz/src/zone_info_source.o
+g++ -m64 -std=gnu++11 -shared -L/usr/lib64/R/lib -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o timechange.so common.o cpp11.o get.o parse.o round.o tzone.o update.o -L. -lcctz -L/usr/lib64/R/lib -lR
+  converting help for package 'timechange'
+    time-zones                              html  
+    time_add                                html  
+    time_get                                html  
+    time_round                              html  
+    time_update                             html  
+    timechange-package                      html  
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c datetime.c -o datetime.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c init.c -o init.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c period.c -o period.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c tparse.c -o tparse.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c utils.c -o utils.o
+gcc -m64 -shared -L/usr/lib64/R/lib -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o lubridate.so datetime.o init.o period.o tparse.o utils.o -L/usr/lib64/R/lib -lR
+  converting help for package 'lubridate'
+    DateCoercion                            html  
+    DateTimeUpdate                          html  
+    Deprecated                              html  
+    Duration-class                          html  
+    Interval-class                          html  
+    Period-class                            html  
+    Timespan-class                          html  
+    am                                      html  
+    as.duration                             html  
+    as.interval                             html  
+    as.period                               html  
+    as_date                                 html  
+    cyclic_encoding                         html  
+    date                                    html  
+    date_decimal                            html  
+    date_utils                              html  
+    day                                     html  
+    days_in_month                           html  
+    decimal_date                            html  
+    dst                                     html  
+    duration                                html  
+    fit_to_timeline                         html  
+    force_tz                                html  
+    format_ISO8601                          html  
+    format_ISO8601_precision_check          html  
+    guess_formats                           html  
+    hidden_aliases                          html  
+    hms                                     html  
+    hour                                    html  
+    interval                                html  
+    is.difftime                             html  
+    is.instant                              html  
+    is.timespan                             html  
+    lakers                                  html  
+    leap_year                               html  
+    local_time                              html  
+    lubridate-package                       html  
+    make_datetime                           html  
+    make_difftime                           html  
+    minute                                  html  
+    month                                   html  
+    mplus                                   html  
+    now                                     html  
+    origin                                  html  
+    parse_date_time                         html  
+    period                                  html  
+    period_to_seconds                       html  
+    posix_utils                             html  
+    pretty_dates                            html  
+    quarter                                 html  
+    reclass_date                            html  
+    reclass_timespan                        html  
+    reexports                               html  
+    rollbackward                            html  
+    round_date                              html  
+    second                                  html  
+    stamp                                   html  
+    time_length                             html  
+    timespan                                html  
+    tz                                      html  
+    week                                    html  
+    with_tz                                 html  
+    within-interval                         html  
+    year                                    html  
+    ymd                                     html  
+    ymd_hms                                 html  
+System has not been booted with systemd as init system (PID 1). Can't operate.
+Failed to connect to bus: Host is down
+Warning in system("timedatectl", intern = TRUE) :
+  running command 'timedatectl' had status 1
+System has not been booted with systemd as init system (PID 1). Can't operate.
+Failed to connect to bus: Host is down
+Warning in system("timedatectl", intern = TRUE) :
+  running command 'timedatectl' had status 1
+
+The downloaded source packages are in
+	'/tmp/RtmpeNvY8J/downloaded_packages'
+
+
+STANDARD INSTALLATION ATTEMPT FOR lubridate
+
+
+
+
+
+STANDARD INSTALLATION ATTEMPT FOR lubridate
+
+
+Installing package into '/usr/lib64/R/library'
+(as 'lib' is unspecified)
+system (cmd0): /usr/lib64/R/bin/R CMD INSTALL
+trying URL 'https://cran.irsn.fr/src/contrib/lubridate_1.9.2.tar.gz'
+Content type 'application/x-gzip' length 427200 bytes (417 KB)
+==================================================
+downloaded 417 KB
+
+foundpkgs: lubridate, /tmp/RtmpeNvY8J/downloaded_packages/lubridate_1.9.2.tar.gz
+files: /tmp/RtmpeNvY8J/downloaded_packages/lubridate_1.9.2.tar.gz
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c datetime.c -o datetime.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c init.c -o init.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c period.c -o period.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c tparse.c -o tparse.o
+gcc -m64 -I"/usr/include/R" -DNDEBUG   -I/usr/local/include   -fpic  -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection  -c utils.c -o utils.o
+gcc -m64 -shared -L/usr/lib64/R/lib -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o lubridate.so datetime.o init.o period.o tparse.o utils.o -L/usr/lib64/R/lib -lR
+  converting help for package 'lubridate'
+    DateCoercion                            html  
+    DateTimeUpdate                          html  
+    Deprecated                              html  
+    Duration-class                          html  
+    Interval-class                          html  
+    Period-class                            html  
+    Timespan-class                          html  
+    am                                      html  
+    as.duration                             html  
+    as.interval                             html  
+    as.period                               html  
+    as_date                                 html  
+    cyclic_encoding                         html  
+    date                                    html  
+    date_decimal                            html  
+    date_utils                              html  
+    day                                     html  
+    days_in_month                           html  
+    decimal_date                            html  
+    dst                                     html  
+    duration                                html  
+    fit_to_timeline                         html  
+    force_tz                                html  
+    format_ISO8601                          html  
+    format_ISO8601_precision_check          html  
+    guess_formats                           html  
+    hidden_aliases                          html  
+    hms                                     html  
+    hour                                    html  
+    interval                                html  
+    is.difftime                             html  
+    is.instant                              html  
+    is.timespan                             html  
+    lakers                                  html  
+    leap_year                               html  
+    local_time                              html  
+    lubridate-package                       html  
+    make_datetime                           html  
+    make_difftime                           html  
+    minute                                  html  
+    month                                   html  
+    mplus                                   html  
+    now                                     html  
+    origin                                  html  
+    parse_date_time                         html  
+    period                                  html  
+    period_to_seconds                       html  
+    posix_utils                             html  
+    pretty_dates                            html  
+    quarter                                 html  
+    reclass_date                            html  
+    reclass_timespan                        html  
+    reexports                               html  
+    rollbackward                            html  
+    round_date                              html  
+    second                                  html  
+    stamp                                   html  
+    time_length                             html  
+    timespan                                html  
+    tz                                      html  
+    week                                    html  
+    with_tz                                 html  
+    within-interval                         html  
+    year                                    html  
+    ymd                                     html  
+    ymd_hms                                 html  
+System has not been booted with systemd as init system (PID 1). Can't operate.
+Failed to connect to bus: Host is down
+Warning in system("timedatectl", intern = TRUE) :
+  running command 'timedatectl' had status 1
+System has not been booted with systemd as init system (PID 1). Can't operate.
+Failed to connect to bus: Host is down
+Warning in system("timedatectl", intern = TRUE) :
+  running command 'timedatectl' had status 1
+1): succeeded '/usr/lib64/R/bin/R CMD INSTALL -l '/usr/lib64/R/library' '/tmp/RtmpeNvY8J/downloaded_packages/lubridate_1.9.2.tar.gz''
+
+The downloaded source packages are in
+	'/tmp/RtmpeNvY8J/downloaded_packages'
+Updating HTML index of packages in '.Library'
+Making 'packages.html' ... done
+[1] TRUE
+
+
+
+
+================
+
+R PACKAGES INSTALLED
+
+================
+
+
+
+
+SEE ALSO THE installed_r_packages.csv TABLE IN THE ROOT OF THE CONTAINER
+
+
+now dyn.load("/usr/lib64/R/library/tools/libs/tools.so") ...
+                                  Package              LibPath  Version
+BH                                     BH /usr/lib64/R/library 1.75.0-0
+Biobase                           Biobase /usr/lib64/R/library   2.50.0
+BiocGenerics                 BiocGenerics /usr/lib64/R/library   0.36.1
+BiocManager                   BiocManager /usr/lib64/R/library  1.30.16
+BiocParallel                 BiocParallel /usr/lib64/R/library   1.24.1
+BiocVersion                   BiocVersion /usr/lib64/R/library   3.12.0
+Biostrings                     Biostrings /usr/lib64/R/library   2.58.0
+DelayedArray                 DelayedArray /usr/lib64/R/library   0.16.3
+GenomeInfoDb                 GenomeInfoDb /usr/lib64/R/library   1.26.7
+GenomeInfoDbData         GenomeInfoDbData /usr/lib64/R/library    1.2.4
+GenomicAlignments       GenomicAlignments /usr/lib64/R/library   1.26.0
+GenomicRanges               GenomicRanges /usr/lib64/R/library   1.42.0
+IRanges                           IRanges /usr/lib64/R/library   2.24.1
+KernSmooth                     KernSmooth /usr/lib64/R/library  2.23-18
+MASS                                 MASS /usr/lib64/R/library 7.3-53.1
+Matrix                             Matrix /usr/lib64/R/library    1.3-2
+MatrixGenerics             MatrixGenerics /usr/lib64/R/library    1.2.1
+R6                                     R6 /usr/lib64/R/library    2.5.1
+RColorBrewer                 RColorBrewer /usr/lib64/R/library    1.1-2
+RCurl                               RCurl /usr/lib64/R/library 1.98-1.5
+Rcpp                                 Rcpp /usr/lib64/R/library    1.0.7
+Rhtslib                           Rhtslib /usr/lib64/R/library   1.22.0
+Rsamtools                       Rsamtools /usr/lib64/R/library    2.6.0
+S4Vectors                       S4Vectors /usr/lib64/R/library   0.28.1
+SummarizedExperiment SummarizedExperiment /usr/lib64/R/library   1.20.0
+XVector                           XVector /usr/lib64/R/library   0.30.0
+ade4                                 ade4 /usr/lib64/R/library   1.7-18
+airr                                 airr /usr/lib64/R/library    1.3.0
+alakazam                         alakazam /usr/lib64/R/library    1.2.0
+ape                                   ape /usr/lib64/R/library      5.5
+aplot                               aplot /usr/lib64/R/library    0.1.1
+askpass                           askpass /usr/lib64/R/library      1.1
+base                                 base /usr/lib64/R/library    4.0.5
+base64enc                       base64enc /usr/lib64/R/library    0.1-3
+beanplot                         beanplot /usr/lib64/R/library      1.2
+bibtex                             bibtex /usr/lib64/R/library  0.4.2.3
+bit                                   bit /usr/lib64/R/library    4.0.4
+bit64                               bit64 /usr/lib64/R/library    4.0.5
+bitops                             bitops /usr/lib64/R/library    1.0-7
+boot                                 boot /usr/lib64/R/library   1.3-27
+brew                                 brew /usr/lib64/R/library    1.0-6
+brio                                 brio /usr/lib64/R/library    1.1.2
+caTools                           caTools /usr/lib64/R/library   1.18.2
+cachem                             cachem /usr/lib64/R/library    1.0.6
+callr                               callr /usr/lib64/R/library    3.7.0
+captioner                       captioner /usr/lib64/R/library    2.2.3
+class                               class /usr/lib64/R/library   7.3-18
+cli                                   cli /usr/lib64/R/library    3.1.0
+clipr                               clipr /usr/lib64/R/library    0.7.1
+cluster                           cluster /usr/lib64/R/library    2.1.1
+codetools                       codetools /usr/lib64/R/library   0.2-18
+colorspace                     colorspace /usr/lib64/R/library    2.0-2
+commonmark                     commonmark /usr/lib64/R/library      1.7
+compiler                         compiler /usr/lib64/R/library    4.0.5
+cowplot                           cowplot /usr/lib64/R/library    1.1.1
+cpp11                               cpp11 /usr/lib64/R/library    0.4.1
+crayon                             crayon /usr/lib64/R/library    1.4.2
+credentials                   credentials /usr/lib64/R/library    1.3.1
+crosstalk                       crosstalk /usr/lib64/R/library    1.2.0
+curl                                 curl /usr/lib64/R/library    4.3.2
+data.table                     data.table /usr/lib64/R/library   1.14.2
+datasets                         datasets /usr/lib64/R/library    4.0.5
+dendextend                     dendextend /usr/lib64/R/library   1.15.2
+desc                                 desc /usr/lib64/R/library    1.4.0
+devtools                         devtools /usr/lib64/R/library    2.4.2
+diffobj                           diffobj /usr/lib64/R/library    0.3.5
+digest                             digest /usr/lib64/R/library   0.6.28
+diptest                           diptest /usr/lib64/R/library   0.76-0
+doParallel                     doParallel /usr/lib64/R/library   1.0.16
+dowser                             dowser /usr/lib64/R/library    0.1.0
+dplyr                               dplyr /usr/lib64/R/library    1.0.7
+ellipsis                         ellipsis /usr/lib64/R/library    0.3.2
+evaluate                         evaluate /usr/lib64/R/library     0.14
+fansi                               fansi /usr/lib64/R/library    0.5.0
+farver                             farver /usr/lib64/R/library    2.1.0
+fastmap                           fastmap /usr/lib64/R/library    1.1.0
+fastmatch                       fastmatch /usr/lib64/R/library    1.1-3
+foreach                           foreach /usr/lib64/R/library    1.5.1
+foreign                           foreign /usr/lib64/R/library   0.8-81
+formatR                           formatR /usr/lib64/R/library     1.11
+fs                                     fs /usr/lib64/R/library    1.5.0
+futile.logger               futile.logger /usr/lib64/R/library    1.4.3
+futile.options             futile.options /usr/lib64/R/library    1.0.1
+generics                         generics /usr/lib64/R/library    0.1.1
+gert                                 gert /usr/lib64/R/library    1.4.2
+getopt                             getopt /usr/lib64/R/library   1.20.3
+ggdendro                         ggdendro /usr/lib64/R/library   0.1.22
+ggfun                               ggfun /usr/lib64/R/library    0.0.4
+ggplot2                           ggplot2 /usr/lib64/R/library    3.3.5
+ggplotify                       ggplotify /usr/lib64/R/library    0.1.0
+ggtree                             ggtree /usr/lib64/R/library    2.4.2
+gh                                     gh /usr/lib64/R/library    1.3.0
+gitcreds                         gitcreds /usr/lib64/R/library    0.1.1
+glue                                 glue /usr/lib64/R/library    1.5.0
+gplots                             gplots /usr/lib64/R/library    3.1.1
+grDevices                       grDevices /usr/lib64/R/library    4.0.5
+graphics                         graphics /usr/lib64/R/library    4.0.5
+grid                                 grid /usr/lib64/R/library    4.0.5
+gridExtra                       gridExtra /usr/lib64/R/library      2.3
+gridGraphics                 gridGraphics /usr/lib64/R/library    0.5-1
+gtable                             gtable /usr/lib64/R/library    0.3.0
+gtools                             gtools /usr/lib64/R/library    3.9.2
+hexbin                             hexbin /usr/lib64/R/library   1.28.2
+highr                               highr /usr/lib64/R/library      0.9
+hms                                   hms /usr/lib64/R/library    1.1.1
+htmltools                       htmltools /usr/lib64/R/library    0.5.2
+htmlwidgets                   htmlwidgets /usr/lib64/R/library    1.5.4
+httr                                 httr /usr/lib64/R/library    1.4.2
+igraph                             igraph /usr/lib64/R/library    1.2.8
+ini                                   ini /usr/lib64/R/library    0.3.1
+isoband                           isoband /usr/lib64/R/library    0.2.5
+iterators                       iterators /usr/lib64/R/library   1.0.13
+jquerylib                       jquerylib /usr/lib64/R/library    0.1.4
+jsonlite                         jsonlite /usr/lib64/R/library    1.7.2
+kedd                                 kedd /usr/lib64/R/library    1.0.3
+knitr                               knitr /usr/lib64/R/library     1.36
+labeling                         labeling /usr/lib64/R/library    0.4.2
+lambda.r                         lambda.r /usr/lib64/R/library    1.2.4
+later                               later /usr/lib64/R/library    1.3.0
+lattice                           lattice /usr/lib64/R/library  0.20-41
+lazyeval                         lazyeval /usr/lib64/R/library    0.2.2
+lifecycle                       lifecycle /usr/lib64/R/library    1.0.1
+lubridate                       lubridate /usr/lib64/R/library    1.9.2
+magrittr                         magrittr /usr/lib64/R/library    2.0.1
+markdown                         markdown /usr/lib64/R/library      1.1
+matrixStats                   matrixStats /usr/lib64/R/library   0.61.0
+memoise                           memoise /usr/lib64/R/library    2.0.0
+methods                           methods /usr/lib64/R/library    4.0.5
+mgcv                                 mgcv /usr/lib64/R/library   1.8-34
+mime                                 mime /usr/lib64/R/library     0.12
+munsell                           munsell /usr/lib64/R/library    0.5.0
+nlme                                 nlme /usr/lib64/R/library  3.1-152
+nnet                                 nnet /usr/lib64/R/library   7.3-15
+openssl                           openssl /usr/lib64/R/library    1.4.5
+optparse                         optparse /usr/lib64/R/library    1.7.1
+parallel                         parallel /usr/lib64/R/library    4.0.5
+patchwork                       patchwork /usr/lib64/R/library    1.1.1
+pdist                               pdist /usr/lib64/R/library      1.2
+phangorn                         phangorn /usr/lib64/R/library    2.7.1
+phylotate                       phylotate /usr/lib64/R/library      1.3
+pillar                             pillar /usr/lib64/R/library    1.6.4
+pixmap                             pixmap /usr/lib64/R/library   0.4-12
+pkgbuild                         pkgbuild /usr/lib64/R/library    1.2.0
+pkgconfig                       pkgconfig /usr/lib64/R/library    2.0.3
+pkgload                           pkgload /usr/lib64/R/library    1.2.3
+plotly                             plotly /usr/lib64/R/library   4.10.0
+plyr                                 plyr /usr/lib64/R/library    1.8.6
+praise                             praise /usr/lib64/R/library    1.0.0
+prestor                           prestor /usr/lib64/R/library    0.0.7
+prettyunits                   prettyunits /usr/lib64/R/library    1.1.1
+processx                         processx /usr/lib64/R/library    3.5.2
+progress                         progress /usr/lib64/R/library    1.2.2
+promises                         promises /usr/lib64/R/library  1.2.0.1
+ps                                     ps /usr/lib64/R/library    1.6.0
+purrr                               purrr /usr/lib64/R/library    0.3.4
+quadprog                         quadprog /usr/lib64/R/library    1.5-8
+rabhit                             rabhit /usr/lib64/R/library    0.1.5
+rappdirs                         rappdirs /usr/lib64/R/library    0.3.3
+rcmdcheck                       rcmdcheck /usr/lib64/R/library    1.4.0
+rdi                                   rdi /usr/lib64/R/library    1.0.0
+readr                               readr /usr/lib64/R/library    2.0.2
+rematch2                         rematch2 /usr/lib64/R/library    2.1.2
+remotes                           remotes /usr/lib64/R/library    2.4.1
+reshape2                         reshape2 /usr/lib64/R/library    1.4.4
+rlang                               rlang /usr/lib64/R/library   0.4.12
+rmarkdown                       rmarkdown /usr/lib64/R/library     2.11
+roxygen2                         roxygen2 /usr/lib64/R/library    7.1.2
+rpart                               rpart /usr/lib64/R/library   4.1-15
+rprojroot                       rprojroot /usr/lib64/R/library    2.0.2
+rstudioapi                     rstudioapi /usr/lib64/R/library     0.13
+rvcheck                           rvcheck /usr/lib64/R/library    0.1.8
+rversions                       rversions /usr/lib64/R/library    2.1.1
+scales                             scales /usr/lib64/R/library    1.1.1
+scoper                             scoper /usr/lib64/R/library    1.2.0
+segmented                       segmented /usr/lib64/R/library    1.3-4
+seqinr                             seqinr /usr/lib64/R/library    4.2-8
+sessioninfo                   sessioninfo /usr/lib64/R/library    1.2.1
+shazam                             shazam /usr/lib64/R/library    1.1.0
+snow                                 snow /usr/lib64/R/library    0.4-4
+sp                                     sp /usr/lib64/R/library    1.4-5
+spatial                           spatial /usr/lib64/R/library   7.3-13
+splines                           splines /usr/lib64/R/library    4.0.5
+splitstackshape           splitstackshape /usr/lib64/R/library    1.4.8
+stats                               stats /usr/lib64/R/library    4.0.5
+stats4                             stats4 /usr/lib64/R/library    4.0.5
+stringi                           stringi /usr/lib64/R/library    1.7.5
+stringr                           stringr /usr/lib64/R/library    1.4.0
+survival                         survival /usr/lib64/R/library   3.2-10
+svglite                           svglite /usr/lib64/R/library    2.1.1
+sys                                   sys /usr/lib64/R/library      3.4
+systemfonts                   systemfonts /usr/lib64/R/library    1.0.4
+tcltk                               tcltk /usr/lib64/R/library    4.0.5
+testthat                         testthat /usr/lib64/R/library    3.1.0
+tibble                             tibble /usr/lib64/R/library    3.1.6
+tidyr                               tidyr /usr/lib64/R/library    1.1.4
+tidyselect                     tidyselect /usr/lib64/R/library    1.1.1
+tidytree                         tidytree /usr/lib64/R/library    0.3.5
+tigger                             tigger /usr/lib64/R/library    1.0.0
+timechange                     timechange /usr/lib64/R/library    0.2.0
+tinytex                           tinytex /usr/lib64/R/library     0.35
+tools                               tools /usr/lib64/R/library    4.0.5
+treeio                             treeio /usr/lib64/R/library   1.14.4
+tzdb                                 tzdb /usr/lib64/R/library    0.2.0
+usethis                           usethis /usr/lib64/R/library    2.1.3
+utf8                                 utf8 /usr/lib64/R/library    1.2.2
+utils                               utils /usr/lib64/R/library    4.0.5
+vctrs                               vctrs /usr/lib64/R/library    0.3.8
+viridis                           viridis /usr/lib64/R/library    0.6.2
+viridisLite                   viridisLite /usr/lib64/R/library    0.4.0
+vroom                               vroom /usr/lib64/R/library    1.5.5
+waldo                               waldo /usr/lib64/R/library    0.3.1
+whisker                           whisker /usr/lib64/R/library      0.4
+withr                               withr /usr/lib64/R/library    2.4.2
+xfun                                 xfun /usr/lib64/R/library     0.28
+xml2                                 xml2 /usr/lib64/R/library    1.3.2
+xopen                               xopen /usr/lib64/R/library    1.0.0
+yaml                                 yaml /usr/lib64/R/library    2.2.1
+yulab.utils                   yulab.utils /usr/lib64/R/library    0.0.4
+zip                                   zip /usr/lib64/R/library    2.2.0
+zlibbioc                         zlibbioc /usr/lib64/R/library   1.36.0
+                        Priority
+BH                          <NA>
+Biobase                     <NA>
+BiocGenerics                <NA>
+BiocManager                 <NA>
+BiocParallel                <NA>
+BiocVersion                 <NA>
+Biostrings                  <NA>
+DelayedArray                <NA>
+GenomeInfoDb                <NA>
+GenomeInfoDbData            <NA>
+GenomicAlignments           <NA>
+GenomicRanges               <NA>
+IRanges                     <NA>
+KernSmooth           recommended
+MASS                 recommended
+Matrix               recommended
+MatrixGenerics              <NA>
+R6                          <NA>
+RColorBrewer                <NA>
+RCurl                       <NA>
+Rcpp                        <NA>
+Rhtslib                     <NA>
+Rsamtools                   <NA>
+S4Vectors                   <NA>
+SummarizedExperiment        <NA>
+XVector                     <NA>
+ade4                        <NA>
+airr                        <NA>
+alakazam                    <NA>
+ape                         <NA>
+aplot                       <NA>
+askpass                     <NA>
+base                        base
+base64enc                   <NA>
+beanplot                    <NA>
+bibtex                      <NA>
+bit                         <NA>
+bit64                       <NA>
+bitops                      <NA>
+boot                 recommended
+brew                        <NA>
+brio                        <NA>
+caTools                     <NA>
+cachem                      <NA>
+callr                       <NA>
+captioner                   <NA>
+class                recommended
+cli                         <NA>
+clipr                       <NA>
+cluster              recommended
+codetools            recommended
+colorspace                  <NA>
+commonmark                  <NA>
+compiler                    base
+cowplot                     <NA>
+cpp11                       <NA>
+crayon                      <NA>
+credentials                 <NA>
+crosstalk                   <NA>
+curl                        <NA>
+data.table                  <NA>
+datasets                    base
+dendextend                  <NA>
+desc                        <NA>
+devtools                    <NA>
+diffobj                     <NA>
+digest                      <NA>
+diptest                     <NA>
+doParallel                  <NA>
+dowser                      <NA>
+dplyr                       <NA>
+ellipsis                    <NA>
+evaluate                    <NA>
+fansi                       <NA>
+farver                      <NA>
+fastmap                     <NA>
+fastmatch                   <NA>
+foreach                     <NA>
+foreign              recommended
+formatR                     <NA>
+fs                          <NA>
+futile.logger               <NA>
+futile.options              <NA>
+generics                    <NA>
+gert                        <NA>
+getopt                      <NA>
+ggdendro                    <NA>
+ggfun                       <NA>
+ggplot2                     <NA>
+ggplotify                   <NA>
+ggtree                      <NA>
+gh                          <NA>
+gitcreds                    <NA>
+glue                        <NA>
+gplots                      <NA>
+grDevices                   base
+graphics                    base
+grid                        base
+gridExtra                   <NA>
+gridGraphics                <NA>
+gtable                      <NA>
+gtools                      <NA>
+hexbin                      <NA>
+highr                       <NA>
+hms                         <NA>
+htmltools                   <NA>
+htmlwidgets                 <NA>
+httr                        <NA>
+igraph                      <NA>
+ini                         <NA>
+isoband                     <NA>
+iterators                   <NA>
+jquerylib                   <NA>
+jsonlite                    <NA>
+kedd                        <NA>
+knitr                       <NA>
+labeling                    <NA>
+lambda.r                    <NA>
+later                       <NA>
+lattice              recommended
+lazyeval                    <NA>
+lifecycle                   <NA>
+lubridate                   <NA>
+magrittr                    <NA>
+markdown                    <NA>
+matrixStats                 <NA>
+memoise                     <NA>
+methods                     base
+mgcv                 recommended
+mime                        <NA>
+munsell                     <NA>
+nlme                 recommended
+nnet                 recommended
+openssl                     <NA>
+optparse                    <NA>
+parallel                    base
+patchwork                   <NA>
+pdist                       <NA>
+phangorn                    <NA>
+phylotate                   <NA>
+pillar                      <NA>
+pixmap                      <NA>
+pkgbuild                    <NA>
+pkgconfig                   <NA>
+pkgload                     <NA>
+plotly                      <NA>
+plyr                        <NA>
+praise                      <NA>
+prestor                     <NA>
+prettyunits                 <NA>
+processx                    <NA>
+progress                    <NA>
+promises                    <NA>
+ps                          <NA>
+purrr                       <NA>
+quadprog                    <NA>
+rabhit                      <NA>
+rappdirs                    <NA>
+rcmdcheck                   <NA>
+rdi                         <NA>
+readr                       <NA>
+rematch2                    <NA>
+remotes                     <NA>
+reshape2                    <NA>
+rlang                       <NA>
+rmarkdown                   <NA>
+roxygen2                    <NA>
+rpart                recommended
+rprojroot                   <NA>
+rstudioapi                  <NA>
+rvcheck                     <NA>
+rversions                   <NA>
+scales                      <NA>
+scoper                      <NA>
+segmented                   <NA>
+seqinr                      <NA>
+sessioninfo                 <NA>
+shazam                      <NA>
+snow                        <NA>
+sp                          <NA>
+spatial              recommended
+splines                     base
+splitstackshape             <NA>
+stats                       base
+stats4                      base
+stringi                     <NA>
+stringr                     <NA>
+survival             recommended
+svglite                     <NA>
+sys                         <NA>
+systemfonts                 <NA>
+tcltk                       base
+testthat                    <NA>
+tibble                      <NA>
+tidyr                       <NA>
+tidyselect                  <NA>
+tidytree                    <NA>
+tigger                      <NA>
+timechange                  <NA>
+tinytex                     <NA>
+tools                       base
+treeio                      <NA>
+tzdb                        <NA>
+usethis                     <NA>
+utf8                        <NA>
+utils                       base
+vctrs                       <NA>
+viridis                     <NA>
+viridisLite                 <NA>
+vroom                       <NA>
+waldo                       <NA>
+whisker                     <NA>
+withr                       <NA>
+xfun                        <NA>
+xml2                        <NA>
+xopen                       <NA>
+yaml                        <NA>
+yulab.utils                 <NA>
+zip                         <NA>
+zlibbioc                    <NA>
+
+
+
+
+================
+
+R PACKAGES NOT INSTALLED
+
+================
+
+
+
+
+ALL THE PACKAGES HAVE BEEN INSTALLED
+
+
diff --git a/fedora/v33/immcantation/v1.2/installed_r_packages.csv b/fedora/v33/immcantation/v1.2/installed_r_packages.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2737e62c9c86f140cc459d48864f12293838a249
--- /dev/null
+++ b/fedora/v33/immcantation/v1.2/installed_r_packages.csv
@@ -0,0 +1,221 @@
+Package;LibPath;Version;Priority;Depends;Imports;LinkingTo;Suggests;Enhances;License;License_is_FOSS;License_restricts_use;OS_type;MD5sum;NeedsCompilation;Built
+BH;/usr/lib64/R/library;1.75.0-0;NA;NA;NA;NA;NA;NA;BSL-1.0;NA;NA;NA;NA;no;4.0.5
+Biobase;/usr/lib64/R/library;2.50.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.0.5
+BiocGenerics;/usr/lib64/R/library;0.36.1;NA;R (>= 4.0.0), methods, utils, graphics, stats, parallel;methods, utils, graphics, stats, parallel;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.0.5
+BiocManager;/usr/lib64/R/library;1.30.16;NA;NA;utils;NA;BiocVersion, remotes, rmarkdown, testthat, withr, curl, knitr;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+BiocParallel;/usr/lib64/R/library;1.24.1;NA;methods;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.0.5
+BiocVersion;/usr/lib64/R/library;3.12.0;NA;R (>= 4.0.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+Biostrings;/usr/lib64/R/library;2.58.0;NA;R (>= 3.5.0), methods, BiocGenerics (>= 0.31.5), S4Vectors (>=0.27.12), IRanges (>= 2.23.9), XVector (>= 0.29.2);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.0.5
+DelayedArray;/usr/lib64/R/library;0.16.3;NA;R (>= 3.4), methods, stats4, Matrix, BiocGenerics (>= 0.31.5),MatrixGenerics (>= 1.1.3), S4Vectors (>= 0.27.2), IRanges (>=2.17.3);stats;S4Vectors;BiocParallel, HDF5Array (>= 1.17.12), genefilter,SummarizedExperiment, airway, pryr, DelayedMatrixStats, knitr,BiocStyle, RUnit;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.0.5
+GenomeInfoDb;/usr/lib64/R/library;1.26.7;NA;R (>= 3.1), methods, BiocGenerics (>= 0.13.8), 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.0.5
+GenomeInfoDbData;/usr/lib64/R/library;1.2.4;NA;R (>= 3.5.0);NA;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+GenomicAlignments;/usr/lib64/R/library;1.26.0;NA;R (>= 3.5.0), methods, BiocGenerics (>= 0.15.3), 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.0.5
+GenomicRanges;/usr/lib64/R/library;1.42.0;NA;R (>= 2.10), methods, stats4, BiocGenerics (>= 0.25.3),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, KEGG.db, 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,BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.0.5
+IRanges;/usr/lib64/R/library;2.24.1;NA;R (>= 4.0.0), methods, utils, stats, BiocGenerics (>= 0.36.0),S4Vectors (>= 0.27.12);stats4;S4Vectors;XVector, GenomicRanges, Rsamtools, GenomicAlignments,GenomicFeatures, BSgenome.Celegans.UCSC.ce2, pasillaBamSubset,RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.0.5
+KernSmooth;/usr/lib64/R/library;2.23-18;recommended;R (>= 2.5.0), stats;NA;NA;MASS;NA;Unlimited;NA;NA;NA;NA;yes;4.0.5
+MASS;/usr/lib64/R/library;7.3-53.1;recommended;R (>= 3.1.0), grDevices, graphics, stats, utils;methods;NA;lattice, nlme, nnet, survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+Matrix;/usr/lib64/R/library;1.3-2;recommended;R (>= 3.6.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.0.5
+MatrixGenerics;/usr/lib64/R/library;1.2.1;NA;matrixStats (> 0.57.0);methods;NA;sparseMatrixStats, DelayedMatrixStats, SummarizedExperiment,testthat (>= 2.1.0);NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+R6;/usr/lib64/R/library;2.5.1;NA;R (>= 3.0);NA;NA;testthat, pryr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+RColorBrewer;/usr/lib64/R/library;1.1-2;NA;R (>= 2.0.0);NA;NA;NA;NA;Apache License 2.0;NA;NA;NA;NA;no;4.0.5
+RCurl;/usr/lib64/R/library;1.98-1.5;NA;R (>= 3.4.0), methods;bitops;NA;XML;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+Rcpp;/usr/lib64/R/library;1.0.7;NA;NA;methods, utils;NA;tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+Rhtslib;/usr/lib64/R/library;1.22.0;NA;NA;zlibbioc;zlibbioc;BiocStyle, knitr;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+Rsamtools;/usr/lib64/R/library;2.6.0;NA;methods, GenomeInfoDb (>= 1.1.3), GenomicRanges (>= 1.31.8),Biostrings (>= 2.47.6);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, KEGG.db,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.0.5
+S4Vectors;/usr/lib64/R/library;0.28.1;NA;R (>= 4.0.0), methods, utils, stats, stats4, BiocGenerics (>=0.36.0);NA;NA;IRanges, GenomicRanges, SummarizedExperiment, Matrix,DelayedArray, ShortRead, graph, data.table, RUnit, BiocStyle;NA;Artistic-2.0;NA;NA;NA;NA;yes;4.0.5
+SummarizedExperiment;/usr/lib64/R/library;1.20.0;NA;R (>= 3.2), methods, MatrixGenerics (>= 1.1.3), GenomicRanges(>= 1.41.5), Biobase;utils, stats, tools, Matrix, BiocGenerics (>= 0.15.3),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.0.5
+XVector;/usr/lib64/R/library;0.30.0;NA;R (>= 2.8.0), methods, BiocGenerics (>= 0.19.2), 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.0.5
+ade4;/usr/lib64/R/library;1.7-18;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.0.5
+airr;/usr/lib64/R/library;1.3.0;NA;R (>= 3.1.2);methods, readr, stats, stringi, yaml;NA;knitr, rmarkdown, testthat;NA;CC BY 4.0;NA;NA;NA;NA;no;4.0.5
+alakazam;/usr/lib64/R/library;1.2.0;NA;R (>= 4.0), ggplot2 (>= 3.3.4);airr (>= 1.3), ape, dplyr (>= 1.0), graphics, grid, igraph (>=1.0), Matrix, 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.0.5
+ape;/usr/lib64/R/library;5.5;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.0.5
+aplot;/usr/lib64/R/library;0.1.1;NA;NA;ggfun (>= 0.0.4), ggplot2, ggplotify, patchwork, magrittr,methods, utils, yulab.utils;NA;ggtree;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+askpass;/usr/lib64/R/library;1.1;NA;NA;sys (>= 2.1);NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+base;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;methods;NA;Part of R 4.0.5;NA;NA;NA;NA;NA;4.0.5
+base64enc;/usr/lib64/R/library;0.1-3;NA;R (>= 2.9.0);NA;NA;NA;png;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+beanplot;/usr/lib64/R/library;1.2;NA;NA;NA;NA;vioplot, lattice;NA;GPL-2;NA;NA;NA;NA;no;4.0.5
+bibtex;/usr/lib64/R/library;0.4.2.3;NA;R (>= 3.0.2);stringr, utils;NA;testthat;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+bit;/usr/lib64/R/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.0.5
+bit64;/usr/lib64/R/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.0.5
+bitops;/usr/lib64/R/library;1.0-7;NA;NA;NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+boot;/usr/lib64/R/library;1.3-27;recommended;R (>= 3.0.0), graphics, stats;NA;NA;MASS, survival;NA;Unlimited;NA;NA;NA;NA;no;4.0.5
+brew;/usr/lib64/R/library;1.0-6;NA;NA;NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;NA;4.0.5
+brio;/usr/lib64/R/library;1.1.2;NA;NA;NA;NA;testthat (>= 2.1.0), covr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+caTools;/usr/lib64/R/library;1.18.2;NA;R (>= 3.6.0);bitops;NA;MASS, rpart;NA;GPL-3;NA;NA;NA;NA;yes;4.0.5
+cachem;/usr/lib64/R/library;1.0.6;NA;NA;rlang, fastmap;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+callr;/usr/lib64/R/library;3.7.0;NA;NA;processx (>= 3.5.0), R6, utils;NA;cli, covr, ps, rprojroot, spelling, testthat, withr (>=2.3.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+captioner;/usr/lib64/R/library;2.2.3;NA;NA;NA;NA;knitr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+class;/usr/lib64/R/library;7.3-18;recommended;R (>= 3.0.0), stats, utils;MASS;NA;NA;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+cli;/usr/lib64/R/library;3.1.0;NA;R (>= 2.10);glue, utils;NA;asciicast, callr, covr, grDevices, htmltools, htmlwidgets,knitr, methods, mockery, processx, ps (>= 1.3.4.9000), rlang,rmarkdown, rstudioapi, shiny, testthat, tibble, whoami, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+clipr;/usr/lib64/R/library;0.7.1;NA;NA;utils;NA;covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=2.0.0);NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+cluster;/usr/lib64/R/library;2.1.1;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/lib64/R/library;0.2-18;recommended;R (>= 2.1);NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.0.5
+colorspace;/usr/lib64/R/library;2.0-2;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.0.5
+commonmark;/usr/lib64/R/library;1.7;NA;NA;NA;NA;curl, testthat, xml2;NA;BSD_2_clause + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+compiler;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;NA;NA;Part of R 4.0.5;NA;NA;NA;NA;NA;4.0.5
+cowplot;/usr/lib64/R/library;1.1.1;NA;R (>= 3.5.0);ggplot2 (> 2.2.1), grid, gtable, grDevices, methods, rlang,scales;NA;Cairo, covr, dplyr, forcats, gridGraphics (>= 0.4-0), knitr,lattice, magick, maps, PASWR, patchwork, rmarkdown, ragg,testthat (>= 1.0.0), tidyr, vdiffr (>= 0.3.0), VennDiagram;NA;GPL-2;NA;NA;NA;NA;no;4.0.5
+cpp11;/usr/lib64/R/library;0.4.1;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.0.5
+crayon;/usr/lib64/R/library;1.4.2;NA;NA;grDevices, methods, utils;NA;mockery, rstudioapi, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+credentials;/usr/lib64/R/library;1.3.1;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.0.5
+crosstalk;/usr/lib64/R/library;1.2.0;NA;NA;htmltools (>= 0.3.6), jsonlite, lazyeval, R6;NA;shiny, ggplot2, testthat (>= 2.1.0), sass, bslib;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+curl;/usr/lib64/R/library;4.3.2;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.0.5
+data.table;/usr/lib64/R/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.0.5
+datasets;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;NA;NA;Part of R 4.0.5;NA;NA;NA;NA;NA;4.0.5
+dendextend;/usr/lib64/R/library;1.15.2;NA;R (>= 3.0.0);utils, stats, datasets, magrittr (>= 1.0.1), ggplot2, viridis;NA;knitr, rmarkdown, testthat, seriation, colorspace, ape,microbenchmark, gplots, heatmaply, dynamicTreeCut, pvclust,corrplot, DendSer, MASS, cluster, fpc, circlize (>= 0.2.5),covr;ggdendro, dendroextras, Hmisc, data.table, rpart;GPL-2 | GPL-3;NA;NA;NA;NA;no;4.0.5
+desc;/usr/lib64/R/library;1.4.0;NA;R (>= 3.1.0);utils, R6, crayon, rprojroot;NA;covr, testthat, whoami, withr, spelling, gh;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+devtools;/usr/lib64/R/library;2.4.2;NA;R (>= 3.0.2), usethis (>= 2.0.1);callr (>= 3.6.0), cli (>= 2.4.0), desc (>= 1.3.0), ellipsis(>= 0.3.1), fs (>= 1.5.0), httr (>= 1.4.2), lifecycle (>=1.0.0), memoise (>= 2.0.0), pkgbuild (>= 1.2.0), pkgload (>=1.2.1), rcmdcheck (>= 1.3.3), remotes (>= 2.3.0), rlang (>=0.4.10), roxygen2 (>= 7.1.1), rstudioapi (>= 0.13), rversions(>= 2.0.2), sessioninfo (>= 1.1.1), stats, testthat (>= 3.0.2),tools, utils, withr (>= 2.4.1);NA;BiocManager (>= 1.30.12), covr (>= 3.5.1), curl (>= 4.3),digest (>= 0.6.27), DT (>= 0.17), foghorn (>= 1.3.2), gh (>=1.2.1), gmailr (>= 1.0.0), knitr (>= 1.31), lintr (>= 2.0.1),MASS, mockery (>= 0.4.2), pingr (>= 2.0.1), pkgdown (>= 1.6.1),rhub (>= 1.1.1), rmarkdown (>= 2.7), spelling (>= 2.2);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+diffobj;/usr/lib64/R/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.0.5
+digest;/usr/lib64/R/library;0.6.28;NA;R (>= 3.3.0);utils;NA;tinytest, knitr, rmarkdown, minidown;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+diptest;/usr/lib64/R/library;0.76-0;NA;NA;graphics, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+doParallel;/usr/lib64/R/library;1.0.16;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.0.5
+dowser;/usr/lib64/R/library;0.1.0;NA;R (>= 3.1.2), ggplot2 (>= 3.2.0);alakazam (>= 1.1.0), ape (>= 5.5), 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.0.5
+dplyr;/usr/lib64/R/library;1.0.7;NA;R (>= 3.3.0);ellipsis, generics, glue (>= 1.3.2), lifecycle (>= 1.0.0),magrittr (>= 1.5), methods, R6, rlang (>= 0.4.10), tibble (>=2.1.3), tidyselect (>= 1.1.0), utils, vctrs (>= 0.3.5), pillar(>= 1.5.1);NA;bench, broom, callr, covr, DBI, dbplyr (>= 1.4.3), knitr,Lahman, lobstr, microbenchmark, nycflights13, purrr, rmarkdown,RMySQL, RPostgreSQL, RSQLite, testthat (>= 3.0.2), tidyr, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+ellipsis;/usr/lib64/R/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.0.5
+evaluate;/usr/lib64/R/library;0.14;NA;R (>= 3.0.2);methods;NA;testthat, lattice, ggplot2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+fansi;/usr/lib64/R/library;0.5.0;NA;R (>= 3.1.0);grDevices, utils;NA;unitizer, knitr, rmarkdown;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+farver;/usr/lib64/R/library;2.1.0;NA;NA;NA;NA;testthat (>= 2.1.0), covr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+fastmap;/usr/lib64/R/library;1.1.0;NA;NA;NA;NA;testthat (>= 2.1.1);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+fastmatch;/usr/lib64/R/library;1.1-3;NA;R (>= 2.3.0);NA;NA;NA;NA;GPL-2;NA;NA;NA;NA;yes;4.0.5
+foreach;/usr/lib64/R/library;1.5.1;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.0.5
+foreign;/usr/lib64/R/library;0.8-81;recommended;R (>= 4.0.0);methods, utils, stats;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+formatR;/usr/lib64/R/library;1.11;NA;R (>= 3.2.3);NA;NA;codetools, shiny, testit, rmarkdown, knitr;NA;GPL;NA;NA;NA;NA;no;4.0.5
+fs;/usr/lib64/R/library;1.5.0;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;GPL-3;NA;NA;NA;NA;yes;4.0.5
+futile.logger;/usr/lib64/R/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.0.5
+futile.options;/usr/lib64/R/library;1.0.1;NA;R (>= 2.8.0);NA;NA;NA;NA;LGPL-3;NA;NA;NA;NA;no;4.0.5
+generics;/usr/lib64/R/library;0.1.1;NA;R (>= 3.2);methods;NA;covr, pkgload, testthat (>= 3.0.0), tibble, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+gert;/usr/lib64/R/library;1.4.2;NA;NA;askpass, credentials (>= 1.2.1), openssl (>= 1.4.1),rstudioapi (>= 0.11), sys, zip (>= 2.1.0);NA;spelling, knitr, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+getopt;/usr/lib64/R/library;1.20.3;NA;NA;stats;NA;covr, testthat;NA;GPL (>= 2);NA;NA;NA;NA;no;4.0.5
+ggdendro;/usr/lib64/R/library;0.1.22;NA;NA;MASS, ggplot2(>= 0.9.2);NA;rpart (>= 4.0-0), tree, testthat, knitr, cluster, scales,spelling, rmarkdown;NA;GPL-2 | GPL-3;NA;NA;NA;NA;no;4.0.5
+ggfun;/usr/lib64/R/library;0.0.4;NA;NA;ggplot2, grid, rlang, utils;NA;ggplotify, knitr, rmarkdown, prettydoc;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+ggplot2;/usr/lib64/R/library;3.3.5;NA;R (>= 3.3);digest, glue, grDevices, grid, gtable (>= 0.1.1), isoband,MASS, mgcv, rlang (>= 0.4.10), scales (>= 0.5.0), stats,tibble, withr (>= 2.0.0);NA;covr, ragg, dplyr, ggplot2movies, hexbin, Hmisc, interp,knitr, lattice, mapproj, maps, maptools, multcomp, munsell,nlme, profvis, quantreg, RColorBrewer, rgeos, rmarkdown, rpart,sf (>= 0.7-3), svglite (>= 1.2.0.9001), testthat (>= 2.1.0),vdiffr (>= 1.0.0), xml2;sp;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+ggplotify;/usr/lib64/R/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.0.5
+ggtree;/usr/lib64/R/library;2.4.2;NA;R (>= 3.5.0);ape, aplot (>= 0.0.4), dplyr, ggplot2 (>= 3.0.0), grid,magrittr, methods, purrr, rlang, rvcheck, 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.0.5
+gh;/usr/lib64/R/library;1.3.0;NA;NA;cli (>= 2.0.1), gitcreds, httr (>= 1.2), ini, jsonlite;NA;covr, knitr, mockery, rmarkdown, rprojroot, spelling,testthat (>= 2.3.2), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+gitcreds;/usr/lib64/R/library;0.1.1;NA;NA;NA;NA;codetools, testthat, knitr, mockery, oskeyring, rmarkdown,withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+glue;/usr/lib64/R/library;1.5.0;NA;R (>= 3.2);methods;NA;covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,microbenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,testthat, vctrs (>= 0.3.0), waldo, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+gplots;/usr/lib64/R/library;3.1.1;NA;R (>= 3.0);gtools, stats, caTools, KernSmooth;NA;grid, MASS, knitr;NA;GPL-2;NA;NA;NA;NA;no;4.0.5
+grDevices;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;KernSmooth;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+graphics;/usr/lib64/R/library;4.0.5;base;NA;grDevices;NA;NA;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+grid;/usr/lib64/R/library;4.0.5;base;NA;grDevices, utils;NA;lattice;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+gridExtra;/usr/lib64/R/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.0.5
+gridGraphics;/usr/lib64/R/library;0.5-1;NA;grid, graphics;grDevices;NA;magick (>= 1.3), pdftools (>= 1.6);NA;GPL (>= 2);NA;NA;NA;NA;no;4.0.5
+gtable;/usr/lib64/R/library;0.3.0;NA;R (>= 3.0);grid;NA;covr, testthat, knitr, rmarkdown, ggplot2, profvis;NA;GPL-2;NA;NA;NA;NA;no;4.0.5
+gtools;/usr/lib64/R/library;3.9.2;NA;methods, stats, utils;NA;NA;car, gplots, knitr, rstudioapi, SGP, taxize;NA;GPL-2;NA;NA;NA;NA;yes;4.0.5
+hexbin;/usr/lib64/R/library;1.28.2;NA;R (>= 2.0.1), methods;lattice, grid, graphics, grDevices, stats, utils;NA;marray, affy, Biobase, limma, knitr;NA;GPL-2;NA;NA;NA;NA;yes;4.0.5
+highr;/usr/lib64/R/library;0.9;NA;R (>= 3.2.3);xfun (>= 0.18);NA;knitr, markdown, testit;NA;GPL;NA;NA;NA;NA;no;4.0.5
+hms;/usr/lib64/R/library;1.1.1;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.0.5
+htmltools;/usr/lib64/R/library;0.5.2;NA;R (>= 2.14.1);utils, digest, grDevices, base64enc, rlang (>= 0.4.10),fastmap;NA;markdown, testthat, withr, Cairo, ragg, shiny;knitr;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+htmlwidgets;/usr/lib64/R/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.0.5
+httr;/usr/lib64/R/library;1.4.2;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.0.5
+igraph;/usr/lib64/R/library;1.2.8;NA;methods;graphics, grDevices, magrittr, Matrix, pkgconfig (>= 2.0.0),stats, utils;NA;ape, graph, igraphdata, rgl, scales, stats4, tcltk, testthat,withr, digest;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+ini;/usr/lib64/R/library;0.3.1;NA;NA;NA;NA;testthat;NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+isoband;/usr/lib64/R/library;0.2.5;NA;NA;grid, utils;NA;covr, ggplot2, knitr, magick, microbenchmark, rmarkdown, sf,testthat, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+iterators;/usr/lib64/R/library;1.0.13;NA;R (>= 2.5.0), utils;NA;NA;RUnit, foreach;NA;Apache License (== 2.0);NA;NA;NA;NA;no;4.0.5
+jquerylib;/usr/lib64/R/library;0.1.4;NA;NA;htmltools;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+jsonlite;/usr/lib64/R/library;1.7.2;NA;methods;NA;NA;httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sf;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+kedd;/usr/lib64/R/library;1.0.3;NA;R (>= 2.15.0);NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;no;4.0.5
+knitr;/usr/lib64/R/library;1.36;NA;R (>= 3.2.3);evaluate (>= 0.10), highr, methods, stringr (>= 0.6), yaml (>=2.1.19), xfun (>= 0.21), 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, styler (>= 1.2.0),targets (>= 0.6.0);NA;GPL;NA;NA;NA;NA;no;4.0.5
+labeling;/usr/lib64/R/library;0.4.2;NA;NA;stats, graphics;NA;NA;NA;MIT + file LICENSE | Unlimited;NA;NA;NA;NA;no;4.0.5
+lambda.r;/usr/lib64/R/library;1.2.4;NA;R (>= 3.0.0);formatR;NA;testit;NA;LGPL-3;NA;NA;NA;NA;no;4.0.5
+later;/usr/lib64/R/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.0.5
+lattice;/usr/lib64/R/library;0.20-41;recommended;R (>= 3.0.0);grid, grDevices, graphics, stats, utils;NA;KernSmooth, MASS, latticeExtra;chron;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+lazyeval;/usr/lib64/R/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.0.5
+lifecycle;/usr/lib64/R/library;1.0.1;NA;R (>= 3.3);glue, rlang (>= 0.4.10);NA;covr, crayon, lintr, tidyverse, knitr, rmarkdown, testthat(>= 3.0.1), tools, tibble, vctrs;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+lubridate;/usr/lib64/R/library;1.9.2;NA;methods, R (>= 3.2);generics, timechange (>= 0.1.1);NA;covr, knitr, rmarkdown, testthat (>= 2.1.0), vctrs (>= 0.5.0);chron, data.table, timeDate, tis, zoo;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+magrittr;/usr/lib64/R/library;2.0.1;NA;NA;NA;NA;covr, knitr, rlang, rmarkdown, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+markdown;/usr/lib64/R/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.0.5
+matrixStats;/usr/lib64/R/library;0.61.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.0.5
+memoise;/usr/lib64/R/library;2.0.0;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.0.5
+methods;/usr/lib64/R/library;4.0.5;base;NA;utils, stats;NA;codetools;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+mgcv;/usr/lib64/R/library;1.8-34;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.0.5
+mime;/usr/lib64/R/library;0.12;NA;NA;tools;NA;NA;NA;GPL;NA;NA;NA;NA;yes;4.0.5
+munsell;/usr/lib64/R/library;0.5.0;NA;NA;colorspace, methods;NA;ggplot2, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+nlme;/usr/lib64/R/library;3.1-152;recommended;R (>= 3.4.0);graphics, stats, utils, lattice;NA;Hmisc, MASS;NA;GPL (>= 2) | file LICENCE;NA;NA;NA;NA;yes;4.0.5
+nnet;/usr/lib64/R/library;7.3-15;recommended;R (>= 3.0.0), stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+openssl;/usr/lib64/R/library;1.4.5;NA;NA;askpass;NA;testthat (>= 2.1.0), digest, knitr, rmarkdown, jsonlite,jose, sodium;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+optparse;/usr/lib64/R/library;1.7.1;NA;R (>= 2.9.0);methods, getopt (>= 1.20.2);NA;knitr (>= 1.15.19), stringr, testthat;NA;GPL (>= 2);NA;NA;NA;NA;no;4.0.5
+parallel;/usr/lib64/R/library;4.0.5;base;NA;tools, compiler;NA;methods;snow, nws, Rmpi;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+patchwork;/usr/lib64/R/library;1.1.1;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.0.5
+pdist;/usr/lib64/R/library;1.2;NA;methods;NA;NA;NA;NA;GPL;NA;NA;NA;NA;NA;4.0.5
+phangorn;/usr/lib64/R/library;2.7.1;NA;ape (>= 5.5), R (>= 3.6.0);fastmatch, graphics, grDevices, igraph (>= 1.0), magrittr,Matrix, methods, parallel, quadprog, Rcpp (>= 1.0.4), stats,utils;Rcpp;Biostrings, knitr, magick, prettydoc, rgl, rmarkdown, seqinr,seqLogo, tinytest, xtable;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+phylotate;/usr/lib64/R/library;1.3;NA;R (>= 3.0.0);NA;NA;ape;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+pillar;/usr/lib64/R/library;1.6.4;NA;NA;cli, crayon (>= 1.3.4), ellipsis (>= 0.3.2), fansi, lifecycle,rlang (>= 0.3.0), utf8 (>= 1.1.0), utils, vctrs (>= 0.3.8);NA;bit64, debugme, DiagrammeR, dplyr, formattable, ggplot2,knitr, lubridate, nycflights13, palmerpenguins, rmarkdown,scales, stringi, survival, testthat (>= 3.0.2), tibble, units(>= 0.7.2), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+pixmap;/usr/lib64/R/library;0.4-12;NA;NA;methods, graphics, grDevices;NA;NA;NA;GPL-2;NA;NA;NA;NA;no;4.0.5
+pkgbuild;/usr/lib64/R/library;1.2.0;NA;R (>= 3.1);callr (>= 3.2.0), cli, crayon, desc, prettyunits, R6,rprojroot, withr (>= 2.1.2);NA;Rcpp, cpp11, testthat, covr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+pkgconfig;/usr/lib64/R/library;2.0.3;NA;NA;utils;NA;covr, testthat, disposables (>= 1.0.3);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+pkgload;/usr/lib64/R/library;1.2.3;NA;NA;cli, crayon, desc, methods, rlang, rprojroot, rstudioapi,utils, withr;NA;bitops, covr, pkgbuild, Rcpp, testthat;NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+plotly;/usr/lib64/R/library;4.10.0;NA;R (>= 3.2.0), ggplot2 (>= 3.0.0);tools, scales, httr (>= 1.3.0), jsonlite (>= 1.6), magrittr,digest, viridisLite, base64enc, htmltools (>= 0.3.6),htmlwidgets (>= 1.5.2.9001), tidyr (>= 1.0.0), RColorBrewer,dplyr, vctrs, tibble, lazyeval (>= 0.2.0), rlang (>= 0.4.10),crosstalk, purrr, data.table, promises;NA;MASS, maps, hexbin, ggthemes, GGally, testthat, knitr,devtools, shiny (>= 1.1.0), shinytest (>= 1.3.0), curl,rmarkdown, Cairo, broom, webshot, listviewer, dendextend,maptools, rgeos, sf, png, IRdisplay, processx, plotlyGeoAssets,forcats, palmerpenguins, rversions, reticulate;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+plyr;/usr/lib64/R/library;1.8.6;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.0.5
+praise;/usr/lib64/R/library;1.0.0;NA;NA;NA;NA;testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+prestor;/usr/lib64/R/library;0.0.7;NA;R (>= 3.0), ggplot2 (>= 2.0);alakazam (>= 1.1.0), captioner, bibtex, dplyr (>= 1.0),hexbin, rlang, rmarkdown, optparse, scales, stringi, tidyr (>=1.0), yaml;NA;knitr;NA;AGPL-3;NA;NA;NA;NA;no;4.0.5
+prettyunits;/usr/lib64/R/library;1.1.1;NA;NA;NA;NA;codetools, covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+processx;/usr/lib64/R/library;3.5.2;NA;NA;ps (>= 1.2.0), R6, utils;NA;callr (>= 3.2.0), cli, codetools, covr, curl, debugme,parallel, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+progress;/usr/lib64/R/library;1.2.2;NA;NA;hms, prettyunits, R6, crayon;NA;Rcpp, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+promises;/usr/lib64/R/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.0.5
+ps;/usr/lib64/R/library;1.6.0;NA;R (>= 3.1);utils;NA;callr, covr, curl, pingr, processx (>= 3.1.0), R6, rlang,testthat, tibble;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+purrr;/usr/lib64/R/library;0.3.4;NA;R (>= 3.2);magrittr (>= 1.5), rlang (>= 0.3.1);NA;covr, crayon, dplyr (>= 0.7.8), knitr, rmarkdown, testthat,tibble, tidyselect;NA;GPL-3 | file LICENSE;NA;NA;NA;NA;yes;4.0.5
+quadprog;/usr/lib64/R/library;1.5-8;NA;R (>= 3.1.0);NA;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+rabhit;/usr/lib64/R/library;0.1.5;NA;R (>= 3.5.0), ggplot2 (>= 3.2.0);dplyr (>= 1.0.0), reshape2 (>= 1.4.3), plotly (>= 4.7.1),graphics (>= 3.4.4), gtools (>= 3.5.0), cowplot (>= 0.9.1),stats (>= 3.4.4), dendextend (>= 1.9.0), data.table (>=1.12.2), plyr (>= 1.8.5), ggdendro (>= 0.1.20), gridExtra (>=2.3.0), alakazam (>= 1.0.0), tigger (>= 1.0.0), methods (>=3.4.4), htmlwidgets (>= 1.3.0), gtable (>= 0.3.0), rlang (>=0.4.0), RColorBrewer (>= 1.1.2), tidyr (>= 1.0.0), stringi (>=1.4.3), grid (>= 3.4.4), splitstackshape (>= 1.4.8), fastmatch(>= 1.1.0) , grDevices;NA;knitr, rmarkdown;NA;CC BY-SA 4.0;NA;NA;NA;NA;no;4.0.5
+rappdirs;/usr/lib64/R/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.0.5
+rcmdcheck;/usr/lib64/R/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.0.5
+rdi;/usr/lib64/R/library;1.0.0;NA;R (>= 3.0.0);beanplot, gplots, pdist, stringr;NA;knitr, ggplot2;NA;CC BY-SA 4.0;NA;NA;NA;NA;no;4.0.5
+readr;/usr/lib64/R/library;2.0.2;NA;R (>= 3.1);cli, clipr, crayon, hms (>= 0.4.1), methods, rlang, R6,tibble, vroom (>= 1.5.4), utils, lifecycle (>= 0.2.0);cpp11, tzdb (>= 0.1.1);covr, curl, dplyr, knitr, rmarkdown, spelling, stringi,testthat, tzdb (>= 0.1.1), waldo, withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+rematch2;/usr/lib64/R/library;2.1.2;NA;NA;tibble;NA;covr, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+remotes;/usr/lib64/R/library;2.4.1;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.0.5
+reshape2;/usr/lib64/R/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.0.5
+rlang;/usr/lib64/R/library;0.4.12;NA;R (>= 3.3.0);utils;NA;cli, covr, crayon, glue, magrittr, methods, pak, pillar,rmarkdown, testthat (>= 3.0.0), vctrs (>= 0.2.3), withr;winch;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+rmarkdown;/usr/lib64/R/library;2.11;NA;R (>= 3.0);tools, utils, knitr (>= 1.22), yaml (>= 2.1.19), htmltools (>=0.3.5), evaluate (>= 0.13), jsonlite, tinytex (>= 0.31), xfun(>= 0.21), jquerylib, methods, stringr (>= 1.2.0);NA;shiny (>= 1.6.0), tufte, testthat (>= 3.0.0), digest,dygraphs, vctrs, tibble, fs, rsconnect, withr (>= 2.4.2), bslib(>= 0.2.5.1), sass (>= 0.4.0);NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+roxygen2;/usr/lib64/R/library;7.1.2;NA;R (>= 3.3);brew, commonmark, desc (>= 1.2.0), digest, knitr, methods,pkgload (>= 1.0.2), purrr (>= 0.3.3), R6 (>= 2.1.2), rlang,stringi, stringr (>= 1.0.0), utils, xml2;cpp11;covr, devtools, rmarkdown, testthat (>= 2.1.0), R.methodsS3,R.oo;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+rpart;/usr/lib64/R/library;4.1-15;recommended;R (>= 2.15.0), graphics, stats, grDevices;NA;NA;survival;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+rprojroot;/usr/lib64/R/library;2.0.2;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.0.5
+rstudioapi;/usr/lib64/R/library;0.13;NA;NA;NA;NA;testthat, knitr, rmarkdown, clipr;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+rvcheck;/usr/lib64/R/library;0.1.8;NA;R (>= 3.4.0);BiocManager, utils, rlang;NA;NA;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+rversions;/usr/lib64/R/library;2.1.1;NA;NA;curl, utils, xml2 (>= 1.0.0);NA;mockery, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+scales;/usr/lib64/R/library;1.1.1;NA;R (>= 3.2);farver (>= 2.0.3), labeling, lifecycle, munsell (>= 0.5), R6,RColorBrewer, viridisLite;NA;bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), testthat (>=2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+scoper;/usr/lib64/R/library;1.2.0;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.0.5
+segmented;/usr/lib64/R/library;1.3-4;NA;NA;NA;NA;NA;NA;GPL;NA;NA;NA;NA;no;4.0.5
+seqinr;/usr/lib64/R/library;4.2-8;NA;R (>= 2.10.0);ade4,segmented;NA;NA;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+sessioninfo;/usr/lib64/R/library;1.2.1;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.0.5
+shazam;/usr/lib64/R/library;1.1.0;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, kedd,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.0.5
+snow;/usr/lib64/R/library;0.4-4;NA;R (>= 2.13.1), utils;NA;NA;rlecuyer;Rmpi;GPL;NA;NA;NA;NA;no;4.0.5
+sp;/usr/lib64/R/library;1.4-5;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;NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+spatial;/usr/lib64/R/library;7.3-13;recommended;R (>= 3.0.0), graphics, stats, utils;NA;NA;MASS;NA;GPL-2 | GPL-3;NA;NA;NA;NA;yes;4.0.5
+splines;/usr/lib64/R/library;4.0.5;base;NA;graphics, stats;NA;Matrix, methods;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+splitstackshape;/usr/lib64/R/library;1.4.8;NA;R (>= 2.10);data.table (>= 1.9.4);NA;covr, testthat;NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+stats;/usr/lib64/R/library;4.0.5;base;NA;utils, grDevices, graphics;NA;MASS, Matrix, SuppDists, methods, stats4;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+stats4;/usr/lib64/R/library;4.0.5;base;NA;graphics, methods, stats;NA;NA;NA;Part of R 4.0.5;NA;NA;NA;NA;NA;4.0.5
+stringi;/usr/lib64/R/library;1.7.5;NA;R (>= 3.1);tools, utils, stats;NA;NA;NA;file LICENSE;yes;NA;NA;NA;yes;4.0.5
+stringr;/usr/lib64/R/library;1.4.0;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.0.5
+survival;/usr/lib64/R/library;3.2-10;recommended;R (>= 3.5.0);graphics, Matrix, methods, splines, stats, utils;NA;NA;NA;LGPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+svglite;/usr/lib64/R/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.0.5
+sys;/usr/lib64/R/library;3.4;NA;NA;NA;NA;unix (>= 1.4), spelling, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+systemfonts;/usr/lib64/R/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.0.5
+tcltk;/usr/lib64/R/library;4.0.5;base;NA;utils;NA;NA;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+testthat;/usr/lib64/R/library;3.1.0;NA;R (>= 3.1);brio, callr (>= 3.5.1), cli (>= 2.2.0), crayon (>= 1.3.4),desc, digest, ellipsis (>= 0.2.0), evaluate, jsonlite,lifecycle, magrittr, methods, pkgload, praise, processx, ps (>=1.3.4), R6 (>= 2.2.0), rlang (>= 0.4.9), utils, waldo (>=0.2.4), withr (>= 2.3.0);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.0.5
+tibble;/usr/lib64/R/library;3.1.6;NA;R (>= 3.1.0);ellipsis (>= 0.3.2), fansi (>= 0.4.0), lifecycle (>= 1.0.0),magrittr, methods, pillar (>= 1.6.2), pkgconfig, rlang (>=0.4.3), 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.0.5
+tidyr;/usr/lib64/R/library;1.1.4;NA;R (>= 3.1);dplyr (>= 0.8.2), ellipsis (>= 0.1.0), glue, lifecycle,magrittr, purrr, rlang, tibble (>= 2.1.1), tidyselect (>=1.1.0), utils, vctrs (>= 0.3.6);cpp11 (>= 0.2.6);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.0.5
+tidyselect;/usr/lib64/R/library;1.1.1;NA;R (>= 3.2);ellipsis, glue (>= 1.3.0), purrr (>= 0.3.2), rlang (>= 0.4.6),vctrs (>= 0.3.0);NA;covr, crayon, dplyr, knitr, magrittr, rmarkdown, testthat (>=2.3.0), tibble (>= 2.1.3), withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+tidytree;/usr/lib64/R/library;0.3.5;NA;R (>= 3.4.0);ape, dplyr, lazyeval, magrittr, methods, rlang, tibble, tidyr,tidyselect;NA;ggtree, knitr, rmarkdown, prettydoc, testthat, treeio,pillar, utils;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+tigger;/usr/lib64/R/library;1.0.0;NA;R (>= 3.5.0), ggplot2 (>= 3.2.0);alakazam (>= 1.0.0), shazam (>= 1.0.0), dplyr (>= 0.8.1),doParallel, foreach, graphics, gridExtra, gtools, iterators,lazyeval, parallel, rlang, stats, stringi, tidyr (>= 0.1.0);NA;knitr, rmarkdown, testthat;NA;AGPL-3;NA;NA;NA;NA;no;4.0.5
+timechange;/usr/lib64/R/library;0.2.0;NA;R (>= 3.3);NA;cpp11 (>= 0.2.7);testthat (>= 0.7.1.99), knitr;NA;GPL-3;NA;NA;NA;NA;yes;4.0.5
+tinytex;/usr/lib64/R/library;0.35;NA;NA;xfun (>= 0.23);NA;testit, rstudioapi;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+tools;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;codetools, methods, xml2, curl, commonmark;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+treeio;/usr/lib64/R/library;1.14.4;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.0.5
+tzdb;/usr/lib64/R/library;0.2.0;NA;R (>= 3.3);NA;cpp11 (>= 0.4.0);covr, testthat (>= 3.0.0);NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+usethis;/usr/lib64/R/library;2.1.3;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 (>= 0.4.10), rprojroot (>= 1.2), rstudioapi, stats,utils, whisker, withr (>= 2.3.0), yaml;NA;covr, knitr, magick, mockr, pkgload, rmarkdown, roxygen2,spelling (>= 1.2), styler (>= 1.2.0), testthat (>= 3.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+utf8;/usr/lib64/R/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.0.5
+utils;/usr/lib64/R/library;4.0.5;base;NA;NA;NA;methods, xml2, commonmark;NA;Part of R 4.0.5;NA;NA;NA;NA;yes;4.0.5
+vctrs;/usr/lib64/R/library;0.3.8;NA;R (>= 3.3);ellipsis (>= 0.2.0), glue, rlang (>= 0.4.10);NA;bit64, covr, crayon, dplyr (>= 0.8.5), generics, knitr,pillar (>= 1.4.4), pkgdown, rmarkdown, testthat (>= 2.3.0),tibble, withr, xml2, waldo (>= 0.2.0), zeallot;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+viridis;/usr/lib64/R/library;0.6.2;NA;R (>= 2.10), viridisLite (>= 0.4.0);stats, ggplot2 (>= 1.0.1), gridExtra;NA;hexbin (>= 1.27.0), scales, MASS, knitr, dichromat,colorspace, raster, rasterVis, httr, mapproj, vdiffr, svglite(>= 1.2.0), testthat, covr, rmarkdown, rgdal, maps;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+viridisLite;/usr/lib64/R/library;0.4.0;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.0.5
+vroom;/usr/lib64/R/library;1.5.5;NA;R (>= 3.1);bit64, crayon, cli, glue, hms, lifecycle, methods, rlang (>=0.4.2), stats, tibble (>= 2.0.0), tzdb (>= 0.1.1), vctrs (>=0.2.0), tidyselect, withr;progress (>= 1.2.1), cpp11 (>= 0.2.0), 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,waldo, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+waldo;/usr/lib64/R/library;0.3.1;NA;NA;cli, diffobj (>= 0.3.4), fansi, glue, methods, rematch2, rlang(>= 0.4.10), tibble;NA;testthat (>= 3.0.0), covr, R6, withr, xml2;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+whisker;/usr/lib64/R/library;0.4;NA;NA;NA;NA;markdown;NA;GPL-3;NA;NA;NA;NA;no;4.0.5
+withr;/usr/lib64/R/library;2.4.2;NA;R (>= 3.2.0);graphics, grDevices, stats;NA;covr, DBI, knitr, lattice, methods, rmarkdown, RSQLite,testthat (>= 2.1.0);NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+xfun;/usr/lib64/R/library;0.28;NA;NA;stats, tools;NA;testit, parallel, codetools, rstudioapi, tinytex (>= 0.30),mime, markdown, knitr, htmltools, remotes, pak, rhub, renv,curl, jsonlite, rmarkdown;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+xml2;/usr/lib64/R/library;1.3.2;NA;R (>= 3.1.0);methods;NA;covr, curl, httr, knitr, magrittr, mockery, rmarkdown,testthat (>= 2.1.0);NA;GPL (>= 2);NA;NA;NA;NA;yes;4.0.5
+xopen;/usr/lib64/R/library;1.0.0;NA;R (>= 3.1);processx;NA;ps, testthat;NA;MIT + file LICENSE;NA;NA;NA;NA;no;4.0.5
+yaml;/usr/lib64/R/library;2.2.1;NA;NA;NA;NA;RUnit;NA;BSD_3_clause + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+yulab.utils;/usr/lib64/R/library;0.0.4;NA;NA;utils;NA;pkgbuild;NA;Artistic-2.0;NA;NA;NA;NA;no;4.0.5
+zip;/usr/lib64/R/library;2.2.0;NA;NA;NA;NA;covr, processx, R6, testthat, withr;NA;MIT + file LICENSE;NA;NA;NA;NA;yes;4.0.5
+zlibbioc;/usr/lib64/R/library;1.36.0;NA;NA;NA;NA;NA;NA;Artistic-2.0 + file LICENSE;NA;NA;NA;NA;yes;4.0.5