# This is adapted from Posit (https://docs.posit.co/resources/install-r/)
export R_VERSION=4.3.0
# Install curl and gdebi-core
sudo apt update -qq
sudo apt install curl gdebi-core -y
# Fetching the `.deb` install file from Posit repository
curl -O https://cdn.rstudio.com/r/ubuntu-2204/pkgs/r-${R_VERSION}_1_amd64.deb
# Install R
sudo gdebi r-${R_VERSION}_1_amd64.deb --non-interactive -q
# Optional: create a symlink to add R to your PATH
sudo ln -s /opt/R/${R_VERSION}/bin/R /usr/local/bin/R
Orchestrating Hi-C analysis with Bioconductor
Package: OHCA
Authors: Jacques Serizay [aut, cre]
Compiled: 2024-10-30
Package version: 1.2.0
R version: R version 4.4.1 (2024-06-14)
BioC version: 3.20
License: MIT + file LICENSE
Welcome
This is the landing page of the βOrchestrating Hi-C analysis with Bioconductorβ book. The primary aim of this book is to introduce the R
user to Hi-C analysis. This book starts with key concepts important for the analysis of chromatin conformation capture and then presents Bioconductor
tools that can be leveraged to process, analyze, explore and visualize Hi-C data.
Table of contents
This book is divided in three parts:
Part I: Introduction to Hi-C analysis
- Chapter 1: General principles and Hi-C data pre-processing
- Chapter 2: The different R classes implemented to analyze Hi-C
- Chapter 3: Manipulating Hi-C data in R
- Chapter 4: Hi-C data visualization
Part II: In-depth Hi-C analysis
- Chapter 5: Matrix-centric analysis
- Chapter 6: Interactions-centric analysis
- Chapter 7: Finding topological features from a Hi-C contact matrix
Part III: Hi-C analysis workflows
Installation & requirements
General audience
This books aims to demonstrate how to pre-process, parse and investigate Hi-C data in R
. For this reason, a significant portion of this book consists of executable R code chunks. To be able to reproduce the examples demonstrated in this book and go further in the analysis of your real datasets, you will need to rely on several dependencies.
-
R >= 4.3
is required. You can check R version by typingversion
in an R console or in RStudio. If you do not haveR >= 4.3
installed, you will need to update yourR
version, as most extra dependencies will requireR >= 4.3
.
Detailed instructions are available here to install R 4.3
on a Linux machine (Ubuntu 22.04).
Briefly, to install pre-compiled version of R 4.3.0
:
If you have some issues when installing the Hi-C packages listed below, you may need to install the following system libraries:
sudo apt update -qq
sudo apt install -y \
\
automake make cmake fort77 gfortran \
bzip2 unzip ftp build-essential \
libc6 libreadline-dev \
libpng-dev libjpeg-dev libtiff-dev \
libx11-dev libxt-dev x11-common \
libharfbuzz-dev libfribidi-dev \
libfreetype6-dev libfontconfig1-dev \
libbz2-dev liblzma-dev libtool \
libxml2 libxml2-dev \
libzstd-dev zlib1g-dev \
libdb-dev libglu1-mesa-dev \
libncurses5-dev libghc-zlib-dev libncurses-dev \
libpcre3-dev libxml2-dev libblas-dev libzmq3-dev \
libssl-dev libcurl4-openssl-dev \
libgsl-dev libeigen3-dev libboost-all-dev \
libgtk2.0-dev xvfb xauth xfonts-base apt-transport-https \
libhdf5-dev libudunits2-dev libgdal-dev libgeos-dev libproj-dev libnode-dev libmagick++-dev
-
Bioconductor >= 3.18
is also required. You can check whetherBioconductor
is available and its version inR
by typingBiocManager::version()
. If you do not haveBiocManager
>= 3.18 installed, you will need to update it as follows:
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install(version = "3.18")
- You will also need important packages, which will be described in length in this book. The following
R
code will set up most of the extra dependencies:
Developers
For developers or advanced R users, the devel
versions of these packages can be installed by installing Bioc devel
version prior to package installation:
BiocManager::install(version = "devel")
BiocManager::install("HiCExperiment", ask = FALSE)
BiocManager::install("HiCool", ask = FALSE)
BiocManager::install("HiContacts", ask = FALSE)
BiocManager::install("HiContactsData", ask = FALSE)
BiocManager::install("fourDNData", ask = FALSE)
BiocManager::install("DNAZooData", ask = FALSE)
Docker image
If you have docker
installed, the easiest approach would be to run the following command in a shell
terminal:
docker run -it ghcr.io/js2264/ohca:latest R
This will fetch a docker
image with the latest development versions of the aforementioned packages pre-installed, and initiate an interactive R session.
Reproducibility
Building book
The OHCA book has been rendered in R thanks to a number of packages, including but not only:
BiocBook
devtools
quarto
rebook
To build this book locally, you can run:
git clone git@github.com:js2264/OHCA.git && cd OHCA
quarto render
All dependencies listed above will be required!
The actual rendering of this book is done by GitHub Actions, and the rendered static website is hosted by GitHub Pages.
Session info
sessioninfo::session_info(
installed.packages()[,"Package"],
include_base = TRUE
)
## β Session info ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## setting value
## version R version 4.4.1 (2024-06-14)
## os Ubuntu 24.04.1 LTS
## system x86_64, linux-gnu
## ui X11
## language (EN)
## collate C
## ctype en_US.UTF-8
## tz America/New_York
## date 2024-10-30
## pandoc 2.7.3 @ /usr/bin/ (via rmarkdown)
##
## β Packages ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## package * version date (UTC) lib source
## a4 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## a4Base 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## a4Classif 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## a4Core 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## a4Preproc 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## a4Reporting 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ABarray 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## abind 1.4-8 2024-09-12 [2] CRAN (R 4.4.1)
## abseqR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ABSSeq 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## acde 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ACE 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aCGH 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ACME 2.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## actuar 3.3-4 2023-11-08 [2] CRAN (R 4.4.1)
## ada 2.0-5 2016-05-13 [2] CRAN (R 4.4.1)
## adabag 5.0 2023-05-31 [2] CRAN (R 4.4.1)
## ADaCGH2 2.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ADAM 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ADAMgui 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ADAPT 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## additivityTests 1.1-4.2 2024-05-14 [2] CRAN (R 4.4.1)
## adductData 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## adductomicsR 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ade4 1.7-22 2023-02-06 [2] CRAN (R 4.4.1)
## ADGofTest 0.3 2011-12-28 [2] CRAN (R 4.4.1)
## ADImpute 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## admisc 0.36 2024-09-11 [2] CRAN (R 4.4.1)
## adSplit 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## adverSCarial 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## afex 1.4-1 2024-09-01 [2] CRAN (R 4.4.1)
## AffiXcan 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affxparser 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affy 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affycomp 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affycompData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## affyContam 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affycoretools 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affydata 1.53.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Affyhgu133A2Expr 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Affyhgu133aExpr 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Affyhgu133Plus2Expr 1.39.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## affyILM 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affyio 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## affylmGUI 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AffymetrixDataTestFiles 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Affymoe4302Expr 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## affyPLM 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AffyRNADegradation 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AGDEX 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aggregateBioVar 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aggregation 1.0.1 2018-01-25 [2] CRAN (R 4.4.1)
## agilp 3.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AgiMicroRna 2.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## agricolae 1.3-7 2023-10-22 [2] CRAN (R 4.4.1)
## AHCytoBands 0.99.1 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AHEnsDbs 1.5.1 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AHLRBaseDbs 1.8.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AHMassBank 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AHMeSHDbs 1.8.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AhoCorasickTrie 0.1.2 2020-09-29 [2] CRAN (R 4.4.1)
## AHPathbankDbs 0.99.5 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AHPubMedDbs 1.8.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AHWikipathwaysDbs 0.99.4 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AICcmodavg 2.3-3 2023-11-16 [2] CRAN (R 4.4.1)
## AIMS 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## airpart 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## airway 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## akima 0.6-3.4 2022-04-27 [2] CRAN (R 4.4.1)
## akmbiclust 0.1.0 2020-09-24 [2] CRAN (R 4.4.1)
## alabama 2023.1.0 2023-08-22 [2] CRAN (R 4.4.1)
## alabaster 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.base 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.bumpy 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.files 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.mae 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.matrix 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.ranges 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.sce 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.schemas 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.se 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.spatial 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.string 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alabaster.vcf 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ALDEx2 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alevinQC 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AlgDesign 1.2.1.1 2024-09-21 [2] CRAN (R 4.4.1)
## ALL 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## AllelicImbalance 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ALLMLL 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## alluvial 0.1-2 2016-09-09 [2] CRAN (R 4.4.1)
## AlphaBeta 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alphahull 2.5 2022-06-16 [2] CRAN (R 4.4.1)
## AlphaMissense.v2023.hg19 3.18.2 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AlphaMissense.v2023.hg38 3.18.2 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## AlphaMissenseR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AlpsNMR 4.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## altcdfenvs 2.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## alternativeSplicingEvents.hg19 1.1.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## alternativeSplicingEvents.hg38 1.1.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## amap 0.8-20 2024-10-21 [2] CRAN (R 4.4.1)
## AMARETTO 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AMOUNTAIN 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AmpAffyExample 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## amplican 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## analogue 0.17-7 2024-09-21 [2] CRAN (R 4.4.1)
## Anaquin 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ANCOMBC 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AneuFinder 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AneuFinderData 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ANF 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## animalcules 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## animation 2.7 2021-10-07 [2] CRAN (R 4.4.1)
## annaffy 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## anndata 0.7.5.6 2023-03-17 [2] CRAN (R 4.4.1)
## annmap 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## annotate 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## annotation 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## AnnotationDbi 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnnotationFilter 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnnotationForge 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnnotationHub 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnnotationHubData 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## annotationTools 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## annotatr 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## anota 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## anota2seq 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## antiProfiles 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## antiProfilesData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## AnVIL 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILAz 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILBase 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILBilling 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILGCP 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILPublish 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AnVILWorkflow 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## anytime 0.3.9 2020-08-27 [2] CRAN (R 4.4.1)
## aod 1.3.3 2023-12-13 [2] CRAN (R 4.4.1)
## APAlyzer 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## apcluster 1.4.13 2024-04-26 [2] CRAN (R 4.4.1)
## apComplex 2.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ape 5.8 2024-04-11 [2] CRAN (R 4.4.1)
## apeglm 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## APL 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aplot 0.2.3 2024-06-17 [2] CRAN (R 4.4.1)
## appreci8R 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aracne.networks 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## archive 1.1.9 2024-09-12 [2] CRAN (R 4.4.1)
## argparse 2.2.3 2024-04-09 [2] CRAN (R 4.4.1)
## argparser 0.7.2 2024-04-04 [2] CRAN (R 4.4.1)
## aricode 1.0.3 2023-10-20 [2] CRAN (R 4.4.1)
## arm 1.14-4 2024-04-01 [2] CRAN (R 4.4.1)
## aroma.affymetrix 3.2.2 2024-02-18 [2] CRAN (R 4.4.1)
## aroma.apd 0.7.0 2023-06-23 [2] CRAN (R 4.4.1)
## aroma.core 3.3.1 2024-02-19 [2] CRAN (R 4.4.1)
## aroma.light 3.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrangements 1.1.9 2020-09-13 [2] CRAN (R 4.4.1)
## ArrayExpress 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrayhelpers 1.1-0 2020-02-04 [2] CRAN (R 4.4.1)
## arrayMvout 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrayQuality 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrayQualityMetrics 3.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrays 1.31.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## ARRmData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ARRmNormalization 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arrow 17.0.0.1 2024-08-21 [2] CRAN (R 4.4.1)
## arsenal 3.6.3 2021-06-04 [2] CRAN (R 4.4.1)
## artMS 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## arules 1.7-8 2024-08-22 [2] CRAN (R 4.4.1)
## ASAFE 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ASEB 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ASGSCA 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ash 1.0-15 2015-09-01 [2] CRAN (R 4.4.1)
## AshkenazimSonChr21 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ashr 2.2-63 2023-08-21 [2] CRAN (R 4.4.1)
## ASICS 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ASICSdata 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## AsioHeaders 1.22.1-2 2022-12-08 [2] CRAN (R 4.4.1)
## askpass 1.2.1 2024-10-04 [2] CRAN (R 4.4.1)
## ASpli 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## assertr 3.0.1 2023-11-23 [2] CRAN (R 4.4.1)
## assertthat 0.2.1 2019-03-21 [2] CRAN (R 4.4.1)
## AssessORF 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AssessORFData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ASSET 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ASSIGN 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## assorthead 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ASURAT 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ATACCoGAPS 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ATACseqQC 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ATACseqTFEA 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## atena 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ath1121501cdf 2.18.0 2024-10-01 [2] Bioconductor
## atSNP 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## attempt 0.3.1 2020-05-03 [2] CRAN (R 4.4.1)
## attract 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AUCell 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## audio 0.1-11 2023-08-18 [2] CRAN (R 4.4.1)
## automap 1.1-12 2024-09-03 [2] CRAN (R 4.4.1)
## autonomics 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## av 0.9.2 2024-10-04 [2] CRAN (R 4.4.1)
## available 1.1.0 2022-07-10 [2] CRAN (R 4.4.1)
## AWFisher 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## aws 2.5-6 2024-09-30 [2] CRAN (R 4.4.1)
## aws.s3 0.3.21 2020-04-07 [2] CRAN (R 4.4.1)
## aws.signature 0.6.0 2020-06-01 [2] CRAN (R 4.4.1)
## awsMethods 1.1-1 2019-05-08 [2] CRAN (R 4.4.1)
## awst 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## AzureAuth 1.3.3 2021-09-13 [2] CRAN (R 4.4.1)
## AzureGraph 1.3.4 2023-09-06 [2] CRAN (R 4.4.1)
## AzureRMR 2.4.4 2023-09-21 [2] CRAN (R 4.4.1)
## AzureStor 3.7.0 2022-05-25 [2] CRAN (R 4.4.1)
## b64 0.1.3 2024-09-26 [2] CRAN (R 4.4.1)
## BaalChIP 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## babelgene 22.9 2022-09-29 [2] CRAN (R 4.4.1)
## backbone 2.1.4 2024-05-09 [2] CRAN (R 4.4.1)
## backports 1.5.0 2024-05-23 [2] CRAN (R 4.4.1)
## bacon 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BADER 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## badger 0.2.4 2024-06-08 [2] CRAN (R 4.4.1)
## BadRegionFinder 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BAGS 2.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ballgown 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bambu 3.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bamlss 1.2-5 2024-10-11 [2] CRAN (R 4.4.1)
## bamsignals 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BANDITS 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bandle 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Banksy 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## banocc 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## barcodetrackR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## base * 4.4.1 2024-09-25 [3] local
## base64 2.0.2 2024-10-04 [2] CRAN (R 4.4.1)
## base64enc 0.1-3 2015-07-28 [2] CRAN (R 4.4.1)
## base64url 1.4 2018-05-14 [2] CRAN (R 4.4.1)
## basecallQC 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## baseline 1.3-5 2023-11-18 [2] CRAN (R 4.4.1)
## BaseSpaceR 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Basic4Cseq 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BASiCS 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BASiCStan 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BasicSTARRseq 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## basilisk 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## basilisk.utils 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## batchelor 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BatchJobs 1.9 2022-03-21 [2] CRAN (R 4.4.1)
## BatchQC 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## batchtools 0.9.17 2023-04-20 [2] CRAN (R 4.4.1)
## BayesKnockdown 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bayesm 3.1-6 2023-09-23 [2] CRAN (R 4.4.1)
## bayesplot 1.11.1 2024-02-15 [2] CRAN (R 4.4.1)
## BayesSpace 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bayestestR 0.15.0 2024-10-17 [2] CRAN (R 4.4.1)
## bayNorm 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## baySeq 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BB 2019.10-1 2019-10-18 [2] CRAN (R 4.4.1)
## BBCAnalyzer 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BBmisc 1.13 2022-09-29 [2] CRAN (R 4.4.1)
## bbmle 1.0.25.1 2023-12-09 [2] CRAN (R 4.4.1)
## bbotk 1.2.0 2024-10-25 [2] CRAN (R 4.4.1)
## bcellViper 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BCRANK 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bcSeq 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bdsmatrix 1.3-7 2024-03-02 [2] CRAN (R 4.4.1)
## beachmat 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## beachmat.hdf5 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## beadarray 2.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## beadarrayExampleData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BeadArrayUseCases 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BeadDataPackR 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BeadSorted.Saliva.EPIC 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## beanplot 1.3.1 2022-04-09 [2] CRAN (R 4.4.1)
## BEARscc 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BEAT 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BEclear 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BEDASSLE 1.6.1 2024-01-11 [2] CRAN (R 4.4.1)
## BEDMatrix 2.0.4 2024-09-06 [2] CRAN (R 4.4.1)
## beepr 2.0 2024-07-06 [2] CRAN (R 4.4.1)
## beer 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## beeswarm 0.4.0 2021-06-01 [2] CRAN (R 4.4.1)
## bench 1.1.3 2023-05-04 [2] CRAN (R 4.4.1)
## benchdamic 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## benchmarkfdrData2019 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## benchmarkme 1.0.8 2022-06-12 [2] CRAN (R 4.4.1)
## benchmarkmeData 1.0.4 2020-04-23 [2] CRAN (R 4.4.1)
## berryFunctions 1.22.5 2024-02-16 [2] CRAN (R 4.4.1)
## BERT 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bestNormalize 1.9.1 2023-08-18 [2] CRAN (R 4.4.1)
## beta7 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## betaHMM 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## betareg 3.2-1 2024-09-12 [2] CRAN (R 4.4.1)
## bettr 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bezier 1.1.2 2018-12-14 [2] CRAN (R 4.4.1)
## BG2 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BgeeCall 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BgeeDB 2.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bgx 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BH 1.84.0-0 2024-01-10 [2] CRAN (R 4.4.1)
## BiasedUrn 2.0.12 2024-06-16 [2] CRAN (R 4.4.1)
## BiBitR 0.3.1 2017-06-30 [2] CRAN (R 4.4.1)
## bibtex 0.5.1 2023-01-26 [2] CRAN (R 4.4.1)
## BicARE 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biclust 2.0.3.1 2023-05-19 [2] CRAN (R 4.4.1)
## BiFET 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biganalytics 1.1.22 2024-03-28 [2] CRAN (R 4.4.1)
## bigassertr 0.1.6 2023-01-10 [2] CRAN (R 4.4.1)
## bigD 0.2.0 2022-09-05 [2] CRAN (R 4.4.1)
## BiGGR 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biglm 0.9-3 2024-06-12 [2] CRAN (R 4.4.1)
## bigmelon 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bigmemory 4.6.4 2024-01-09 [2] CRAN (R 4.4.1)
## bigmemory.sri 0.1.8 2024-01-10 [2] CRAN (R 4.4.1)
## bigparallelr 0.3.2 2021-10-02 [2] CRAN (R 4.4.1)
## bigreadr 0.2.5 2022-12-06 [2] CRAN (R 4.4.1)
## bigrquery 1.5.1 2024-03-14 [2] CRAN (R 4.4.1)
## bigsnpr 1.12.15 2024-09-20 [2] CRAN (R 4.4.1)
## bigsparser 0.7.3 2024-09-06 [2] CRAN (R 4.4.1)
## bigstatsr 1.6.1 2024-09-09 [2] CRAN (R 4.4.1)
## bigutilsr 0.3.4 2021-04-13 [2] CRAN (R 4.4.1)
## billboarder 0.5.0 2024-09-09 [2] CRAN (R 4.4.1)
## BindingSiteFinder 2.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## binom 1.1-1.1 2022-05-02 [2] CRAN (R 4.4.1)
## binr 1.1.1 2022-06-26 [2] CRAN (R 4.4.1)
## bio3d 2.4-4 2022-10-26 [2] CRAN (R 4.4.1)
## bioassayR 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Biobase 2.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biobroom 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biobtreeR 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bioCancer 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioCartaImage 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocBaseUtils 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocBook 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocBookDemo 1.4.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## BiocCheck 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocFHIR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocFileCache 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocGenerics 0.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biocGraph 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocHail 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocHubsShiny 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocIO 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocManager 1.30.25 2024-08-28 [2] CRAN (R 4.4.1)
## BiocMetaWorkflow 1.27.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## BiocNeighbors 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocOncoTK 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioCor 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocParallel 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocPkgTools 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biocroxytest 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocSet 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocSingular 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocSklearn 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocStyle 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biocthis 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocVersion 3.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biocViews 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiocWorkflowTools 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodb 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbChebi 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbExpasy 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbHmdb 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbKegg 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbNcbi 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbNci 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biodbUniprot 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bioDist 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioGA 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioImageDbs 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BioMark 0.4.5 2015-09-07 [2] CRAN (R 4.4.1)
## biomaRt 2.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioMartGOGeneSets 0.99.11 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## biomartr 1.0.7 2023-12-02 [2] CRAN (R 4.4.1)
## biomformat 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioMVCClass 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biomvRCNS 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioNAR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioNERO 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioNet 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bionetdata 1.1 2022-09-12 [2] CRAN (R 4.4.1)
## BioPlex 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BioQC 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bioseq 0.1.4 2022-09-06 [2] CRAN (R 4.4.1)
## biosigner 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Biostrings 2.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BioTIP 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biotmle 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biotmleData 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## biovizBase 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BiRewire 3.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biscuiteer 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## biscuiteerData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BiSeq 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BisqueRNA 1.0.5 2021-05-23 [2] CRAN (R 4.4.1)
## bit 4.5.0 2024-09-20 [2] CRAN (R 4.4.1)
## bit64 4.5.2 2024-09-22 [2] CRAN (R 4.4.1)
## bitops 1.0-9 2024-10-03 [2] CRAN (R 4.4.1)
## biwt 1.0.1 2022-06-13 [2] CRAN (R 4.4.1)
## blacksheepr 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bladderbatch 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BlandAltmanLeh 0.3.1 2015-12-23 [2] CRAN (R 4.4.1)
## blaster 1.0.7 2023-08-22 [2] CRAN (R 4.4.1)
## blastula 0.3.5 2024-02-24 [2] CRAN (R 4.4.1)
## blima 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## blimaTestingData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BLMA 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## blme 1.0-6 2024-09-07 [2] CRAN (R 4.4.1)
## blob 1.2.4 2023-03-17 [2] CRAN (R 4.4.1)
## blockmodeling 1.1.5 2023-08-23 [2] CRAN (R 4.4.1)
## BloodCancerMultiOmics2017 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BloodGen3Module 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bluster 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BMA 3.18.19 2024-10-18 [2] CRAN (R 4.4.1)
## bmp 0.3 2017-09-11 [2] CRAN (R 4.4.1)
## bnbc 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bnem 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bnlearn 5.0.1 2024-08-19 [2] CRAN (R 4.4.1)
## bnstruct 1.0.15 2024-01-09 [2] CRAN (R 4.4.1)
## bnviewer 0.1.6 2020-09-14 [2] CRAN (R 4.4.1)
## BOBaFIT 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bodymapRat 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## bookdown 0.41 2024-10-16 [2] CRAN (R 4.4.1)
## BoolNet 2.1.9 2023-10-02 [2] CRAN (R 4.4.1)
## boot 1.3-31 2024-08-28 [3] CRAN (R 4.4.1)
## bootstrap 2019.6 2019-06-17 [2] CRAN (R 4.4.1)
## borealis 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BoutrosLab.plotting.general 7.1.2 2024-10-04 [2] CRAN (R 4.4.1)
## BP4RNAseq 1.15.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## BPRMeth 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BRAIN 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## brainflowprobes 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## branchpointer 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bread 0.4.1 2023-06-26 [2] CRAN (R 4.4.1)
## breakaway 4.8.4 2022-11-22 [2] CRAN (R 4.4.1)
## breakpointR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## breakpointRdata 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerMAINZ 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerNKI 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerTRANSBIG 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerUNT 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerUPP 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## breastCancerVDX 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## brendaDb 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## brew 1.0-10 2023-12-16 [2] CRAN (R 4.4.1)
## BREW3R.r 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## brgedata 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BRGenomics 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## brglm 0.7.2 2021-04-22 [2] CRAN (R 4.4.1)
## BridgeDbR 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## brio 1.1.5 2024-04-24 [2] CRAN (R 4.4.1)
## BRISC 1.0.6 2024-10-02 [2] CRAN (R 4.4.1)
## broadSeq 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bronchialIL13 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## broom 1.0.7 2024-09-26 [2] CRAN (R 4.4.1)
## broom.mixed 0.2.9.6 2024-10-15 [2] CRAN (R 4.4.1)
## BrowserViz 2.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bs4Dash 2.3.4 2024-09-03 [2] CRAN (R 4.4.1)
## BSDA 1.2.2 2023-09-18 [2] CRAN (R 4.4.1)
## BSgenome 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BSgenome.Athaliana.TAIR.TAIR9 1.3.1000 2024-09-26 [2] Bioconductor
## BSgenome.Btaurus.UCSC.bosTau6 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Btaurus.UCSC.bosTau6.masked 1.3.99 2024-09-26 [2] Bioconductor
## BSgenome.Celegans.UCSC.ce10 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Celegans.UCSC.ce11 1.4.2 2024-09-26 [2] Bioconductor
## BSgenome.Celegans.UCSC.ce2 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Dmelanogaster.UCSC.dm3 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Dmelanogaster.UCSC.dm6 1.4.1 2024-09-26 [2] Bioconductor
## BSgenome.Drerio.UCSC.danRer10 1.4.2 2024-09-26 [2] Bioconductor
## BSgenome.Drerio.UCSC.danRer7 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Ecoli.NCBI.20080805 1.3.1000 2024-09-26 [2] Bioconductor
## BSgenome.Ggallus.UCSC.galGal3 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.1000genomes.hs37d5 0.99.1 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.NCBI.GRCh38 1.3.1000 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg18 1.3.1000 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg18.masked 1.3.99 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg19 1.4.3 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg19.masked 1.3.993 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg38 1.4.5 2024-09-26 [2] Bioconductor
## BSgenome.Hsapiens.UCSC.hg38.masked 1.4.5 2024-09-26 [2] Bioconductor
## BSgenome.Mmulatta.UCSC.rheMac10 1.4.2 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm10 1.4.3 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm10.masked 1.4.3 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm39 1.4.3 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm8 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm8.masked 1.3.99 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm9 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Mmusculus.UCSC.mm9.masked 1.3.99 2024-09-26 [2] Bioconductor
## BSgenome.Rnorvegicus.UCSC.rn4 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Rnorvegicus.UCSC.rn5 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Rnorvegicus.UCSC.rn5.masked 1.3.99 2024-09-26 [2] Bioconductor
## BSgenome.Rnorvegicus.UCSC.rn6 1.4.1 2024-09-26 [2] Bioconductor
## BSgenome.Rnorvegicus.UCSC.rn7 1.4.3 2024-09-26 [2] Bioconductor
## BSgenome.Scerevisiae.UCSC.sacCer1 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Scerevisiae.UCSC.sacCer2 1.4.0 2024-09-26 [2] Bioconductor
## BSgenome.Scerevisiae.UCSC.sacCer3 1.4.0 2024-09-26 [2] Bioconductor
## BSgenomeForge 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bsicons 0.1.2 2023-11-04 [2] CRAN (R 4.4.1)
## bslib 0.8.0 2024-07-29 [2] CRAN (R 4.4.1)
## bsplus 0.1.4 2022-11-16 [2] CRAN (R 4.4.1)
## bsseq 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bsseqData 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## BubbleTree 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BufferedMatrix 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BufferedMatrixMethods 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bugphyzz 0.99.9 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## bugsigdbr 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BUMHMM 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## bumphunter 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BumpyMatrix 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BUS 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BUScorrect 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BUSpaRse 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## BUSseq 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## butcher 0.3.4 2024-04-11 [2] CRAN (R 4.4.1)
## BWStest 0.2.3 2023-10-10 [2] CRAN (R 4.4.1)
## c3net 1.1.1.1 2022-06-24 [2] CRAN (R 4.4.1)
## C50 0.1.8 2023-02-08 [2] CRAN (R 4.4.1)
## ca 0.71.1 2020-01-24 [2] CRAN (R 4.4.1)
## cachem 1.1.0 2024-05-16 [2] CRAN (R 4.4.1)
## cadd.v1.6.hg19 3.18.1 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## cadd.v1.6.hg38 3.18.1 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## CaDrA 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAEN 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAFE 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAGEfightR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cageminer 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAGEr 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAGEWorkflow 1.21.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## Cairo 1.6-2 2023-11-28 [2] CRAN (R 4.4.1)
## calibrate 1.7.7 2020-06-19 [2] CRAN (R 4.4.1)
## callr 3.7.6 2024-03-25 [2] CRAN (R 4.4.1)
## calm 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CAMERA 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CaMutQC 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## canceR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cancerclass 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cancerdata 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## candisc 0.9.0 2024-05-06 [2] CRAN (R 4.4.1)
## capushe 1.1.2 2023-11-27 [2] CRAN (R 4.4.1)
## car 3.1-3 2024-09-27 [2] CRAN (R 4.4.1)
## carData 3.0-5 2022-01-06 [2] CRAN (R 4.4.1)
## cardelino 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Cardinal 3.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CardinalIO 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CardinalWorkflows 1.37.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## caret 6.0-94 2023-03-21 [2] CRAN (R 4.4.1)
## CARNIVAL 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## casper 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CATALYST 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## catdata 1.2.4 2024-01-25 [2] CRAN (R 4.4.1)
## Category 2.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## categoryCompare 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CatEncoders 0.1.1 2017-03-08 [2] CRAN (R 4.4.1)
## caTools 1.18.3 2024-09-04 [2] CRAN (R 4.4.1)
## CatsCradle 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CATT 2.0 2017-05-19 [2] CRAN (R 4.4.1)
## CausalR 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cba 0.2-25 2024-08-16 [2] CRAN (R 4.4.1)
## cbaf 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CBEA 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cBioPortalData 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CBNplot 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cbpManager 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ccaPP 0.3.4 2024-09-04 [2] CRAN (R 4.4.1)
## ccdata 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ccfindR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ccImpute 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CCl4 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ccmap 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CCP 1.2 2022-04-21 [2] CRAN (R 4.4.1)
## CCPlotR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CCPROMISE 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ccrepe 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ccTensor 1.0.2 2021-08-12 [2] CRAN (R 4.4.1)
## CDFt 1.2 2021-02-18 [2] CRAN (R 4.4.1)
## CDI 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CDM 8.2-6 2022-08-25 [2] CRAN (R 4.4.1)
## celaref 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## celarefData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## celda 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## celestial 1.4.6 2018-11-29 [2] CRAN (R 4.4.1)
## CellaRepertorium 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellBarcode 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cellbaseR 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellBench 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## celldex 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CelliD 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cellity 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellMapper 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellMapperData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## cellmigRation 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellMixS 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellNOptR 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cellranger 1.1.0 2016-07-27 [2] CRAN (R 4.4.1)
## cellscape 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellScore 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CellTrails 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cellxgenedp 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CEMiTool 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## censcyt 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Cepo 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ceRNAnetsim 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CeTF 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CexoR 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CFAssay 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cfdnakit 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cfDNAPro 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cfTools 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cfToolsData 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CGEN 3.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CGHbase 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CGHcall 2.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cghMCR 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CGHnormaliter 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CGHregions 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChAMP 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChAMPdata 2.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## changepoint 2.2.4 2022-11-03 [2] CRAN (R 4.4.1)
## changepoint.np 1.0.5 2022-10-20 [2] CRAN (R 4.4.1)
## checkmate 2.3.2 2024-07-29 [2] CRAN (R 4.4.1)
## ChemmineDrugs 1.0.2 2024-09-26 [2] Bioconductor
## ChemmineOB 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChemmineR 3.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chemometrics 1.4.4 2023-08-25 [2] CRAN (R 4.4.1)
## ChemoSpec 6.1.10 2024-02-03 [2] CRAN (R 4.4.1)
## ChemoSpecUtils 1.0.4 2024-01-31 [2] CRAN (R 4.4.1)
## CHETAH 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Chicago 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chihaya 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chimeraviz 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChimpHumanBrainData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPanalyser 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPComp 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chipenrich 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chipenrich.data 2.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPexoQual 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPexoQualExample 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPpeakAnno 3.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPQC 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPseeker 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chipseq 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chipseqDB 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## chipseqDBData 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPseqR 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPsim 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPXpress 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChIPXpressData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## chk 0.9.2 2024-07-09 [2] CRAN (R 4.4.1)
## chopsticks 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chromDraw 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChromHeatMap 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chromhmmData 0.99.2 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## chromote 0.3.1 2024-08-30 [2] CRAN (R 4.4.1)
## chromPlot 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ChromSCape 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chromstaR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chromstaRData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## chromVAR 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## chron 2.3-61 2023-05-02 [2] CRAN (R 4.4.1)
## CHRONOS 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cicero 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cicerone 1.0.4 2021-01-10 [2] CRAN (R 4.4.1)
## CIMICE 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CINdex 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## circlize 0.4.16 2024-02-20 [2] CRAN (R 4.4.1)
## circRNAprofiler 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CircSeqAlignTk 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CircStats 0.2-6 2018-07-01 [2] CRAN (R 4.4.1)
## circular 0.5-1 2024-08-29 [2] CRAN (R 4.4.1)
## cisPath 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CiteFuse 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Ckmeans.1d.dp 4.3.5 2023-08-19 [2] CRAN (R 4.4.1)
## clarabel 0.9.0.1 2024-09-03 [2] CRAN (R 4.4.1)
## class 7.3-22 2023-05-03 [3] CRAN (R 4.4.1)
## ClassifyR 3.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## classInt 0.4-10 2023-09-05 [2] CRAN (R 4.4.1)
## cleanUpdTSeq 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CleanUpRNAseq 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cleaver 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clevRvis 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cli 3.6.3 2024-06-21 [2] CRAN (R 4.4.1)
## clinfun 1.1.5 2023-10-19 [2] CRAN (R 4.4.1)
## clippda 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clipper 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clipr 0.8.0 2022-02-22 [2] CRAN (R 4.4.1)
## cliProfiler 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cliqueMS 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clisymbols 1.2.0 2017-05-21 [2] CRAN (R 4.4.1)
## CLL 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CLLmethylation 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## clock 0.7.1 2024-07-18 [2] CRAN (R 4.4.1)
## Clomial 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clst 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clstutils 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clue 0.3-65 2023-09-23 [2] CRAN (R 4.4.1)
## ClueR 1.4.2 2023-11-15 [2] CRAN (R 4.4.1)
## CluMSID 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CluMSIDdata 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ClustAll 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clustComp 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cluster 2.1.6 2023-12-01 [3] CRAN (R 4.4.1)
## clusterCons 1.2 2022-02-22 [2] CRAN (R 4.4.1)
## clusterExperiment 2.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ClusterFoldSimilarity 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clusterGeneration 1.3.8 2023-08-16 [2] CRAN (R 4.4.1)
## ClusterJudge 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clusterProfiler 4.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ClusterR 1.3.3 2024-06-18 [2] CRAN (R 4.4.1)
## clusterRepro 0.9 2018-10-15 [2] CRAN (R 4.4.1)
## clusterSeq 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ClusterSignificance 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clusterSim 0.51-5 2024-09-14 [2] CRAN (R 4.4.1)
## clusterStab 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clustifyr 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clustifyrdatahub 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ClustIRR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## clustree 0.5.1 2023-11-05 [2] CRAN (R 4.4.1)
## clustvarsel 2.3.4 2020-12-16 [2] CRAN (R 4.4.1)
## clv 0.3-2.4 2023-09-28 [2] CRAN (R 4.4.1)
## clValid 0.7 2021-02-14 [2] CRAN (R 4.4.1)
## CMA 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cMAP 1.15.1 2024-09-26 [2] local
## cMap2data 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## cmapR 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cmdfun 1.0.2 2020-10-10 [2] CRAN (R 4.4.1)
## cn.farms 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cn.mops 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNAnorm 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNEr 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNORdt 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNORfeeder 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNORfuzzy 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNORode 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNTools 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNVfilteR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cnvGSA 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cnvGSAdata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CNViz 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNVMetrics 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNVPanelizer 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNVRanger 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CNVrd2 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cobalt 4.5.5 2024-04-02 [2] CRAN (R 4.4.1)
## cobs 1.3-8 2024-03-06 [2] CRAN (R 4.4.1)
## CoCiteStats 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## COCOA 2.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## coda 0.19-4.1 2024-01-31 [2] CRAN (R 4.4.1)
## CodeDepends 0.6.6 2024-04-07 [2] CRAN (R 4.4.1)
## codelink 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## codetools 0.2-20 2024-03-31 [3] CRAN (R 4.4.1)
## CODEX 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## codingMatrices 0.4.0 2023-02-01 [2] CRAN (R 4.4.1)
## CoGAPS 3.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cogena 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cogeqc 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Cogito 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## coGPS 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## COHCAPanno 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## coin 1.4-3 2023-09-27 [2] CRAN (R 4.4.1)
## cola 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## collapse 2.0.16 2024-08-21 [2] CRAN (R 4.4.1)
## collections 0.3.7 2023-01-05 [2] CRAN (R 4.4.1)
## colonCA 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## colorBlindness 0.1.9 2021-04-17 [2] CRAN (R 4.4.1)
## colorRamps 2.3.4 2024-03-07 [2] CRAN (R 4.4.1)
## colorspace 2.1-1 2024-07-26 [2] CRAN (R 4.4.1)
## colourpicker 1.3.0 2023-08-21 [2] CRAN (R 4.4.1)
## colourvalues 0.3.9 2023-04-11 [2] CRAN (R 4.4.1)
## comapr 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## combi 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## combinat 0.0-8 2012-10-29 [2] CRAN (R 4.4.1)
## coMET 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## coMethDMR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## common 1.1.3 2024-04-05 [2] CRAN (R 4.4.1)
## commonmark 1.9.2 2024-10-04 [2] CRAN (R 4.4.1)
## compareGroups 4.9.0 2024-09-13 [2] CRAN (R 4.4.1)
## COMPASS 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## compcodeR 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## compEpiTools 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## compiler 4.4.1 2024-09-25 [3] local
## ComplexHeatmap 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ComplexUpset 1.3.3 2021-12-11 [2] CRAN (R 4.4.1)
## COMPoissonReg 0.8.1 2023-11-29 [2] CRAN (R 4.4.1)
## compositions 2.0-8 2024-01-31 [2] CRAN (R 4.4.1)
## CompoundDb 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CompQuadForm 1.4.3 2017-04-12 [2] CRAN (R 4.4.1)
## ComPrAn 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## comprehenr 0.6.10 2021-01-31 [2] CRAN (R 4.4.1)
## compSPOT 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## concatenate 1.0.0 2016-05-08 [2] CRAN (R 4.4.1)
## concaveman 1.1.0 2020-05-11 [2] CRAN (R 4.4.1)
## conclust 1.1 2016-08-15 [2] CRAN (R 4.4.1)
## concordexR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## condformat 0.10.1 2023-10-08 [2] CRAN (R 4.4.1)
## condiments 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## conditionz 0.1.0 2019-04-24 [2] CRAN (R 4.4.1)
## CONFESS 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CONFESSdata 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## config 0.3.2 2023-08-30 [2] CRAN (R 4.4.1)
## configr 0.3.5 2020-07-17 [2] CRAN (R 4.4.1)
## confintr 1.0.2 2023-06-04 [2] CRAN (R 4.4.1)
## conflicted 1.2.0 2023-02-01 [2] CRAN (R 4.4.1)
## conicfit 1.0.4 2015-10-05 [2] CRAN (R 4.4.1)
## ConnectivityMap 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## consensus 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ConsensusClusterPlus 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## consensusDE 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## consensusOV 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## consensusSeekeR 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## consICA 2.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ConsRank 2.1.4 2024-01-24 [2] CRAN (R 4.4.1)
## CONSTANd 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## contrast 0.24.2 2022-10-05 [2] CRAN (R 4.4.1)
## conumee 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## convert 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## coop 0.6-3 2021-09-19 [2] CRAN (R 4.4.1)
## copa 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## COPDSexualDimorphism.data 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## copula 1.1-4 2024-08-17 [2] CRAN (R 4.4.1)
## CopyhelpeR 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CopyNeutralIMA 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CopyNumberPlots 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## coRdon 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CoreGx 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Cormotif 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## corncob 0.4.1 2024-01-10 [2] CRAN (R 4.4.1)
## coro 1.0.5 2024-10-15 [2] CRAN (R 4.4.1)
## corpcor 1.6.10 2021-09-16 [2] CRAN (R 4.4.1)
## corral 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## corrgram 1.14 2021-04-29 [2] CRAN (R 4.4.1)
## corrplot 0.95 2024-10-14 [2] CRAN (R 4.4.1)
## coseq 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CoSIA 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CoSIAdata 1.5.2 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## COSMIC.67 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## cosmiq 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cosmosR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## COSNet 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## COTAN 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## countrycode 1.6.0 2024-03-22 [2] CRAN (R 4.4.1)
## countsimQC 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## covEB 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CoverageView 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## covr 3.6.4 2023-11-09 [2] CRAN (R 4.4.1)
## covRNA 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cowplot 1.1.3 2024-01-22 [2] CRAN (R 4.4.1)
## coxme 2.2-22 2024-08-23 [2] CRAN (R 4.4.1)
## coxrobust 1.0.1 2022-04-06 [2] CRAN (R 4.4.1)
## cp4p 0.3.6 2019-02-24 [2] CRAN (R 4.4.1)
## cplm 0.7-12.1 2024-09-21 [2] CRAN (R 4.4.1)
## cpp11 0.5.0 2024-08-27 [2] CRAN (R 4.4.1)
## cpvSNP 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cqn 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cramer 0.9-4 2024-02-05 [2] CRAN (R 4.4.1)
## crayon 1.5.3 2024-06-20 [2] CRAN (R 4.4.1)
## CRCL18 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## credentials 2.0.2 2024-10-04 [2] CRAN (R 4.4.1)
## CRImage 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CRISPRball 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprBase 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprBowtie 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprBwa 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprDesign 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprScore 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprScoreData 1.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CRISPRseek 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprShiny 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CrispRVariants 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprVerse 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crisprViz 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crlmm 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crmn 0.0.21 2020-02-10 [2] CRAN (R 4.4.1)
## crochet 2.3.0 2020-05-20 [2] CRAN (R 4.4.1)
## crossmeta 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## crosstalk 1.2.1 2023-11-23 [2] CRAN (R 4.4.1)
## crul 1.5.0 2024-07-19 [2] CRAN (R 4.4.1)
## CSAR 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## csaw 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## csawBook 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## csawUsersGuide 1.21.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## csdR 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CSSQ 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ctc 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CTCF 0.99.11 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## CTdata 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CTDquerier 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CTexploreR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cTRAP 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ctsGE 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CTSV 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cubature 2.1.1 2024-07-14 [2] CRAN (R 4.4.1)
## Cubist 0.4.4 2024-07-02 [2] CRAN (R 4.4.1)
## cummeRbund 2.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## curatedAdipoArray 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedAdipoChIP 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedAdipoRNA 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## CuratedAtlasQueryR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## curatedBladderData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedBreastData 2.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedCRCData 2.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedMetagenomicData 3.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedOvarianData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedPCaData 1.1.2 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedTBData 2.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curatedTCGAData 1.27.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## curl 5.2.3 2024-09-20 [2] CRAN (R 4.4.1)
## customCMPdb 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## customProDB 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cvar 0.5 2022-11-03 [2] CRAN (R 4.4.1)
## cvAUC 1.1.4 2022-01-17 [2] CRAN (R 4.4.1)
## cvms 1.6.2 2024-07-31 [2] CRAN (R 4.4.1)
## cvTools 0.3.3 2024-03-13 [2] CRAN (R 4.4.1)
## CVXR 1.0-14 2024-06-27 [2] CRAN (R 4.4.1)
## cyanoFilter 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cycle 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cyclocomp 1.1.1 2023-08-30 [2] CRAN (R 4.4.1)
## cydar 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cypress 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CytoDx 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CyTOFpower 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytofQC 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytofWorkflow 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## CytoGLMM 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytoKernel 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytolib 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytomapper 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CytoMDS 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytoMEM 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CytoMethIC 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## cytometree 2.0.2 2019-12-04 [2] CRAN (R 4.4.1)
## CytoML 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CytoPipeline 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## CytoPipelineGUI 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## cytoviewer 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dada2 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dagitty 0.3-4 2023-12-07 [2] CRAN (R 4.4.1)
## dagLogo 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## daMA 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DAMEfinder 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DaMiRseq 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Damsel 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DAPAR 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DAPARdata 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## dar 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DART 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dashboardthemes 1.1.6 2022-07-13 [2] CRAN (R 4.4.1)
## data.table 1.16.2 2024-10-10 [2] CRAN (R 4.4.1)
## data.tree 1.1.0 2023-11-12 [2] CRAN (R 4.4.1)
## datamods 1.5.3 2024-10-02 [2] CRAN (R 4.4.1)
## datasets * 4.4.1 2024-09-25 [3] local
## DataVisualizations 1.3.2 2023-10-10 [2] CRAN (R 4.4.1)
## datawizard 0.13.0 2024-10-05 [2] CRAN (R 4.4.1)
## davidTiling 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DBI 1.2.3 2024-06-02 [2] CRAN (R 4.4.1)
## dbplyr 2.5.0 2024-03-19 [2] CRAN (R 4.4.1)
## dbscan 1.2-0 2024-06-28 [2] CRAN (R 4.4.1)
## dcanr 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DCATS 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dce 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dcGSA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ddCt 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ddPCRclust 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DDRTree 0.1.5 2017-04-30 [2] CRAN (R 4.4.1)
## dearseq 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## debCAM 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## debrowser 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## debugme 1.2.0 2024-04-25 [2] CRAN (R 4.4.1)
## DECIPHER 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## decompTumor2Sig 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DeconRNASeq 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## decontam 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## decontX 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deconvR 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## decor 1.0.2 2023-07-01 [2] CRAN (R 4.4.1)
## decoupleR 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DeepPINCS 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deepSNV 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DeepTarget 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEFormats 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DegCre 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DegNorm 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEGraph 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEGreport 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEGseq 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Delaporte 8.4.1 2024-06-17 [2] CRAN (R 4.4.1)
## DelayedArray 0.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DelayedDataFrame 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DelayedMatrixStats 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DelayedRandomArray 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DelayedTensor 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deldir 2.0-4 2024-02-28 [2] CRAN (R 4.4.1)
## DELocal 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deltaCaptureC 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deltaGseg 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DeMAND 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deming 1.4-1 2024-06-26 [2] CRAN (R 4.4.1)
## DeMixT 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## demuxmix 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## demuxSNP 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dendextend 1.18.1 2024-10-13 [2] CRAN (R 4.4.1)
## dendsort 0.3.4 2021-04-20 [2] CRAN (R 4.4.1)
## densEstBayes 1.0-2.2 2023-03-31 [2] CRAN (R 4.4.1)
## densvis 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEoptim 2.2-8 2022-11-11 [2] CRAN (R 4.4.1)
## DEoptimR 1.1-3 2023-10-07 [2] CRAN (R 4.4.1)
## DEP 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DepecheR 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DepInfeR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## depmap 1.19.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## depmixS4 1.5-0 2021-05-12 [2] CRAN (R 4.4.1)
## DeProViR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEqMS 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## derfinder 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## derfinderData 2.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## derfinderHelper 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## derfinderPlot 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Deriv 4.1.6 2024-09-13 [2] CRAN (R 4.4.1)
## desc 1.4.3 2023-12-10 [2] CRAN (R 4.4.1)
## DEScan2 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DescTools 0.99.57 2024-09-25 [2] CRAN (R 4.4.1)
## DESeq2 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEsingle 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## deSolve 1.40 2023-11-27 [2] CRAN (R 4.4.1)
## DeSousa2013 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DESpace 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## destiny 3.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DEsubs 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## detectseparation 0.3 2022-08-26 [2] CRAN (R 4.4.1)
## devtools 2.4.5 2022-10-11 [2] CRAN (R 4.4.1)
## DEWSeq 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DExMA 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DExMAdata 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DEXSeq 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DFP 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DFplyr 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DGEobj 1.1.2 2022-05-16 [2] CRAN (R 4.4.1)
## DGEobj.utils 1.0.6 2022-05-19 [2] CRAN (R 4.4.1)
## dgof 1.5.1 2024-10-09 [2] CRAN (R 4.4.1)
## diagram 1.6.5 2020-09-30 [2] CRAN (R 4.4.1)
## DiagrammeR 1.0.11 2024-02-02 [2] CRAN (R 4.4.1)
## DIAlignR 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diceR 2.2.0 2024-01-22 [2] CRAN (R 4.4.1)
## dichromat 2.0-0.1 2022-05-02 [2] CRAN (R 4.4.1)
## DiffBind 3.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffcoexp 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DiffCorr 0.4.4 2024-09-30 [2] CRAN (R 4.4.1)
## diffcyt 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DifferentialRegulation 2.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffGeneAnalysis 1.88.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffHic 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DiffLogo 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffloopdata 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## diffobj 0.3.5 2021-10-05 [2] CRAN (R 4.4.1)
## diffuStats 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffUTR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diffviewer 0.1.2 2024-06-12 [2] CRAN (R 4.4.1)
## digest 0.6.37 2024-08-19 [2] CRAN (R 4.4.1)
## diggit 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diggitdata 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Dino 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dinoR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## diptest 0.77-1 2024-04-10 [2] CRAN (R 4.4.1)
## dir.expiry 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## directlabels 2024.1.21 2024-01-24 [2] CRAN (R 4.4.1)
## Director 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## directPA 1.5.1 2023-11-16 [2] CRAN (R 4.4.1)
## DirichletMultinomial 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DirichletReg 0.7-1 2021-05-18 [2] CRAN (R 4.4.1)
## dirmult 0.1.3-5 2022-03-21 [2] CRAN (R 4.4.1)
## discordant 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DiscoRhythm 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## distances 0.1.11 2024-07-31 [2] CRAN (R 4.4.1)
## distill 1.6 2023-10-06 [2] CRAN (R 4.4.1)
## distillery 1.2-1 2021-05-19 [2] CRAN (R 4.4.1)
## distinct 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## distr 2.9.5 2024-08-29 [2] CRAN (R 4.4.1)
## distributional 0.5.0 2024-09-17 [2] CRAN (R 4.4.1)
## distributions3 0.2.2 2024-09-16 [2] CRAN (R 4.4.1)
## dittoSeq 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## divergence 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dixonTest 1.0.4 2022-08-22 [2] CRAN (R 4.4.1)
## dks 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DLBCL 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## dlstats 0.1.7 2023-05-24 [2] CRAN (R 4.4.1)
## DMCFB 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DMCHMM 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DmelSGI 1.37.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## dml 1.1.0 2015-08-29 [2] CRAN (R 4.4.1)
## DMRcaller 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DMRcate 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DMRcatedata 2.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DMRScan 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dmrseq 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DMwR2 0.0.2 2016-10-13 [2] CRAN (R 4.4.1)
## DNABarcodeCompatibility 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DNABarcodes 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DNAcopy 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DNAfusion 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DNAshapeR 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DNAZooData 1.5.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DO.db 2.9 2024-09-26 [2] Bioconductor
## doBy 4.6.24 2024-10-07 [2] CRAN (R 4.4.1)
## docopt 0.7.1 2020-06-24 [2] CRAN (R 4.4.1)
## doFuture 1.0.1 2023-12-20 [2] CRAN (R 4.4.1)
## doMC 1.3.8 2022-02-05 [2] CRAN (R 4.4.1)
## DominoEffect 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dominoSignal 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DonaPLLP2013 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## doParallel 1.0.17 2022-02-07 [2] CRAN (R 4.4.1)
## doppelgangR 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## doRNG 1.8.6 2023-01-16 [2] CRAN (R 4.4.1)
## dorothea 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Doscheda 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DOSE 4.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## doseR 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## doSNOW 1.0.20 2022-02-04 [2] CRAN (R 4.4.1)
## dotCall64 1.2 2024-10-04 [2] CRAN (R 4.4.1)
## DoubleExpSeq 1.1 2015-09-04 [2] CRAN (R 4.4.1)
## doubletrouble 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## downlit 0.4.4 2024-06-10 [2] CRAN (R 4.4.1)
## downloader 0.4 2015-07-09 [2] CRAN (R 4.4.1)
## downloadthis 0.4.1 2024-10-14 [2] CRAN (R 4.4.1)
## dplyr 1.1.4 2023-11-17 [2] CRAN (R 4.4.1)
## dqrng 0.4.1 2024-05-28 [2] CRAN (R 4.4.1)
## drawer 0.2.0.1 2022-08-19 [2] CRAN (R 4.4.1)
## drawProteins 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## drc 3.0-1 2016-08-30 [2] CRAN (R 4.4.1)
## dreamlet 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dressCheck 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DrImpute 1.0 2017-07-15 [2] CRAN (R 4.4.1)
## DRIMSeq 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DriverNet 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DropletTestFiles 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DropletUtils 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## drosgenome1.db 3.13.0 2024-09-26 [2] Bioconductor
## drosophila2probe 2.18.0 2024-09-26 [2] Bioconductor
## drtmle 1.1.2 2023-01-05 [2] CRAN (R 4.4.1)
## drugTargetInteractions 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DrugVsDisease 2.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DrugVsDiseasedata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DSS 2.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dStruct 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DT 0.33 2024-04-04 [2] CRAN (R 4.4.1)
## DTA 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dtangle 2.0.9 2019-12-01 [2] CRAN (R 4.4.1)
## dtplyr 1.3.1 2023-03-22 [2] CRAN (R 4.4.1)
## dtt 0.1-2 2013-12-30 [2] CRAN (R 4.4.1)
## dtw 1.23-1 2022-09-19 [2] CRAN (R 4.4.1)
## duckdb 1.1.1 2024-10-16 [2] CRAN (R 4.4.1)
## Dune 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dunn.test 1.3.6 2024-04-12 [2] CRAN (R 4.4.1)
## DuoClustering2018 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## DuplexDiscovereR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dupRadar 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## DvDdata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## dyebias 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## dyebiasexamples 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## dynamicTreeCut 1.63-1 2016-03-11 [2] CRAN (R 4.4.1)
## DynDoc 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## e1071 1.7-16 2024-09-16 [2] CRAN (R 4.4.1)
## earth 5.3.4 2024-10-05 [2] CRAN (R 4.4.1)
## easier 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## easierData 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## EasyCellType 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## easycsv 1.0.8 2018-05-21 [2] CRAN (R 4.4.1)
## easylift 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## easyPubMed 2.13 2019-03-29 [2] CRAN (R 4.4.1)
## easyreporting 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## easyRNASeq 2.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EatonEtAlChIPseq 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## EBarrays 2.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EBcoexpress 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EBImage 4.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EBSEA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EBSeq 2.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## echarts4r 0.4.5 2023-06-16 [2] CRAN (R 4.4.1)
## ecodist 2.1.3 2023-10-30 [2] CRAN (R 4.4.1)
## ecolicdf 2.18.0 2024-09-26 [2] Bioconductor
## ecoliLeucine 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ecolitk 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ECOSolveR 0.5.5 2023-05-15 [2] CRAN (R 4.4.1)
## ecp 3.1.6 2024-08-26 [2] CRAN (R 4.4.1)
## Ecume 0.9.2 2024-05-28 [2] CRAN (R 4.4.1)
## EDASeq 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## edge 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## edgeR 4.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EDIRquery 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## eds 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## effsize 0.8.1 2020-10-05 [2] CRAN (R 4.4.1)
## EGAD 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## egg 0.4.5 2019-07-13 [2] CRAN (R 4.4.1)
## EGSEA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EGSEA123 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## EGSEAdata 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## einsum 0.1.2 2023-08-28 [2] CRAN (R 4.4.1)
## eiR 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## eisaR 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## elasticnet 1.3 2020-05-15 [2] CRAN (R 4.4.1)
## elitism 1.1.1 2023-09-02 [2] CRAN (R 4.4.1)
## ellipse 0.5.0 2023-07-20 [2] CRAN (R 4.4.1)
## ellipsis 0.3.2 2021-04-29 [2] CRAN (R 4.4.1)
## ELMER 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ELMER.data 2.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## elsa 1.1-28 2020-03-19 [2] CRAN (R 4.4.1)
## embed 1.1.4 2024-03-20 [2] CRAN (R 4.4.1)
## emdbook 1.3.13 2023-07-03 [2] CRAN (R 4.4.1)
## emdist 0.3-3 2023-08-18 [2] CRAN (R 4.4.1)
## EMDomics 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## emmeans 1.10.5 2024-10-14 [2] CRAN (R 4.4.1)
## emojifont 0.5.5 2021-04-20 [2] CRAN (R 4.4.1)
## EmpiricalBrownsMethod 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## emtdata 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ENCODExplorerData 0.99.5 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## energy 1.7-12 2024-08-24 [2] CRAN (R 4.4.1)
## english 1.2-6 2021-08-21 [2] CRAN (R 4.4.1)
## EnhancedVolcano 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## enhancerHomologSearch 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EnMCB 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ENmix 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EnrichDO 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EnrichedHeatmap 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EnrichmentBrowser 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## enrichplot 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## enrichR 3.2 2023-04-14 [2] CRAN (R 4.4.1)
## enrichViewNet 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EnsDb.Hsapiens.v75 2.99.0 2024-09-26 [2] Bioconductor
## EnsDb.Hsapiens.v79 2.99.0 2024-09-26 [2] Bioconductor
## EnsDb.Hsapiens.v86 2.99.0 2024-09-26 [2] Bioconductor
## EnsDb.Mmusculus.v79 2.99.0 2024-09-26 [2] Bioconductor
## ensembldb 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## entropy 1.3.1 2021-10-02 [2] CRAN (R 4.4.1)
## enviPat 2.6 2022-10-21 [2] CRAN (R 4.4.1)
## EnvStats 3.0.0 2024-08-24 [2] CRAN (R 4.4.1)
## eoPredData 0.99.12 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## epialleleR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiCompare 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EPICv2manifest 0.99.7 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## epidecodeR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiDISH 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epigenomix 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epigraHMM 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiMix 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiMix.data 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## epimutacions 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epimutacionsData 1.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## epiNEM 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpipwR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpipwR.data 0.99.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## epiR 2.0.76 2024-09-15 [2] CRAN (R 4.4.1)
## epiregulon 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epiregulon.extra 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epistack 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epistasisGA 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiTxDb 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## EpiTxDb.Hs.hg38 0.99.7 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## EpiTxDb.Mm.mm10 0.99.6 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## EpiTxDb.Sc.sacCer3 0.99.5 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## epivizr 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epivizrChart 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epivizrData 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epivizrServer 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## epivizrStandalone 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## erccdashboard 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## erma 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ERSSA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## esATAC 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## escape 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## escheR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## esetVis 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## esquisse 2.0.1 2024-09-18 [2] CRAN (R 4.4.1)
## estimability 1.5.1 2024-05-12 [2] CRAN (R 4.4.1)
## estrogen 1.51.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## etec16s 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## etrunct 0.1 2016-07-04 [2] CRAN (R 4.4.1)
## eudysbiome 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## eulerr 7.0.2 2024-03-28 [2] CRAN (R 4.4.1)
## EuPathDB 1.0.1 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## europepmc 0.4.3 2023-09-20 [2] CRAN (R 4.4.1)
## eva 0.2.6 2020-11-15 [2] CRAN (R 4.4.1)
## evaluate 1.0.1 2024-10-10 [2] CRAN (R 4.4.1)
## evaluomeR 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## evd 2.3-7.1 2024-09-21 [2] CRAN (R 4.4.1)
## EventPointer 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## evmix 2.12 2019-09-03 [2] CRAN (R 4.4.1)
## EWCE 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ewceData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Exact 3.3 2024-07-21 [2] CRAN (R 4.4.1)
## exactRankTests 0.8-35 2022-04-26 [2] CRAN (R 4.4.1)
## excelR 0.4.0 2020-03-09 [2] CRAN (R 4.4.1)
## excluderanges 0.99.8 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## ExCluster 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExiMiR 2.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExperimentHub 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExperimentHubData 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExperimentSubset 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExpHunterSuite 1.13.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## expint 0.1-8 2022-10-28 [2] CRAN (R 4.4.1)
## ExploreModelMatrix 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## expm 1.0-0 2024-08-19 [2] CRAN (R 4.4.1)
## ExPosition 2.8.23 2019-01-07 [2] CRAN (R 4.4.1)
## ExpressionAtlas 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ExpressionNormalizationWorkflow 1.31.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## ExtDist 0.7-2 2023-08-21 [2] CRAN (R 4.4.1)
## extraChIPs 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## extraDistr 1.10.0 2023-11-30 [2] CRAN (R 4.4.1)
## extrafont 0.19 2023-01-18 [2] CRAN (R 4.4.1)
## extrafontdb 1.0 2012-06-11 [2] CRAN (R 4.4.1)
## extRemes 2.1-4 2024-02-02 [2] CRAN (R 4.4.1)
## EZtune 3.1.1 2021-12-10 [2] CRAN (R 4.4.1)
## faahKO 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fabia 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fabiaData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fabricatr 1.0.2 2024-01-16 [2] CRAN (R 4.4.1)
## factDesign 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## factoextra 1.0.7 2020-04-01 [2] CRAN (R 4.4.1)
## FactoInvestigate 1.9 2023-11-27 [2] CRAN (R 4.4.1)
## FactoMineR 2.11 2024-04-20 [2] CRAN (R 4.4.1)
## factR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## faers 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FamAgg 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## famat 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fANCOVA 0.6-1 2020-11-13 [2] CRAN (R 4.4.1)
## fansi 1.0.6 2023-12-08 [2] CRAN (R 4.4.1)
## FANTOM3and4CAGE 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## farver 2.1.2 2024-05-13 [2] CRAN (R 4.4.1)
## fastcluster 1.2.6 2024-01-12 [2] CRAN (R 4.4.1)
## fastDummies 1.7.4 2024-08-16 [2] CRAN (R 4.4.1)
## fastICA 1.2-5.1 2024-08-21 [2] CRAN (R 4.4.1)
## fastLiquidAssociation 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fastmap 1.2.0 2024-05-15 [2] CRAN (R 4.4.1)
## fastmatch 1.1-4 2023-08-18 [2] CRAN (R 4.4.1)
## FastqCleaner 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fastqcr 0.1.3 2023-02-18 [2] CRAN (R 4.4.1)
## fastreeR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fastseg 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fauxpas 0.5.2 2023-05-03 [2] CRAN (R 4.4.1)
## fBasics 4041.97 2024-08-19 [2] CRAN (R 4.4.1)
## fCCAC 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fCI 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FCPS 1.3.4 2023-10-19 [2] CRAN (R 4.4.1)
## fcScan 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fda 6.2.0 2024-09-17 [2] CRAN (R 4.4.1)
## FDb.InfiniumMethylation.hg18 2.2.0 2024-09-26 [2] Bioconductor
## FDb.InfiniumMethylation.hg19 2.2.0 2024-09-26 [2] Bioconductor
## FDb.UCSC.tRNAs 1.0.1 2024-09-26 [2] Bioconductor
## fdrame 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fdrtool 1.2.18 2024-08-20 [2] CRAN (R 4.4.1)
## fds 1.8 2018-10-31 [2] CRAN (R 4.4.1)
## FEAST 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FeatSeekR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## feature 1.2.15 2021-02-10 [2] CRAN (R 4.4.1)
## fedup 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FELLA 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fenr 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ff 4.5.0 2024-09-20 [2] CRAN (R 4.4.1)
## ffpe 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ffpeExampleData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fftw 1.0-9 2024-09-20 [2] CRAN (R 4.4.1)
## fftwtools 0.9-11 2021-03-01 [2] CRAN (R 4.4.1)
## fGarch 4033.92 2024-03-26 [2] CRAN (R 4.4.1)
## fgga 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FGNet 3.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fgsea 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fibroEset 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FieldEffectCrc 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fields 16.3 2024-09-30 [2] CRAN (R 4.4.1)
## filehash 2.4-6 2024-06-25 [2] CRAN (R 4.4.1)
## filelock 1.0.3 2023-12-11 [2] CRAN (R 4.4.1)
## filematrix 1.3 2018-02-27 [2] CRAN (R 4.4.1)
## filesstrings 3.4.0 2024-02-11 [2] CRAN (R 4.4.1)
## FilterFFPE 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## findIPs 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FindIT2 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## findpython 1.0.8 2023-03-14 [2] CRAN (R 4.4.1)
## fingerprint 3.5.7 2018-01-07 [2] CRAN (R 4.4.1)
## FIs 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FISHalyseR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fishpond 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fission 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fit.models 0.64 2020-08-02 [2] CRAN (R 4.4.1)
## fitdistrplus 1.2-1 2024-07-12 [2] CRAN (R 4.4.1)
## FitHiC 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flagme 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FLAMES 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flashClust 1.01-2 2012-08-21 [2] CRAN (R 4.4.1)
## flatxml 0.1.1 2020-12-01 [2] CRAN (R 4.4.1)
## Fletcher2013a 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Fletcher2013b 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## flexclust 1.4-2 2024-04-27 [2] CRAN (R 4.4.1)
## flexdashboard 0.6.2 2023-08-11 [2] CRAN (R 4.4.1)
## flexmix 2.3-19 2023-03-16 [2] CRAN (R 4.4.1)
## flextable 0.9.7 2024-10-27 [2] CRAN (R 4.4.1)
## float 0.3-2 2023-12-10 [2] CRAN (R 4.4.1)
## flock 0.7 2016-11-12 [2] CRAN (R 4.4.1)
## flowAI 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowBeads 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowBin 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowcatchR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowCHIC 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowClean 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowClust 3.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowCore 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowCut 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowCyBar 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowDensity 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowFP 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowGate 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowGraph 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowMatch 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowMeans 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowMerge 2.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowPeaks 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowPloidy 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowPloidyData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## flowPlots 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSOM 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.Blood.450k 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.Blood.EPIC 2.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.CordBlood.450k 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.CordBloodCombined.450k 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.CordBloodNorway.450k 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## FlowSorted.DLPFC.450k 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## flowSpecs 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowStats 4.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowTime 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowTrans 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowViz 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowVS 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowWorkspace 4.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## flowWorkspaceData 3.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fluentGenomics 1.17.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## fmcsR 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## FME 1.3.6.3 2023-07-05 [2] CRAN (R 4.4.1)
## fmrs 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fmsb 0.7.6 2024-01-19 [2] CRAN (R 4.4.1)
## FMStable 0.1-4 2022-06-06 [2] CRAN (R 4.4.1)
## FNN 1.1.4.1 2024-09-22 [2] CRAN (R 4.4.1)
## fobitools 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fontawesome 0.5.2 2023-08-19 [2] CRAN (R 4.4.1)
## fontBitstreamVera 0.1.1 2017-02-01 [2] CRAN (R 4.4.1)
## fontLiberation 0.1.0 2016-10-15 [2] CRAN (R 4.4.1)
## fontquiver 0.2.1 2017-02-01 [2] CRAN (R 4.4.1)
## forcats 1.0.0 2023-01-29 [2] CRAN (R 4.4.1)
## foreach 1.5.2 2022-02-02 [2] CRAN (R 4.4.1)
## forecast 8.23.0 2024-06-20 [2] CRAN (R 4.4.1)
## foreign 0.8-87 2024-06-26 [3] CRAN (R 4.4.1)
## forestplot 3.1.5 2024-10-11 [2] CRAN (R 4.4.1)
## formatR 1.14 2023-01-17 [2] CRAN (R 4.4.1)
## formattable 0.2.1 2021-01-07 [2] CRAN (R 4.4.1)
## Formula 1.2-5 2023-02-24 [2] CRAN (R 4.4.1)
## formula.tools 1.7.1 2018-03-01 [2] CRAN (R 4.4.1)
## fossil 0.4.0 2020-03-23 [2] CRAN (R 4.4.1)
## fourDNData 1.5.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## fpc 2.2-13 2024-09-24 [2] CRAN (R 4.4.1)
## fracdiff 1.5-3 2024-02-01 [2] CRAN (R 4.4.1)
## fractional 0.1.3 2016-02-15 [2] CRAN (R 4.4.1)
## FRASER 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## frenchFISH 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fresh 0.2.1 2024-06-26 [2] CRAN (R 4.4.1)
## FRGEpistasis 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## frma 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## frmaExampleData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## frmaTools 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## fs 1.6.4 2024-04-25 [2] CRAN (R 4.4.1)
## FSA 0.9.5 2023-08-26 [2] CRAN (R 4.4.1)
## FSelector 0.34 2023-08-22 [2] CRAN (R 4.4.1)
## fst 0.9.8 2022-02-08 [2] CRAN (R 4.4.1)
## fstcore 0.9.18 2023-12-02 [2] CRAN (R 4.4.1)
## functional 0.6 2014-07-16 [2] CRAN (R 4.4.1)
## funOmics 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## funtooNorm 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## furrowSeg 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## furrr 0.3.1 2022-08-15 [2] CRAN (R 4.4.1)
## FuseSOM 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## futile.logger 1.4.3 2016-07-10 [2] CRAN (R 4.4.1)
## futile.options 1.0.1 2018-04-20 [2] CRAN (R 4.4.1)
## future 1.34.0 2024-07-29 [2] CRAN (R 4.4.1)
## future.apply 1.11.3 2024-10-27 [2] CRAN (R 4.4.1)
## fuzzyjoin 0.1.6 2020-05-15 [2] CRAN (R 4.4.1)
## GA 3.2.4 2024-01-28 [2] CRAN (R 4.4.1)
## GA4GHclient 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GA4GHshiny 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gaga 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gage 2.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gageData 2.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## gam 1.22-5 2024-09-12 [2] CRAN (R 4.4.1)
## gamlss 5.4-22 2024-03-20 [2] CRAN (R 4.4.1)
## gamlss.data 6.0-6 2024-03-14 [2] CRAN (R 4.4.1)
## gamlss.dist 6.1-1 2023-08-23 [2] CRAN (R 4.4.1)
## gap 1.6 2024-08-27 [2] CRAN (R 4.4.1)
## gap.datasets 0.0.6 2023-08-25 [2] CRAN (R 4.4.1)
## GAprediction 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## garfield 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gargle 1.5.2 2023-07-20 [2] CRAN (R 4.4.1)
## GARS 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gaschYHS 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GateFinder 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gatom 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gbm 2.2.2 2024-06-28 [2] CRAN (R 4.4.1)
## GBScleanR 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gbutils 0.5 2022-05-27 [2] CRAN (R 4.4.1)
## gcapc 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gcatest 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gclus 1.3.2 2019-01-07 [2] CRAN (R 4.4.1)
## gCrisprTools 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gcrma 2.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gcspikelite 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## gdata 3.0.1 2024-10-22 [2] CRAN (R 4.4.1)
## GDCRNATools 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDNAinRNAseqData 1.5.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## gDNAx 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDRcore 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDRimport 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDRstyle 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gDRtestData 1.3.2 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## gDRutils 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GDSArray 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gdsfmt 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gdtools 0.4.0 2024-08-28 [2] CRAN (R 4.4.1)
## GeDi 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geeM 0.10.1 2018-06-18 [2] CRAN (R 4.4.1)
## geepack 1.3.12 2024-09-23 [2] CRAN (R 4.4.1)
## geigen 2.3 2019-05-30 [2] CRAN (R 4.4.1)
## GEM 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gemini 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gemma.R 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genalg 0.2.1 2022-04-04 [2] CRAN (R 4.4.1)
## genArise 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneAttribution 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneBreak 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneClassifiers 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneExpressionFromGEO 0.9 2021-12-16 [2] CRAN (R 4.4.1)
## GeneExpressionSignature 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genefilter 1.88.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genefu 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneGA 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneGeneInteR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genekitr 1.2.8 2024-09-06 [2] CRAN (R 4.4.1)
## geneLenDataBase 1.41.2 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GeneMeta 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneNet 1.2.16 2021-11-14 [2] CRAN (R 4.4.1)
## GeneNetworkBuilder 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneOverlap 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneplast 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneplast.data 0.99.9 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## geneplast.data.string.v91 0.99.6 2024-09-26 [2] Bioconductor
## geneplotter 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneRecommender 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneRegionScan 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## generegulation 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## generics 0.1.3 2022-07-05 [2] CRAN (R 4.4.1)
## geneRxCluster 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneSelectMMD 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneset 0.2.7 2022-11-20 [2] CRAN (R 4.4.1)
## GENESIS 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneStructureTools 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneSummary 0.99.6 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## geNetClassifier 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genetics 1.3.8.1.3 2021-03-01 [2] CRAN (R 4.4.1)
## GeneticsPed 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeneTonic 3.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geneXtendeR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GENIE3 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genieclust 1.1.6 2024-08-22 [2] CRAN (R 4.4.1)
## genio 1.1.2 2023-01-06 [2] CRAN (R 4.4.1)
## genlasso 1.6.1 2022-08-22 [2] CRAN (R 4.4.1)
## GENLIB 1.1.10 2024-02-19 [2] CRAN (R 4.4.1)
## genoCN 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genomation 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genomationData 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GenomAutomorphism 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomeInfoDb 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomeInfoDbData 1.2.13 2024-10-01 [2] Bioconductor
## genomeIntervals 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genomes 3.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genomewidesnp5Crlmm 1.0.6 2024-09-26 [2] local
## genomewidesnp6Crlmm 1.0.7 2024-09-26 [2] Bioconductor
## GenomicAlignments 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicDataCommons 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicDistributions 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicDistributionsData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicFeatures 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicFiles 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## genomicInstability 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicInteractionNodes 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicInteractions 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicOZone 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicPlot 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicRanges 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicScores 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicState 0.99.15 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicSuperSignature 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenomicTools.fileHandler 0.1.5.9 2020-03-05 [2] CRAN (R 4.4.1)
## GenomicTuples 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenProSeq 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GenSA 1.1.14.1 2024-09-21 [2] CRAN (R 4.4.1)
## GenVisR 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeoDiff 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GEOexplorer 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GEOfastq 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geomeTriD 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geometries 0.2.4 2024-01-15 [2] CRAN (R 4.4.1)
## geometry 0.5.0 2024-08-31 [2] CRAN (R 4.4.1)
## GeomxTools 3.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeoMxWorkflows 1.11.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## GEOquery 2.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## geosphere 1.5-20 2024-10-04 [2] CRAN (R 4.4.1)
## GEOsubmission 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GeoTcgaData 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gep2pep 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gert 2.1.4 2024-10-14 [2] CRAN (R 4.4.1)
## getDEE2 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## getopt 1.20.4 2023-10-01 [2] CRAN (R 4.4.1)
## GetoptLong 1.0.5 2020-12-15 [2] CRAN (R 4.4.1)
## getPass 0.2-4 2023-12-10 [2] CRAN (R 4.4.1)
## GeuvadisTranscriptExpr 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## geva 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GEWIST 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GFA 1.0.5 2023-10-21 [2] CRAN (R 4.4.1)
## gg4way 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggalluvial 0.12.5 2023-02-22 [2] CRAN (R 4.4.1)
## GGally 2.2.1 2024-02-14 [2] CRAN (R 4.4.1)
## ggalt 0.4.0 2017-02-15 [2] CRAN (R 4.4.1)
## gganimate 1.0.9 2024-02-27 [2] CRAN (R 4.4.1)
## ggarchery 0.4.3 2024-03-28 [2] CRAN (R 4.4.1)
## ggbeeswarm 0.7.2 2023-04-29 [2] CRAN (R 4.4.1)
## ggbio 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggbump 0.1.0 2020-04-24 [2] CRAN (R 4.4.1)
## ggcorrplot 0.1.4.1 2023-09-05 [2] CRAN (R 4.4.1)
## ggcyto 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggdendro 0.2.0 2024-02-23 [2] CRAN (R 4.4.1)
## ggdist 3.3.2 2024-03-05 [2] CRAN (R 4.4.1)
## ggeffects 1.7.2 2024-10-13 [2] CRAN (R 4.4.1)
## ggExtra 0.10.1 2023-08-21 [2] CRAN (R 4.4.1)
## ggfittext 0.10.2 2024-02-01 [2] CRAN (R 4.4.1)
## ggforce 0.4.2 2024-02-19 [2] CRAN (R 4.4.1)
## ggformula 0.12.0 2023-11-09 [2] CRAN (R 4.4.1)
## ggfortify 0.4.17 2024-04-17 [2] CRAN (R 4.4.1)
## ggfun 0.1.7 2024-10-24 [2] CRAN (R 4.4.1)
## gggenes 0.5.1 2023-09-05 [2] CRAN (R 4.4.1)
## ggh4x 0.2.8 2024-01-23 [2] CRAN (R 4.4.1)
## gghalves 0.1.4 2022-11-20 [2] CRAN (R 4.4.1)
## gghighlight 0.4.1 2023-12-16 [2] CRAN (R 4.4.1)
## ggHoriPlot 1.0.1 2022-10-11 [2] CRAN (R 4.4.1)
## ggimage 0.3.3 2023-06-19 [2] CRAN (R 4.4.1)
## gginnards 0.2.0 2024-05-01 [2] CRAN (R 4.4.1)
## ggiraph 0.8.10 2024-05-17 [2] CRAN (R 4.4.1)
## ggkegg 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggm 2.5.1 2024-01-25 [2] CRAN (R 4.4.1)
## ggmanh 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggmcmc 1.5.1.1 2021-02-10 [2] CRAN (R 4.4.1)
## ggmsa 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggnetwork 0.5.13 2024-02-14 [2] CRAN (R 4.4.1)
## ggnewscale 0.5.0 2024-07-19 [2] CRAN (R 4.4.1)
## GGPA 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggpattern 1.1.1 2024-06-04 [2] CRAN (R 4.4.1)
## ggplot.multistats 1.0.1 2024-09-25 [2] CRAN (R 4.4.1)
## ggplot2 3.5.1 2024-04-23 [2] CRAN (R 4.4.1)
## ggplotify 0.1.2 2023-08-09 [2] CRAN (R 4.4.1)
## ggpmisc 0.6.0 2024-06-28 [2] CRAN (R 4.4.1)
## ggpointdensity 0.1.0 2019-08-28 [2] CRAN (R 4.4.1)
## ggpp 0.5.8-1 2024-07-01 [2] CRAN (R 4.4.1)
## ggpubr 0.6.0 2023-02-10 [2] CRAN (R 4.4.1)
## ggraph 2.2.1 2024-03-07 [2] CRAN (R 4.4.1)
## ggrastr 1.0.2 2023-06-01 [2] CRAN (R 4.4.1)
## ggrepel 0.9.6 2024-09-07 [2] CRAN (R 4.4.1)
## ggridges 0.5.6 2024-01-23 [2] CRAN (R 4.4.1)
## ggsc 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggsci 3.2.0 2024-06-18 [2] CRAN (R 4.4.1)
## ggseqalign 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggseqlogo 0.2 2024-02-09 [2] CRAN (R 4.4.1)
## ggside 0.3.1 2024-03-01 [2] CRAN (R 4.4.1)
## ggsignif 0.6.4 2022-10-13 [2] CRAN (R 4.4.1)
## ggspavis 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggstar 1.0.4 2022-11-08 [2] CRAN (R 4.4.1)
## ggstats 0.7.0 2024-09-22 [2] CRAN (R 4.4.1)
## ggsurvfit 1.1.0 2024-05-08 [2] CRAN (R 4.4.1)
## ggtangle 0.0.3 2024-10-24 [2] CRAN (R 4.4.1)
## ggtern 3.5.0 2024-03-24 [2] CRAN (R 4.4.1)
## ggtext 0.1.2 2022-09-16 [2] CRAN (R 4.4.1)
## ggthemes 5.1.0 2024-02-10 [2] CRAN (R 4.4.1)
## ggtree 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggtreeDendro 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggtreeExtra 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggtreeSpace 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ggupset 0.4.0 2024-06-24 [2] CRAN (R 4.4.1)
## ggvenn 0.1.10 2023-03-31 [2] CRAN (R 4.4.1)
## ggVennDiagram 1.5.2 2024-02-20 [2] CRAN (R 4.4.1)
## ggvis 0.4.9 2024-02-05 [2] CRAN (R 4.4.1)
## ggwordcloud 0.6.2 2024-05-30 [2] CRAN (R 4.4.1)
## gh 1.4.1 2024-03-28 [2] CRAN (R 4.4.1)
## GIGSEA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GIGSEAdata 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ginmappeR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gINTomics 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## girafe 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## git2r 0.35.0 2024-10-20 [2] CRAN (R 4.4.1)
## gitcreds 0.1.2 2022-09-08 [2] CRAN (R 4.4.1)
## GLAD 2.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GladiaTOX 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## glasso 1.11 2019-10-01 [2] CRAN (R 4.4.1)
## gld 2.6.6 2022-10-23 [2] CRAN (R 4.4.1)
## Glimma 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## glm2 1.2.1 2018-08-11 [2] CRAN (R 4.4.1)
## glmGamPoi 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## glmmSeq 0.5.5 2022-10-08 [2] CRAN (R 4.4.1)
## glmmTMB 1.1.10 2024-09-26 [2] CRAN (R 4.4.1)
## glmnet 4.1-8 2023-08-22 [2] CRAN (R 4.4.1)
## glmnetUtils 1.1.9 2023-09-10 [2] CRAN (R 4.4.1)
## glmpca 0.2.0 2020-07-18 [2] CRAN (R 4.4.1)
## glmSparseNet 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GlobalAncova 4.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GlobalOptions 0.1.2 2020-06-10 [2] CRAN (R 4.4.1)
## globals 0.16.3 2024-03-08 [2] CRAN (R 4.4.1)
## globalSeq 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## globaltest 5.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GloScope 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## glue 1.8.0 2024-09-30 [2] CRAN (R 4.4.1)
## gmapR 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GmicR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gmm 1.8 2023-06-06 [2] CRAN (R 4.4.1)
## gmodels 2.19.1 2024-03-06 [2] CRAN (R 4.4.1)
## gmoviz 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gmp 0.7-5 2024-08-23 [2] CRAN (R 4.4.1)
## GMRP 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GNET2 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gnm 1.1-5 2023-09-16 [2] CRAN (R 4.4.1)
## GNOSIS 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GO.db 3.20.0 2024-10-01 [2] Bioconductor
## GOexpress 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GoFKernel 2.1-1 2018-05-26 [2] CRAN (R 4.4.1)
## goftest 1.2-3 2021-10-07 [2] CRAN (R 4.4.1)
## GOfuncR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## golem 0.5.1 2024-08-27 [2] CRAN (R 4.4.1)
## golubEsets 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## googleAuthR 2.0.2 2024-05-22 [2] CRAN (R 4.4.1)
## googledrive 2.1.1 2023-06-11 [2] CRAN (R 4.4.1)
## googlesheets4 1.1.1 2023-06-11 [2] CRAN (R 4.4.1)
## googleVis 0.7.3 2024-05-25 [2] CRAN (R 4.4.1)
## GOpro 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## goProfiles 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GOSemSim 2.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## goseq 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## goSorensen 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## goSTAG 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GOstats 2.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GOTHiC 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## goTools 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gower 1.0.1 2022-12-22 [2] CRAN (R 4.4.1)
## GPA 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gpaExample 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GPArotation 2024.3-1 2024-03-02 [2] CRAN (R 4.4.1)
## gplots 3.2.0 2024-10-05 [2] CRAN (R 4.4.1)
## gpls 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gProfileR 0.7.0 2019-11-04 [2] CRAN (R 4.4.1)
## gprofiler2 0.2.3 2024-02-23 [2] CRAN (R 4.4.1)
## gpuMagic 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GrafGen 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gRain 1.4.5 2024-10-17 [2] CRAN (R 4.4.1)
## GRaNIE 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## granulator 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## graper 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## graph 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GraphAlignment 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GraphAT 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## graphics * 4.4.1 2024-09-25 [3] local
## graphite 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## graphlayouts 1.2.0 2024-09-24 [2] CRAN (R 4.4.1)
## GraphPAC 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## grasp2db 1.1.0 2024-09-26 [2] local
## gRbase 2.0.3 2024-10-22 [2] CRAN (R 4.4.1)
## grDevices * 4.4.1 2024-09-25 [3] local
## GRENITS 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GreyListChIP 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## grid 4.4.1 2024-09-25 [3] local
## gridBase 0.4-7 2014-02-24 [2] CRAN (R 4.4.1)
## gridExtra 2.3 2017-09-09 [2] CRAN (R 4.4.1)
## gridGraphics 0.5-1 2020-12-13 [2] CRAN (R 4.4.1)
## gridpattern 1.2.2 2024-06-03 [2] CRAN (R 4.4.1)
## gridSVG 1.7-5 2023-03-09 [2] CRAN (R 4.4.1)
## gridtext 0.1.5 2022-09-16 [2] CRAN (R 4.4.1)
## grImport 0.9-7 2023-03-09 [2] CRAN (R 4.4.1)
## grImport2 0.3-3 2024-07-30 [2] CRAN (R 4.4.1)
## GRmetrics 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## grndata 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## groHMM 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## groupdata2 2.0.3 2023-06-18 [2] CRAN (R 4.4.1)
## grr 0.9.5 2016-08-26 [2] CRAN (R 4.4.1)
## GSA 1.03.3 2024-04-20 [2] CRAN (R 4.4.1)
## GSALightning 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSAR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSBenchMark 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GSCA 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gscreend 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSE103322 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GSE13015 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GSE159526 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GSE62944 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GSEABase 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSEABenchmarkeR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSEAlm 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSEAmining 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gsean 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSgalgoR 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gsignal 0.3-7 2024-09-11 [2] CRAN (R 4.4.1)
## gsl 2.1-8 2023-01-24 [2] CRAN (R 4.4.1)
## gsmoothr 0.1.7 2014-06-10 [2] CRAN (R 4.4.1)
## gson 0.1.0 2023-03-07 [2] CRAN (R 4.4.1)
## GSReg 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSRI 2.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gss 2.2-8 2024-10-11 [2] CRAN (R 4.4.1)
## gstat 2.1-2 2024-09-05 [2] CRAN (R 4.4.1)
## gsubfn 0.7 2018-03-16 [2] CRAN (R 4.4.1)
## GSVA 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GSVAdata 1.41.5 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## gt 0.11.1 2024-10-04 [2] CRAN (R 4.4.1)
## gtable 0.3.6 2024-10-25 [2] CRAN (R 4.4.1)
## gtools 3.9.5 2023-11-20 [2] CRAN (R 4.4.1)
## gtrellis 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GUIDEseq 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Guitar 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GUniFrac 1.8 2023-09-14 [2] CRAN (R 4.4.1)
## Gviz 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GWAS.BAYES 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gwascat 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gwascatData 0.99.6 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## GWASdata 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## GWASExactHW 1.2 2024-03-12 [2] CRAN (R 4.4.1)
## gwasrapidd 0.99.17 2023-12-15 [2] CRAN (R 4.4.1)
## GWASTools 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gwasurvivr 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## GWENA 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## gypsum 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## h5vc 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## h5vcData 2.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapFabia 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## haplo.stats 1.9.7 2024-09-19 [2] CRAN (R 4.4.1)
## hapmap100khind 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapmap100kxba 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapmap500knsp 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapmap500ksty 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapmapsnp5 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hapmapsnp6 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## harbChIP 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hardhat 1.4.0 2024-06-02 [2] CRAN (R 4.4.1)
## HardyWeinberg 1.7.8 2024-04-06 [2] CRAN (R 4.4.1)
## Harman 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HarmanData 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## harmonicmeanp 3.0.1 2024-01-17 [2] CRAN (R 4.4.1)
## HarmonizedTCGAData 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HarmonizR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## harmony 1.2.1 2024-08-27 [2] CRAN (R 4.4.1)
## Harshlight 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hash 2.2.6.3 2023-08-19 [2] CRAN (R 4.4.1)
## haven 2.5.4 2023-11-30 [2] CRAN (R 4.4.1)
## hca 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HCAData 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HCATonsilData 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HD2013SGI 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HDCI 1.0-2 2017-06-06 [2] CRAN (R 4.4.1)
## HDCytoData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HDF5Array 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hdf5r 1.3.11 2024-07-07 [2] CRAN (R 4.4.1)
## HDInterval 0.2.4 2022-11-17 [2] CRAN (R 4.4.1)
## hdrcde 3.4 2021-01-18 [2] CRAN (R 4.4.1)
## HDTD 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hdxmsqc 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## healthyControlsPresenceChecker 1.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## healthyFlowData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## heatmap3 1.1.9 2021-01-06 [2] CRAN (R 4.4.1)
## heatmaply 1.5.0 2023-10-06 [2] CRAN (R 4.4.1)
## heatmaps 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Heatplus 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HEEBOdata 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HelloRanges 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HelloRangesData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HELP 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HEM 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## heplots 1.7.0 2024-05-02 [2] CRAN (R 4.4.1)
## here 1.0.1 2020-12-13 [2] CRAN (R 4.4.1)
## hermes 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HERON 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Herper 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hexbin 1.28.4 2024-09-04 [2] CRAN (R 4.4.1)
## HGC 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hgfocuscdf 2.18.0 2024-09-26 [2] Bioconductor
## hgfocusprobe 2.18.0 2024-09-26 [2] Bioconductor
## HGNChelper 0.8.14 2024-05-18 [2] CRAN (R 4.4.1)
## hgu133a.db 3.13.0 2024-09-26 [2] Bioconductor
## hgu133a2.db 3.13.0 2024-09-26 [2] Bioconductor
## hgu133abarcodevecs 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hgu133acdf 2.18.0 2024-09-26 [2] Bioconductor
## hgu133afrmavecs 1.5.0 2024-09-26 [2] Bioconductor
## hgu133aprobe 2.18.0 2024-09-26 [2] Bioconductor
## hgu133atagcdf 2.18.0 2024-09-26 [2] Bioconductor
## hgu133atagprobe 2.18.0 2024-09-26 [2] Bioconductor
## hgu133plus2.db 3.13.0 2024-09-26 [2] Bioconductor
## hgu133plus2barcodevecs 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hgu133plus2cdf 2.18.0 2024-09-26 [2] Bioconductor
## hgu133plus2CellScore 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hgu133plus2frmavecs 1.5.0 2024-10-01 [2] Bioconductor
## hgu133plus2probe 2.18.0 2024-09-26 [2] Bioconductor
## hgu2beta7 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hgu95a.db 3.13.0 2024-09-26 [2] Bioconductor
## hgu95acdf 2.18.0 2024-09-26 [2] Bioconductor
## hgu95av2 2.2.0 2024-09-26 [2] Bioconductor
## hgu95av2.db 3.13.0 2024-09-26 [2] Bioconductor
## hgu95av2cdf 2.18.0 2024-09-26 [2] Bioconductor
## hgu95av2probe 2.18.0 2024-09-26 [2] Bioconductor
## hiAnnotator 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HIBAG 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiBED 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HicAggR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiCBricks 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiCcompare 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiCDataHumanIMR90 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HiCDataLymphoblast 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HiCDCPlus 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiCDOC 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiCExperiment 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiContacts 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiContactsData 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HiCool 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hicVennDiagram 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiddenMarkov 1.8-13 2021-04-27 [2] CRAN (R 4.4.1)
## hierGWAS 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hierinf 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## highcharter 0.9.4 2022-01-03 [2] CRAN (R 4.4.1)
## HighlyReplicatedRNASeq 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## highr 0.11 2024-05-26 [2] CRAN (R 4.4.1)
## highthroughputassays 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## Hiiragi2013 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HilbertCurve 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HilbertVis 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HilbertVisGUI 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiLDA 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hipathia 3.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HIPPO 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hiReadsProcessor 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HIREewas 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HiTC 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HIVcDNAvantWout03 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HiveR 0.4.0 2024-07-18 [2] CRAN (R 4.4.1)
## hmdbQuery 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Hmisc 5.2-0 2024-10-28 [2] CRAN (R 4.4.1)
## HMM 1.0.1 2022-03-23 [2] CRAN (R 4.4.1)
## HMMcopy 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HMP16SData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## HMP2Data 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hms 1.1.3 2023-03-21 [2] CRAN (R 4.4.1)
## HoloFoodR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Homo.sapiens 1.3.1 2024-09-26 [2] Bioconductor
## homologene 1.4.68.19.3.27 2019-03-28 [2] CRAN (R 4.4.1)
## homosapienDEE2CellScore 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hoodscanR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hopach 2.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HPAanalyze 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hpAnnot 1.1.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## hpar 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HPiP 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hrbrthemes 0.8.7 2024-03-04 [2] CRAN (R 4.4.1)
## HSMMSingleCell 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## htm2txt 2.2.2 2022-06-12 [2] CRAN (R 4.4.1)
## htmlTable 2.4.3 2024-07-21 [2] CRAN (R 4.4.1)
## htmltools 0.5.8.1 2024-04-04 [2] CRAN (R 4.4.1)
## HTMLUtils 0.1.9 2024-01-25 [2] CRAN (R 4.4.1)
## htmlwidgets 1.6.4 2023-12-06 [2] CRAN (R 4.4.1)
## HTqPCR 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HTSCluster 2.0.11 2023-09-05 [2] CRAN (R 4.4.1)
## HTSeqGenie 4.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HTSFilter 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## httpcache 1.2.0 2021-01-10 [2] CRAN (R 4.4.1)
## httpcode 0.3.0 2020-04-10 [2] CRAN (R 4.4.1)
## httptest 4.2.2 2024-01-23 [2] CRAN (R 4.4.1)
## httptest2 1.1.0 2024-04-26 [2] CRAN (R 4.4.1)
## httpuv 1.6.15 2024-03-26 [2] CRAN (R 4.4.1)
## httr 1.4.7 2023-08-15 [2] CRAN (R 4.4.1)
## httr2 1.0.5 2024-09-26 [2] CRAN (R 4.4.1)
## hu6800.db 3.13.0 2024-09-26 [2] Bioconductor
## HuBMAPR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HubPub 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hues 0.2.0 2019-12-01 [2] CRAN (R 4.4.1)
## huge 1.3.5 2021-06-30 [2] CRAN (R 4.4.1)
## hugene10sttranscriptcluster.db 8.8.0 2024-10-01 [2] Bioconductor
## human.db0 3.20.0 2024-10-01 [2] Bioconductor
## human370v1cCrlmm 1.0.2 2024-09-26 [2] Bioconductor
## human610quadv1bCrlmm 1.0.3 2024-09-26 [2] Bioconductor
## HumanAffyData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## humanCHRLOC 2.1.6 2024-09-26 [2] Bioconductor
## humanStemCell 0.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## hummingbird 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hunspell 3.0.5 2024-10-04 [2] CRAN (R 4.4.1)
## hwriter 1.3.2.1 2022-04-08 [2] CRAN (R 4.4.1)
## HybridExpress 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## HybridMTest 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hypeR 2.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hyperdraw 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## hypergraph 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iASeq 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iasva 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iBBiG 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ibh 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iBMQ 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iC10 2.0.2 2024-07-19 [2] CRAN (R 4.4.1)
## iC10TrainingData 2.0.1 2024-07-16 [2] CRAN (R 4.4.1)
## ica 1.0-3 2022-07-08 [2] CRAN (R 4.4.1)
## iCARE 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iCellR 1.6.7 2024-01-29 [2] CRAN (R 4.4.1)
## Icens 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## icetea 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iCheck 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iChip 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iClusterPlus 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iCNV 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iCOBRA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ICS 1.4-1 2023-09-21 [2] CRAN (R 4.4.1)
## ICSNP 1.1-2 2023-09-18 [2] CRAN (R 4.4.1)
## ideal 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IdeoViz 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## idiogram 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IDPmisc 1.1.21 2024-02-08 [2] CRAN (R 4.4.1)
## idpr 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## idr 1.3 2022-06-21 [2] CRAN (R 4.4.1)
## idr2d 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ids 1.0.1 2017-05-31 [2] CRAN (R 4.4.1)
## IFAA 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iGC 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IgGeneUsage 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## igraph 2.1.1 2024-10-19 [2] CRAN (R 4.4.1)
## igraphdata 1.0.1 2015-07-13 [2] CRAN (R 4.4.1)
## igvR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## igvShiny 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IHW 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IHWpaper 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Illumina450ProbeVariants.db 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## IlluminaDataTestFiles 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## IlluminaHumanMethylation450kanno.ilmn12.hg19 0.6.1 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylation450kmanifest 0.4.0 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylationEPICanno.ilm10b2.hg19 0.6.0 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylationEPICanno.ilm10b4.hg19 0.6.0 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylationEPICmanifest 0.3.0 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylationEPICv2anno.20a1.hg38 1.0.0 2024-09-26 [2] Bioconductor
## IlluminaHumanMethylationEPICv2manifest 1.0.0 2024-09-26 [2] Bioconductor
## illuminaHumanv1.db 1.26.0 2024-09-26 [2] Bioconductor
## illuminaHumanv2.db 1.26.0 2024-10-01 [2] Bioconductor
## illuminaHumanv3.db 1.26.0 2024-09-26 [2] Bioconductor
## illuminaHumanv4.db 1.26.0 2024-09-26 [2] Bioconductor
## illuminaio 0.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ILoReg 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## imager 1.0.2 2024-05-13 [2] CRAN (R 4.4.1)
## IMAS 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## imcdatasets 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## imcRtools 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iml 0.11.3 2024-04-27 [2] CRAN (R 4.4.1)
## IMMAN 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## immApex 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## immunoClust 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## immunogenViewer 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## immunotation 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## imp4p 1.2 2021-09-02 [2] CRAN (R 4.4.1)
## IMPCdata 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## import 1.3.2 2024-01-21 [2] CRAN (R 4.4.1)
## impute 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## imputeLCMD 2.1 2022-06-10 [2] CRAN (R 4.4.1)
## inaparc 1.2.0 2022-06-16 [2] CRAN (R 4.4.1)
## INDEED 2.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ineq 0.2-13 2014-07-21 [2] CRAN (R 4.4.1)
## iNETgrate 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iNEXT 3.0.1 2024-03-24 [2] CRAN (R 4.4.1)
## infercnv 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## infinityFlow 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Informeasure 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## infotheo 1.2.0.1 2022-04-08 [2] CRAN (R 4.4.1)
## ini 0.3.1 2018-05-20 [2] CRAN (R 4.4.1)
## inline 0.3.19 2021-05-31 [2] CRAN (R 4.4.1)
## InPAS 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## INPower 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## insight 0.20.5 2024-10-02 [2] CRAN (R 4.4.1)
## INSPEcT 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## instantiate 0.2.3 2024-10-02 [2] CRAN (R 4.4.1)
## INTACT 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## InTAD 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## intansv 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## interacCircos 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## InteractionSet 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## InteractiveComplexHeatmap 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## interactiveDisplay 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## interactiveDisplayBase 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## InterCellar 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IntEREst 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## intergraph 2.0-4 2024-02-01 [2] CRAN (R 4.4.1)
## interp 1.1-6 2024-01-26 [2] CRAN (R 4.4.1)
## intervals 0.15.5 2024-08-23 [2] CRAN (R 4.4.1)
## IntramiRExploreR 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## intrinsicDimension 1.2.0 2019-06-07 [2] CRAN (R 4.4.1)
## inum 1.0-5 2023-03-09 [2] CRAN (R 4.4.1)
## InvariantCausalPrediction 0.8 2019-11-10 [2] CRAN (R 4.4.1)
## invgamma 1.1 2017-05-07 [2] CRAN (R 4.4.1)
## IONiseR 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iPAC 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iPath 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ipdDb 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ipflasso 1.1 2019-12-10 [2] CRAN (R 4.4.1)
## IPO 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ipred 0.9-15 2024-07-18 [2] CRAN (R 4.4.1)
## IRanges 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IRdisplay 1.1 2022-01-04 [2] CRAN (R 4.4.1)
## IRkernel 1.3.2 2023-01-20 [2] CRAN (R 4.4.1)
## irlba 2.3.5.1 2022-10-03 [2] CRAN (R 4.4.1)
## irr 0.84.1 2019-01-26 [2] CRAN (R 4.4.1)
## isa2 0.3.6 2023-02-21 [2] CRAN (R 4.4.1)
## ISAnalytics 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEE 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEde 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEfier 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEhex 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEhub 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEindex 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEpathways 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEtree 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSEEu 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iSeq 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ISLET 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Iso 0.0-21 2023-10-02 [2] CRAN (R 4.4.1)
## isoband 0.2.7 2022-12-20 [2] CRAN (R 4.4.1)
## isobar 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IsoBayes 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ISOcodes 2024.02.12 2024-02-12 [2] CRAN (R 4.4.1)
## IsoCorrectoR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IsoCorrectoRGUI 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IsoformSwitchAnalyzeR 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ISoLDE 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## isomiRs 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## isotree 0.6.1-1 2024-03-27 [2] CRAN (R 4.4.1)
## isva 1.9 2017-01-14 [2] CRAN (R 4.4.1)
## ITALICS 2.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ITALICSData 2.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## iterativeBMA 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iterativeBMAsurv 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## iterators 1.0.14 2022-02-05 [2] CRAN (R 4.4.1)
## itertools 0.1-3 2014-03-12 [2] CRAN (R 4.4.1)
## IVAS 2.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ivygapSE 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## IWTomics 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Iyer517 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## JADE 2.0-4 2023-09-17 [2] CRAN (R 4.4.1)
## janeaustenr 1.0.0 2022-08-26 [2] CRAN (R 4.4.1)
## janitor 2.2.0 2023-02-02 [2] CRAN (R 4.4.1)
## JASPAR2014 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## JASPAR2016 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## JASPAR2018 1.1.1 2024-09-26 [2] Bioconductor
## JASPAR2020 0.99.8 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## JASPAR2022 0.99.8 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## JASPAR2024 0.99.6 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## JohnsonKinaseData 1.1.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## jomo 2.7-6 2023-04-15 [2] CRAN (R 4.4.1)
## jose 1.2.1 2024-10-04 [2] CRAN (R 4.4.1)
## jpeg 0.1-10 2022-11-29 [2] CRAN (R 4.4.1)
## jquerylib 0.1.4 2021-04-26 [2] CRAN (R 4.4.1)
## jsonlite 1.8.9 2024-09-20 [2] CRAN (R 4.4.1)
## jsonvalidate 1.3.2 2021-11-03 [2] CRAN (R 4.4.1)
## juicyjuice 0.1.0 2022-11-10 [2] CRAN (R 4.4.1)
## kableExtra 1.4.0 2024-01-24 [2] CRAN (R 4.4.1)
## karyoploteR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## katdetectr 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KBoost 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KCsmart 2.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## kde1d 1.0.7 2024-01-26 [2] CRAN (R 4.4.1)
## kebabs 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KEGGandMetacoreDzPathwaysGEO 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## KEGGdzPathwaysGEO 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## KEGGgraph 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KEGGlincs 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## keggorthology 2.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KEGGREST 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Kendall 2.2.1 2022-03-20 [2] CRAN (R 4.4.1)
## keras 2.15.0 2024-04-20 [2] CRAN (R 4.4.1)
## KernelKnn 1.1.5 2023-01-06 [2] CRAN (R 4.4.1)
## kernlab 0.9-33 2024-08-13 [2] CRAN (R 4.4.1)
## KernSmooth 2.23-24 2024-05-17 [3] CRAN (R 4.4.1)
## keys 0.1.1 2021-07-11 [2] CRAN (R 4.4.1)
## kidpack 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## kinship2 1.9.6.1 2024-03-24 [2] CRAN (R 4.4.1)
## KinSwingR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## kknn 1.3.1 2016-03-26 [2] CRAN (R 4.4.1)
## klaR 1.7-3 2023-12-13 [2] CRAN (R 4.4.1)
## km.ci 0.5-6 2022-04-06 [2] CRAN (R 4.4.1)
## kmcut 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## kmer 1.1.2 2019-05-20 [2] CRAN (R 4.4.1)
## KMsurv 0.1-5 2012-12-03 [2] CRAN (R 4.4.1)
## knitcitations 1.0.12 2021-01-10 [2] CRAN (R 4.4.1)
## knitr 1.48 2024-07-07 [2] CRAN (R 4.4.1)
## knitrBootstrap 1.0.3 2024-02-06 [2] CRAN (R 4.4.1)
## knn.covertree 1.0 2019-10-28 [2] CRAN (R 4.4.1)
## knnmi 1.0 2024-04-02 [2] CRAN (R 4.4.1)
## KnowSeq 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## knowYourCG 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## KOdata 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## kohonen 3.0.12 2023-06-09 [2] CRAN (R 4.4.1)
## koinar 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## koRpus 0.13-8 2021-05-17 [2] CRAN (R 4.4.1)
## koRpus.lang.en 0.1-4 2020-10-24 [2] CRAN (R 4.4.1)
## kpeaks 1.1.0 2020-02-08 [2] CRAN (R 4.4.1)
## kpmt 0.1.0 2017-08-01 [2] CRAN (R 4.4.1)
## kriging 1.2 2022-06-24 [2] CRAN (R 4.4.1)
## ks 1.14.3 2024-09-20 [2] CRAN (R 4.4.1)
## kSamples 1.2-10 2023-10-07 [2] CRAN (R 4.4.1)
## labdsv 2.1-0 2023-04-10 [2] CRAN (R 4.4.1)
## labeling 0.4.3 2023-08-29 [2] CRAN (R 4.4.1)
## labelled 2.13.0 2024-04-23 [2] CRAN (R 4.4.1)
## LACE 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## laeken 0.5.3 2024-01-25 [2] CRAN (R 4.4.1)
## lambda.r 1.2.4 2019-09-18 [2] CRAN (R 4.4.1)
## LambertW 0.6.9-1 2023-11-30 [2] CRAN (R 4.4.1)
## lamW 2.2.4 2024-06-17 [2] CRAN (R 4.4.1)
## LaplacesDemon 16.1.6 2021-07-09 [2] CRAN (R 4.4.1)
## lapmix 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lars 1.3 2022-04-13 [2] CRAN (R 4.4.1)
## later 1.3.2 2023-12-06 [2] CRAN (R 4.4.1)
## latex2exp 0.9.6 2022-11-28 [2] CRAN (R 4.4.1)
## lattice 0.22-6 2024-03-20 [3] CRAN (R 4.4.1)
## latticeExtra 0.6-30 2022-07-04 [2] CRAN (R 4.4.1)
## lava 1.8.0 2024-03-05 [2] CRAN (R 4.4.1)
## lavaan 0.6-19 2024-09-26 [2] CRAN (R 4.4.1)
## lazyeval 0.2.2 2019-03-15 [2] CRAN (R 4.4.1)
## LBE 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lbfgs 1.2.1.2 2022-06-23 [2] CRAN (R 4.4.1)
## ldblock 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LDlinkR 1.4.0 2024-04-10 [2] CRAN (R 4.4.1)
## LEA 3.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## leaps 3.2 2024-06-10 [2] CRAN (R 4.4.1)
## learnr 0.11.5 2023-09-28 [2] CRAN (R 4.4.1)
## LedPred 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## leeBamViews 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lefser 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LegATo 0.99.11 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## leiden 0.4.3.1 2023-11-17 [2] CRAN (R 4.4.1)
## leidenAlg 1.1.4 2024-10-17 [2] CRAN (R 4.4.1)
## leidenbase 0.1.31 2024-09-25 [2] CRAN (R 4.4.1)
## lemur 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## les 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## leukemiasEset 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## levi 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lexicon 1.2.1 2019-03-21 [2] CRAN (R 4.4.1)
## lfa 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lfda 1.1.3 2019-07-31 [2] CRAN (R 4.4.1)
## lgr 0.4.4 2022-09-05 [2] CRAN (R 4.4.1)
## lhs 1.2.0 2024-06-30 [2] CRAN (R 4.4.1)
## libcoin 1.0-10 2023-09-27 [2] CRAN (R 4.4.1)
## LiblineaR 2.10-24 2024-09-13 [2] CRAN (R 4.4.1)
## LiebermanAidenHiC2009 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lifecycle 1.0.4 2023-11-07 [2] CRAN (R 4.4.1)
## liftOver 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## LIM 1.4.7.1 2024-02-06 [2] CRAN (R 4.4.1)
## limma 3.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## limmaGUI 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## limpca 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## limSolve 1.5.7.1 2024-02-05 [2] CRAN (R 4.4.1)
## lineagespot 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## linkcomm 1.0-14 2021-02-04 [2] CRAN (R 4.4.1)
## LinkHD 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Linnorm 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## linprog 0.9-4 2022-03-09 [2] CRAN (R 4.4.1)
## LinTInd 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lintr 3.1.2 2024-03-25 [2] CRAN (R 4.4.1)
## lionessR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lipidr 2.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LiquidAssociation 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lisaClust 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## listenv 0.9.1 2024-01-29 [2] CRAN (R 4.4.1)
## ListerEtAlBSseq 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## listviewer 4.0.0 2023-09-30 [2] CRAN (R 4.4.1)
## lmdme 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lme4 1.1-35.5 2024-07-03 [2] CRAN (R 4.4.1)
## lmerTest 3.1-3 2020-10-23 [2] CRAN (R 4.4.1)
## lmodel2 1.7-3 2018-02-05 [2] CRAN (R 4.4.1)
## lmom 3.2 2024-09-30 [2] CRAN (R 4.4.1)
## Lmoments 1.3-1 2019-03-15 [2] CRAN (R 4.4.1)
## lmtest 0.9-40 2022-03-21 [2] CRAN (R 4.4.1)
## LOBSTAHS 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lobstr 1.1.2 2022-06-22 [2] CRAN (R 4.4.1)
## locfdr 1.1-8 2015-07-15 [2] CRAN (R 4.4.1)
## locfit 1.5-9.10 2024-06-24 [2] CRAN (R 4.4.1)
## loci2path 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## locStra 1.9 2022-04-12 [2] CRAN (R 4.4.1)
## log4r 0.4.4 2024-10-12 [2] CRAN (R 4.4.1)
## logger 0.4.0 2024-10-22 [2] CRAN (R 4.4.1)
## logging 0.10-108 2019-07-14 [2] CRAN (R 4.4.1)
## logicFS 2.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LogicReg 1.6.6 2023-08-08 [2] CRAN (R 4.4.1)
## logistf 1.26.0 2023-08-18 [2] CRAN (R 4.4.1)
## logitnorm 0.8.39 2024-01-24 [2] CRAN (R 4.4.1)
## logNormReg 0.5-0 2021-11-08 [2] CRAN (R 4.4.1)
## logr 1.3.8 2024-05-09 [2] CRAN (R 4.4.1)
## logspline 2.1.22 2024-05-10 [2] CRAN (R 4.4.1)
## lokern 1.1-12 2024-07-30 [2] CRAN (R 4.4.1)
## LOLA 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## longitudinal 1.1.13 2021-11-13 [2] CRAN (R 4.4.1)
## loo 2.8.0 2024-07-03 [2] CRAN (R 4.4.1)
## LoomExperiment 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LPE 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lpNet 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lpSolve 5.6.21 2024-09-12 [2] CRAN (R 4.4.1)
## lpSolveAPI 5.5.2.0-17.12 2024-07-19 [2] CRAN (R 4.4.1)
## lpsymphony 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LRBaseDbi 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LRcell 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LRcellTypeMarkers 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lsa 0.73.3 2022-05-09 [2] CRAN (R 4.4.1)
## LSD 4.1-0 2020-06-17 [2] CRAN (R 4.4.1)
## lsr 0.5.2 2021-12-01 [2] CRAN (R 4.4.1)
## lubridate 1.9.3 2023-09-27 [2] CRAN (R 4.4.1)
## lumi 2.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lumiBarnes 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lumiHumanAll.db 1.22.0 2024-09-26 [2] Bioconductor
## lumiHumanIDMapping 1.10.1 2024-09-26 [2] Bioconductor
## LungCancerACvsSCCGEO 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## LungCancerLines 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lungExpression 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## lute 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## lwgeom 0.2-14 2024-02-21 [2] CRAN (R 4.4.1)
## lydata 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## LymphoSeq 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## LymphoSeqDB 0.99.2 2024-09-26 [2] Bioconductor
## M3C 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## M3DExampleData 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## M3Drop 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## m6Aboost 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Maaslin2 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Macarron 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maCorrPlot 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## macrophage 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MACSdata 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MACSQuantifyR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MACSr 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## made4 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MADSEQ 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maEndToEnd 2.25.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## MafDb.1Kgenomes.phase1.hs37d5 3.10.0 2024-09-26 [2] Bioconductor
## MafDb.1Kgenomes.phase3.GRCh38 3.10.0 2024-09-26 [2] Bioconductor
## MafDb.1Kgenomes.phase3.hs37d5 3.10.0 2024-09-26 [2] Bioconductor
## MafDb.ExAC.r1.0.hs37d5 3.10.0 2024-09-26 [2] Bioconductor
## MafDb.gnomADex.r2.1.hs37d5 3.10.0 2024-09-26 [2] Bioconductor
## MafH5.gnomAD.v4.0.GRCh38 3.19.0 2024-09-26 [2] Bioconductor
## maftools 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MAGAR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MAGeCKFlute 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## magic 1.6-1 2022-11-16 [2] CRAN (R 4.4.1)
## magicaxis 2.4.5 2024-01-31 [2] CRAN (R 4.4.1)
## magick 2.8.5 2024-09-20 [2] CRAN (R 4.4.1)
## magpie 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## magrene 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## magrittr 2.0.3 2022-03-30 [2] CRAN (R 4.4.1)
## MAI 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MAIT 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## makecdfenv 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MALDIquant 1.22.3 2024-08-19 [2] CRAN (R 4.4.1)
## MALDIquantForeign 0.14.1 2024-01-22 [2] CRAN (R 4.4.1)
## mammaPrintData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## manipulateWidget 0.11.1 2021-10-05 [2] CRAN (R 4.4.1)
## MANOR 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MantelCorr 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MAPFX 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mapplots 1.5.2 2023-08-25 [2] CRAN (R 4.4.1)
## mapproj 1.2.11 2023-01-12 [2] CRAN (R 4.4.1)
## maPredictDSC 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maps 3.4.2 2023-12-15 [2] CRAN (R 4.4.1)
## mapscape 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maptree 1.4-8 2022-04-06 [2] CRAN (R 4.4.1)
## maqcExpression4plex 1.49.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MAQCsubset 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mariner 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## marinerData 1.5.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## markdown 1.13 2024-06-04 [2] CRAN (R 4.4.1)
## marr 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## marray 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## martini 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maser 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mashr 0.2.79 2023-10-18 [2] CRAN (R 4.4.1)
## maSigPro 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maskBAD 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MASS 7.3-61 2024-06-13 [3] CRAN (R 4.4.1)
## MassArray 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## massiR 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MassSpecWavelet 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MAST 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mastR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## matchBox 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## matchingR 1.3.3 2021-05-25 [2] CRAN (R 4.4.1)
## mathjaxr 1.6-0 2022-02-28 [2] CRAN (R 4.4.1)
## matlab 1.0.4.1 2024-07-01 [2] CRAN (R 4.4.1)
## Matrix 1.7-1 2024-10-18 [3] CRAN (R 4.4.1)
## matrixcalc 1.0-6 2022-09-14 [2] CRAN (R 4.4.1)
## MatrixCorrelation 0.10.0 2022-04-18 [2] CRAN (R 4.4.1)
## MatrixEQTL 2.3 2019-12-22 [2] CRAN (R 4.4.1)
## MatrixExtra 0.1.15 2024-01-22 [2] CRAN (R 4.4.1)
## MatrixGenerics 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MatrixModels 0.5-3 2023-11-06 [2] CRAN (R 4.4.1)
## MatrixQCvis 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MatrixRider 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## matrixStats 1.4.1 2024-09-08 [2] CRAN (R 4.4.1)
## matrixTests 0.2.3 2023-10-05 [2] CRAN (R 4.4.1)
## matter 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## maxLik 1.5-2.1 2024-03-24 [2] CRAN (R 4.4.1)
## maxstat 0.7-25 2017-03-02 [2] CRAN (R 4.4.1)
## MBA 0.1-2 2024-09-23 [2] CRAN (R 4.4.1)
## MBAmethyl 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MBASED 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MBCB 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MBECS 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mbest 0.6 2018-05-25 [2] CRAN (R 4.4.1)
## mbkmeans 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mboost 2.9-11 2024-08-22 [2] CRAN (R 4.4.1)
## mBPCR 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MBQN 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mbQTL 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MBttest 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MCbiclust 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mcbiopi 1.1.6 2018-10-06 [2] CRAN (R 4.4.1)
## MCL 1.0 2015-03-11 [2] CRAN (R 4.4.1)
## mclust 6.1.1 2024-04-29 [2] CRAN (R 4.4.1)
## mclustcomp 0.3.3 2021-06-13 [2] CRAN (R 4.4.1)
## mcmc 0.9-8 2023-11-16 [2] CRAN (R 4.4.1)
## MCMCglmm 2.36 2024-05-06 [2] CRAN (R 4.4.1)
## MCMCpack 1.7-1 2024-08-27 [2] CRAN (R 4.4.1)
## MCMCprecision 0.4.0 2019-12-05 [2] CRAN (R 4.4.1)
## mco 1.17 2024-08-19 [2] CRAN (R 4.4.1)
## mcr 1.3.3.1 2024-09-23 [2] CRAN (R 4.4.1)
## mCSEA 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mCSEAdata 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mcsurvdata 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mda 0.5-4 2023-06-23 [2] CRAN (R 4.4.1)
## mdendro 2.2.1 2024-01-09 [2] CRAN (R 4.4.1)
## mdp 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mdqc 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MDTS 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEAL 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MeasurementError.cor 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEAT 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEB 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mediation 4.5.0 2019-10-08 [2] CRAN (R 4.4.1)
## MEDIPS 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEDIPSData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MEDME 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEEBOdata 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mefa 3.2-9 2024-05-20 [2] CRAN (R 4.4.1)
## megadepth 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MEIGOR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Melissa 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## memes 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## memoise 2.0.1 2021-11-26 [2] CRAN (R 4.4.1)
## memuse 4.2-3 2023-01-24 [2] CRAN (R 4.4.1)
## MerfishData 1.7.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Mergeomics 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MeSHDbi 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## meshes 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## meshr 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MesKit 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MESS 0.5.12 2023-08-20 [2] CRAN (R 4.4.1)
## messina 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metabCombiner 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metabinR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetaboAnnotation 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetaboCoreUtils 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaboliteIDmapping 0.99.10 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## metabolomicsWorkbenchR 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metabomxtr 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetaboSignal 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaCCA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetaCycle 1.2.0 2019-04-18 [2] CRAN (R 4.4.1)
## MetaCyto 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metadat 1.2-0 2022-04-06 [2] CRAN (R 4.4.1)
## metafor 4.6-0 2024-03-28 [2] CRAN (R 4.4.1)
## metagene2 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metagenomeSeq 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetaGxBreast 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MetaGxOvarian 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MetaGxPancreas 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## metahdep 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaMA 3.1.3 2022-04-12 [2] CRAN (R 4.4.1)
## metaMS 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaMSdata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MetaNeighbor 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metap 1.11 2024-07-11 [2] CRAN (R 4.4.1)
## MetaPhOR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metapod 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metapone 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaRNASeq 1.0.7 2021-10-01 [2] CRAN (R 4.4.1)
## MetaScope 1.5.4 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## metaSeq 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metaseqR2 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetBrewer 0.2.0 2022-03-21 [2] CRAN (R 4.4.1)
## MetCirc 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methimpute 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methInheritSim 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methodical 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methods * 4.4.1 2024-09-25 [3] local
## MethPed 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethReg 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methrix 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethTargetedNGS 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethylAid 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethylAidData 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## methylationArrayAnalysis 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## methylCC 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylclock 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylclockData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## methylGSA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methyLImp2 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylInheritance 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylKit 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethylMix 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylMnM 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylPipe 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylscaper 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethylSeekR 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MethylSeqData 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## methylSig 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## methylumi 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetID 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetMashR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MetNet 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## metR 0.16.0 2024-10-14 [2] CRAN (R 4.4.1)
## Metrics 0.1.4 2018-07-09 [2] CRAN (R 4.4.1)
## mfa 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Mfuzz 2.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mgcv 1.9-1 2023-12-21 [3] CRAN (R 4.4.1)
## MGFM 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MGFR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MGLM 0.2.1 2022-04-13 [2] CRAN (R 4.4.1)
## MGnifyR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mgsa 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mgsub 1.7.3 2021-07-28 [2] CRAN (R 4.4.1)
## mhsmm 0.4.21 2023-08-23 [2] CRAN (R 4.4.1)
## mia 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miaSim 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miaViz 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mice 3.16.0 2023-06-05 [2] CRAN (R 4.4.1)
## miceadds 3.17-44 2024-01-09 [2] CRAN (R 4.4.1)
## MiChip 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## microbenchmark 1.5.0 2024-09-04 [2] CRAN (R 4.4.1)
## microbiome 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MicrobiomeBenchmarkData 1.7.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## microbiomeDASim 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## microbiomeDataSets 1.13.3 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## microbiomeExplorer 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## microbiomeMarker 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MicrobiomeProfiler 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MicrobiomeStat 1.2 2024-04-01 [2] CRAN (R 4.4.1)
## MicrobiotaProcess 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## microRNA 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## microRNAome 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## microSTASIS 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MICSQTL 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## midasHLA 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miloR 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mimager 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mime 0.12 2021-09-28 [2] CRAN (R 4.4.1)
## mina 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MineICA 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## minet 3.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## minfi 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## minfiData 0.51.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## minfiDataEPIC 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MinimumDistance 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## minionSummaryData 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## miniUI 0.1.1.1 2018-05-18 [2] CRAN (R 4.4.1)
## minpack.lm 1.2-4 2023-09-11 [2] CRAN (R 4.4.1)
## minqa 1.2.8 2024-08-17 [2] CRAN (R 4.4.1)
## minty 0.0.1 2024-05-22 [2] CRAN (R 4.4.1)
## MiPP 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miQC 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MIRA 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MiRaGE 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mirbase.db 1.2.0 2024-09-26 [2] Bioconductor
## miRBaseConverter 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRBaseVersions.db 1.1.0 2024-09-26 [2] Bioconductor
## miRcomp 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRcompData 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mirIntegrator 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MIRit 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRLAB 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mirna10cdf 2.18.0 2024-09-26 [2] Bioconductor
## miRNAmeConverter 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRNApath 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRNAtap 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRNAtap.db 0.99.10 2024-09-26 [2] Bioconductor
## miRNATarget 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## miRSM 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## miRspongeR 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mirTarRnaSeq 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## misc3d 0.9-1 2021-10-07 [2] CRAN (R 4.4.1)
## miscTools 0.6-28 2023-05-03 [2] CRAN (R 4.4.1)
## missForest 1.5 2022-04-14 [2] CRAN (R 4.4.1)
## missMDA 1.19 2023-11-17 [2] CRAN (R 4.4.1)
## missMethyl 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## missRows 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mistyR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mitch 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mitml 0.4-5 2023-03-08 [2] CRAN (R 4.4.1)
## mitoClone2 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mitools 2.4 2019-04-26 [2] CRAN (R 4.4.1)
## mixOmics 6.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mixsmsn 1.1-10 2021-10-06 [2] CRAN (R 4.4.1)
## mixsqp 0.3-54 2023-12-20 [2] CRAN (R 4.4.1)
## mixtools 2.0.0 2022-12-05 [2] CRAN (R 4.4.1)
## MKdescr 0.8 2022-11-05 [2] CRAN (R 4.4.1)
## MKinfer 1.2 2024-04-06 [2] CRAN (R 4.4.1)
## MKmisc 1.9 2022-11-19 [2] CRAN (R 4.4.1)
## mlapi 0.1.1 2022-04-24 [2] CRAN (R 4.4.1)
## mlbench 2.1-5 2024-05-02 [2] CRAN (R 4.4.1)
## MLInterfaces 1.86.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MLP 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mlr 2.19.2 2024-06-12 [2] CRAN (R 4.4.1)
## mlr3 0.21.1 2024-10-18 [2] CRAN (R 4.4.1)
## mlr3learners 0.8.0 2024-10-25 [2] CRAN (R 4.4.1)
## mlr3measures 1.0.0 2024-09-11 [2] CRAN (R 4.4.1)
## mlr3misc 0.15.1 2024-06-24 [2] CRAN (R 4.4.1)
## mlr3tuning 1.1.0 2024-10-27 [2] CRAN (R 4.4.1)
## mlrMBO 1.1.5.1 2022-07-04 [2] CRAN (R 4.4.1)
## MLSeq 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mltools 0.3.5 2018-05-12 [2] CRAN (R 4.4.1)
## mmand 1.6.3 2023-02-07 [2] CRAN (R 4.4.1)
## MMDiff2 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MMDiffBamSubset 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MMUPHin 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mnem 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mnormt 2.1.1 2022-09-26 [2] CRAN (R 4.4.1)
## moanin 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mobileRNA 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mockery 0.4.4 2023-09-26 [2] CRAN (R 4.4.1)
## mockr 0.2.1 2023-02-01 [2] CRAN (R 4.4.1)
## MODA 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ModCon 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## modeest 2.4.0 2019-11-18 [2] CRAN (R 4.4.1)
## ModelMetrics 1.2.2.2 2020-03-17 [2] CRAN (R 4.4.1)
## modelr 0.1.11 2023-03-22 [2] CRAN (R 4.4.1)
## modeltools 0.2-23 2020-03-05 [2] CRAN (R 4.4.1)
## Modstrings 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MOFA2 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MOFAdata 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MOGAMUN 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mogsa 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MoleculeExperiment 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MOMA 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## moments 0.14.1 2022-05-02 [2] CRAN (R 4.4.1)
## monaLisa 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## monocle 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MonoPoly 0.3-10 2019-04-24 [2] CRAN (R 4.4.1)
## Moonlight2R 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MoonlightR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mosaicCore 0.9.4.0 2023-11-05 [2] CRAN (R 4.4.1)
## mosaics 2.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mosaicsExample 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mosbi 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MOSClip 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mosdef 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MOSim 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Motif2Site 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## motifbreakR 2.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## motifcounter 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MotifDb 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## motifmatchr 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## motifStack 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## motifTestR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mouse4302.db 3.13.0 2024-09-26 [2] Bioconductor
## mouse4302barcodevecs 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mouse4302cdf 2.18.0 2024-09-26 [2] Bioconductor
## mouse4302frmavecs 1.5.0 2024-09-26 [2] Bioconductor
## MouseAgingData 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MouseFM 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MouseGastrulationData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MouseThymusAgeing 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MPAC 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MPFE 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mpm 1.0-23 2022-04-01 [2] CRAN (R 4.4.1)
## MPO.db 0.99.8 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## mpra 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MPRAnalyze 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MQmetrics 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mrfDepth 1.0.17 2024-05-24 [2] CRAN (R 4.4.1)
## mRMRe 2.1.2.1 2023-04-25 [2] CRAN (R 4.4.1)
## msa 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSA2dist 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendMassbank 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendMetaboLights 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendMgf 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendMsp 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendRawFileReader 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsBackendSql 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsCoreUtils 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msd16s 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## msdata 0.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MsDataHub 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msentropy 0.1.4 2023-08-07 [2] CRAN (R 4.4.1)
## MsExperiment 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsFeatures 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msgbsR 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msgps 1.3.5 2022-10-20 [2] CRAN (R 4.4.1)
## msigdb 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## msigdbr 7.5.1 2022-03-30 [2] CRAN (R 4.4.1)
## msImpute 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mslp 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msm 1.8.1 2024-10-04 [2] CRAN (R 4.4.1)
## MSMB 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## msmsEDA 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msmsTests 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSnbase 2.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSnID 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSPrep 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msPurity 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## msPurityData 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## msqc1 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## msqrob2 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MsQuality 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstats 4.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsBig 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsConvert 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsLiP 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsLOBD 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsPTM 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsQC 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsQCgui 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsShiny 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MSstatsTMT 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mstate 0.3.3 2024-07-11 [2] CRAN (R 4.4.1)
## mtbls2 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## MuData 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MUGAExampleData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Mulcom 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## muleaData 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## multcomp 1.4-26 2024-07-18 [2] CRAN (R 4.4.1)
## multcompView 0.1-10 2024-03-08 [2] CRAN (R 4.4.1)
## MultiAssayExperiment 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MultiBaC 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiClust 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multicool 1.0.1 2024-02-05 [2] CRAN (R 4.4.1)
## multicrispr 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MultiDataSet 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiGSEA 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiHiCcompare 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MultiMed 2.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiMiR 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MultimodalExperiment 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MultiRNAflow 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiscan 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multistateQTL 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multitaper 1.0-17 2023-07-20 [2] CRAN (R 4.4.1)
## multiWGCNA 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## multiWGCNAdata 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## multtest 2.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MuMIn 1.48.4 2024-06-22 [2] CRAN (R 4.4.1)
## mumosa 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MungeSumstats 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## munsell 0.5.1 2024-04-01 [2] CRAN (R 4.4.1)
## Mus.musculus 1.3.1 2024-09-26 [2] Bioconductor
## muscat 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## muscData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## muscle 3.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## musicatk 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## MutationalPatterns 3.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mutoss 0.1-13 2023-03-14 [2] CRAN (R 4.4.1)
## MVCClass 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mvnfast 0.2.8 2023-02-23 [2] CRAN (R 4.4.1)
## mvoutData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## mvoutlier 2.1.1 2021-07-30 [2] CRAN (R 4.4.1)
## mvtnorm 1.3-1 2024-09-03 [2] CRAN (R 4.4.1)
## MWASTools 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mwcsr 0.1.9 2024-09-09 [2] CRAN (R 4.4.1)
## mygene 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## myvariant 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mzID 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## mzR 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nabor 0.5.0 2018-07-11 [2] CRAN (R 4.4.1)
## NADA 1.6-1.1 2020-03-22 [2] CRAN (R 4.4.1)
## NADfinder 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## naivebayes 1.0.0 2024-03-16 [2] CRAN (R 4.4.1)
## naniar 1.1.0 2024-03-05 [2] CRAN (R 4.4.1)
## nanoarrow 0.6.0 2024-10-13 [2] CRAN (R 4.4.1)
## NanoMethViz 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NanoporeRNASeq 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## NanoStringDiff 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NanoStringNCTools 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nanotime 0.3.10 2024-09-16 [2] CRAN (R 4.4.1)
## NanoTube 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nanotubes 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## nat 1.8.24 2024-02-05 [2] CRAN (R 4.4.1)
## nat.utils 0.6.1 2023-06-07 [2] CRAN (R 4.4.1)
## natserv 1.0.0 2020-05-16 [2] CRAN (R 4.4.1)
## naturalsort 0.1.3 2016-08-30 [2] CRAN (R 4.4.1)
## NBAMSeq 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NbClust 3.0.1 2022-05-02 [2] CRAN (R 4.4.1)
## NBPSeq 0.3.1 2022-06-09 [2] CRAN (R 4.4.1)
## ncdf4 1.23 2024-08-17 [2] CRAN (R 4.4.1)
## ncdfFlow 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ncGTW 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NCIgraph 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NCIgraphData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## NCmisc 1.2.0 2022-10-17 [2] CRAN (R 4.4.1)
## ncRNAtools 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ndexr 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nearBynding 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Nebulosa 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nempi 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## neo4r 0.1.1 2019-02-15 [2] CRAN (R 4.4.1)
## NestLink 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## NetActivity 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NetActivityData 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## netboost 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## netDx 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nethet 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## netOmics 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NetPathMiner 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## netprioR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NetRep 1.2.7 2023-08-19 [2] CRAN (R 4.4.1)
## netresponse 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NetSAM 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## netSmooth 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## network 1.18.2 2023-12-05 [2] CRAN (R 4.4.1)
## networkD3 0.4 2017-03-18 [2] CRAN (R 4.4.1)
## netZooR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NeuCA 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Neve2006 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## NewWave 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NGLVieweR 1.3.1 2021-06-01 [2] CRAN (R 4.4.1)
## NGScopyData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ngsReports 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NHPoisson 3.3 2020-02-19 [2] CRAN (R 4.4.1)
## nipals 0.8 2021-09-15 [2] CRAN (R 4.4.1)
## nipalsMCIA 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NISTunits 1.0.1 2016-08-11 [2] CRAN (R 4.4.1)
## nlcv 0.3.5 2018-06-29 [2] CRAN (R 4.4.1)
## nleqslv 3.3.5 2023-11-26 [2] CRAN (R 4.4.1)
## nlme 3.1-166 2024-08-14 [3] CRAN (R 4.4.1)
## nloptr 2.1.1 2024-06-25 [2] CRAN (R 4.4.1)
## NLP 0.3-0 2024-08-05 [2] CRAN (R 4.4.1)
## nls2 0.3-4 2024-07-14 [2] CRAN (R 4.4.1)
## NMF 0.28 2024-08-22 [2] CRAN (R 4.4.1)
## NMFN 2.0.1 2022-06-23 [2] CRAN (R 4.4.1)
## NMI 2.0 2016-08-20 [2] CRAN (R 4.4.1)
## NMRphasing 1.0.5 2024-10-12 [2] CRAN (R 4.4.1)
## nnet 7.3-19 2023-05-03 [3] CRAN (R 4.4.1)
## nnlasso 0.3 2016-03-10 [2] CRAN (R 4.4.1)
## nnls 1.6 2024-10-23 [2] CRAN (R 4.4.1)
## nnNorm 2.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nnSVG 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nnTensor 1.3.0 2024-05-13 [2] CRAN (R 4.4.1)
## NOISeq 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nondetects 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nor1mix 1.3-3 2024-04-06 [2] CRAN (R 4.4.1)
## NoRCE 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## norm 1.0-11.1 2023-06-18 [2] CRAN (R 4.4.1)
## normalize450K 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NormalyzerDE 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NormqPCR 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## normr 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nortest 1.0-4 2015-07-30 [2] CRAN (R 4.4.1)
## Nozzle.R1 1.1-1.1 2022-06-23 [2] CRAN (R 4.4.1)
## np 0.60-17 2023-03-13 [2] CRAN (R 4.4.1)
## NPARC 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## npGSEA 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nsga2R 1.1 2022-05-23 [2] CRAN (R 4.4.1)
## NTW 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nucleoSim 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nucleR 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nuCpos 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nullranges 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## nullrangesData 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## numbers 0.8-5 2022-11-23 [2] CRAN (R 4.4.1)
## numDeriv 2016.8-1.1 2019-06-06 [2] CRAN (R 4.4.1)
## NuPoP 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## NxtIRFdata 1.11.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## objectProperties 0.6.8 2022-05-02 [2] CRAN (R 4.4.1)
## objectSignals 0.10.3 2022-04-05 [2] CRAN (R 4.4.1)
## ObMiTi 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## occugene 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OCplus 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oct4 1.21.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## octad 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## octad.db 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## odseq 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## officer 0.6.7 2024-10-09 [2] CRAN (R 4.4.1)
## OGRE 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OHCA 1.2.0 2024-10-30 [1] Bioconductor 3.20 (R 4.4.1)
## oligo 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oligoClasses 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oligoData 1.8.0 2024-09-26 [2] Bioconductor
## OLIN 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OLINgui 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OlinkAnalyze 4.0.1 2024-09-24 [2] CRAN (R 4.4.1)
## omada 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OmaDB 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## omicade4 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OmicCircos 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## omicplotR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## omicRexposome 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OmicsMLRepoR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OMICsPCA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OMICsPCAdata 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## omicsPrint 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## omicsViewer 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Omixer 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OmnipathR 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ompBAM 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## omXplore 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OnassisJavaLibs 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## oncomix 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oncoscanR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OncoScore 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OncoSimulR 4.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Oncotree 0.3.5 2023-09-27 [2] CRAN (R 4.4.1)
## onlineFDR 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ontologyIndex 2.12 2024-02-27 [2] CRAN (R 4.4.1)
## ontologyPlot 1.7 2024-02-20 [2] CRAN (R 4.4.1)
## ontoProc 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ontoProcData 0.99.9904 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## openair 2.18-2 2024-03-11 [2] CRAN (R 4.4.1)
## opencpu 2.2.14 2024-10-04 [2] CRAN (R 4.4.1)
## openCyto 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## openEBGM 0.9.1 2023-09-14 [2] CRAN (R 4.4.1)
## openPrimeR 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## openssl 2.2.2 2024-09-20 [2] CRAN (R 4.4.1)
## OpenStats 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## openxlsx 4.2.7.1 2024-09-20 [2] CRAN (R 4.4.1)
## operator.tools 1.6.3 2017-02-28 [2] CRAN (R 4.4.1)
## oposSOM 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oppar 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## oppti 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## optimalFlow 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## optimalFlowData 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## optimParallel 1.0-2 2021-02-11 [2] CRAN (R 4.4.1)
## optimx 2023-10.21 2023-10-24 [2] CRAN (R 4.4.1)
## optparse 1.7.5 2024-04-16 [2] CRAN (R 4.4.1)
## OPWeight 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OrderedList 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ordinal 2023.12-4.1 2024-08-19 [2] CRAN (R 4.4.1)
## ore 1.7.4.1 2023-12-05 [2] CRAN (R 4.4.1)
## ORFhunteR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ORFik 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## org.Ag.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.At.tair.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Bt.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Ce.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Cf.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Dm.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Dr.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.EcK12.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.EcSakai.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Gg.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Hs.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Mm.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Mmu.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Mxanthus.db 1.0.27 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## org.Pt.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Rn.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Sc.sgd.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Ss.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## org.Xl.eg.db 3.20.0 2024-10-01 [2] Bioconductor
## Organism.dplyr 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OrganismDbi 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OrgMassSpecR 0.5-3 2017-08-13 [2] CRAN (R 4.4.1)
## origami 1.0.7 2022-10-19 [2] CRAN (R 4.4.1)
## orthogene 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## orthos 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## orthosData 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## OSAT 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA 1.16.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA.advanced 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA.basic 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA.intro 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA.multisample 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## OSCA.workflows 1.14.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## Oscope 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## osfr 0.2.9 2022-09-25 [2] CRAN (R 4.4.1)
## osqp 0.6.3.3 2024-06-08 [2] CRAN (R 4.4.1)
## OTUbase 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## outliers 0.15 2022-03-26 [2] CRAN (R 4.4.1)
## OUTRIDER 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OutSplice 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## OVESEG 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PAA 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## packFinder 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## padma 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PADOG 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pageRank 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## paintmap 1.0 2016-08-31 [2] CRAN (R 4.4.1)
## PAIRADISE 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## paircompviz 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PairedData 1.1.1 2018-06-02 [2] CRAN (R 4.4.1)
## pairedGSEA 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pairkat 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pairsD3 0.1.3 2022-06-06 [2] CRAN (R 4.4.1)
## paletteer 1.6.0 2024-01-21 [2] CRAN (R 4.4.1)
## palmerpenguins 0.1.1 2022-08-15 [2] CRAN (R 4.4.1)
## pals 1.9 2024-07-16 [2] CRAN (R 4.4.1)
## pamr 1.57 2024-07-01 [2] CRAN (R 4.4.1)
## pan 1.9 2023-12-07 [2] CRAN (R 4.4.1)
## pandaR 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pander 0.6.5 2022-03-18 [2] CRAN (R 4.4.1)
## panelcn.mops 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PanomiR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## panp 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PANR 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PANTHER.db 1.0.12 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## PanViz 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## paradox 1.0.1 2024-07-09 [2] CRAN (R 4.4.1)
## parallel 4.4.1 2024-09-25 [3] local
## parallelDist 0.2.6 2022-02-03 [2] CRAN (R 4.4.1)
## ParallelLogger 3.3.1 2024-08-23 [2] CRAN (R 4.4.1)
## parallelly 1.38.0 2024-07-27 [2] CRAN (R 4.4.1)
## parallelMap 1.5.1 2021-06-28 [2] CRAN (R 4.4.1)
## parameters 0.23.0 2024-10-18 [2] CRAN (R 4.4.1)
## ParamHelpers 1.14.1 2022-07-04 [2] CRAN (R 4.4.1)
## parathyroidSE 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pareg 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## parglms 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## parmigene 1.1.1 2024-10-21 [2] CRAN (R 4.4.1)
## parody 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## parsedate 1.3.1 2022-10-27 [2] CRAN (R 4.4.1)
## partCNV 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## party 1.3-17 2024-08-17 [2] CRAN (R 4.4.1)
## partykit 1.2-22 2024-08-17 [2] CRAN (R 4.4.1)
## pasilla 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pasillaBamSubset 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PasillaTranscriptExpr 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PAST 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pastecs 1.4.2 2024-02-01 [2] CRAN (R 4.4.1)
## patchwork 1.3.0 2024-09-16 [2] CRAN (R 4.4.1)
## Path2PPI 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pathifier 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pathlinkR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PathNet 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PathNetData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PathoStat 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pathRender 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pathview 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pathwayPCA 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## patrick 0.2.0 2022-10-13 [2] CRAN (R 4.4.1)
## paws.common 0.7.7 2024-10-03 [2] CRAN (R 4.4.1)
## paws.storage 0.7.0 2024-09-11 [2] CRAN (R 4.4.1)
## paxtoolsr 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pbapply 1.7-2 2023-06-27 [2] CRAN (R 4.4.1)
## pbdZMQ 0.3-13 2024-09-17 [2] CRAN (R 4.4.1)
## pbivnorm 0.6.0 2015-01-23 [2] CRAN (R 4.4.1)
## pbkrtest 0.5.3 2024-06-26 [2] CRAN (R 4.4.1)
## pbmcapply 1.5.1 2022-04-28 [2] CRAN (R 4.4.1)
## pbv 0.5-47 2023-11-30 [2] CRAN (R 4.4.1)
## pcaExplorer 3.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pcalg 2.7-12 2024-09-12 [2] CRAN (R 4.4.1)
## pcaMethods 1.98.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PCAN 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pcaPP 2.0-5 2024-08-19 [2] CRAN (R 4.4.1)
## PCAtools 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PCHiCdata 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pd.atdschip.tiling 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pd.genomewidesnp.5 3.14.1 2024-09-26 [2] Bioconductor
## pd.genomewidesnp.6 3.14.1 2024-09-26 [2] Bioconductor
## pd.hg.u95a 3.12.0 2024-09-26 [2] Bioconductor
## pd.hg.u95av2 3.12.0 2024-09-26 [2] Bioconductor
## pd.hg18.60mer.expr 3.12.0 2024-09-26 [2] Bioconductor
## pd.huex.1.0.st.v2 3.14.1 2024-09-26 [2] Bioconductor
## pd.hugene.1.0.st.v1 3.14.1 2024-09-26 [2] Bioconductor
## pd.mapping250k.nsp 3.12.0 2024-09-26 [2] Bioconductor
## pd.mapping250k.sty 3.12.0 2024-09-26 [2] Bioconductor
## pd.mapping50k.hind240 3.12.0 2024-09-26 [2] Bioconductor
## pd.mapping50k.xba240 3.12.0 2024-09-26 [2] Bioconductor
## PDATK 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pdfCluster 1.0-4 2022-12-02 [2] CRAN (R 4.4.1)
## pdftools 3.4.1 2024-09-20 [2] CRAN (R 4.4.1)
## pdInfoBuilder 1.70.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pdist 1.2.1 2022-05-02 [2] CRAN (R 4.4.1)
## PeacoQC 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## peakPantheR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PECA 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## peco 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Pedixplorer 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## penalized 0.9-52 2022-04-23 [2] CRAN (R 4.4.1)
## pengls 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pepDat 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PepSetTest 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PepsNMR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PepsNMRData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pepStat 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Peptides 2.4.6 2023-12-13 [2] CRAN (R 4.4.1)
## pepXMLTab 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PerfMeas 1.2.5 2022-09-14 [2] CRAN (R 4.4.1)
## performance 0.12.4 2024-10-18 [2] CRAN (R 4.4.1)
## PerformanceAnalytics 2.0.4 2020-02-06 [2] CRAN (R 4.4.1)
## periodicDNA 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## permute 0.9-7 2022-01-27 [2] CRAN (R 4.4.1)
## PFAM.db 3.20.0 2024-10-01 [2] Bioconductor
## pfamAnalyzeR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pgca 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pgxRpi 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phangorn 2.12.1 2024-09-17 [2] CRAN (R 4.4.1)
## phantasus 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phantasusLite 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PharmacoGx 3.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phastCons100way.UCSC.hg19 3.7.2 2024-09-26 [2] Bioconductor
## phastCons100way.UCSC.hg38 3.7.1 2024-09-26 [2] Bioconductor
## phastCons30way.UCSC.hg38 3.13.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## pheatmap 1.0.12 2019-01-04 [2] CRAN (R 4.4.1)
## PhenoGeneRanker 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phenomis 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phenopath 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phenoTest 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PhenStat 2.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## philentropy 0.8.0 2023-12-02 [2] CRAN (R 4.4.1)
## philr 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PhIPData 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phosphonormalizer 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phosphoricons 0.2.1 2024-04-08 [2] CRAN (R 4.4.1)
## PhosR 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phyclust 0.1-34 2023-09-06 [2] CRAN (R 4.4.1)
## phylobase 0.8.12 2024-01-30 [2] CRAN (R 4.4.1)
## phylogram 2.1.0 2018-06-25 [2] CRAN (R 4.4.1)
## phylolm 2.6.5 2024-09-30 [2] CRAN (R 4.4.1)
## PhyloProfile 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PhyloProfileData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## phyloseq 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## phytools 2.3-0 2024-06-13 [2] CRAN (R 4.4.1)
## piano 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pickgene 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PICS 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Pigengene 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## piggyback 0.1.5 2023-07-10 [2] CRAN (R 4.4.1)
## pillar 1.9.0 2023-03-22 [2] CRAN (R 4.4.1)
## pinfsc50 1.3.0 2023-12-05 [2] CRAN (R 4.4.1)
## PING 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pingr 2.0.4 2024-10-28 [2] CRAN (R 4.4.1)
## pipeComp 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pipeFrame 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PIPETS 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Pirat 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## piton 1.0.0 2020-11-15 [2] CRAN (R 4.4.1)
## PIUMA 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pixmap 0.4-13 2024-05-03 [2] CRAN (R 4.4.1)
## pkgbuild 1.4.5 2024-10-28 [2] CRAN (R 4.4.1)
## pkgconfig 2.0.3 2019-09-22 [2] CRAN (R 4.4.1)
## pkgdown 2.1.1 2024-09-17 [2] CRAN (R 4.4.1)
## pkgload 1.4.0 2024-06-28 [2] CRAN (R 4.4.1)
## pkgndep 1.99.3 2023-10-13 [2] CRAN (R 4.4.1)
## planet 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## planttfhunter 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plasmodiumanophelescdf 2.18.0 2024-09-26 [2] Bioconductor
## plasmut 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plgem 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plier 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plogr 0.2.0 2018-03-25 [2] CRAN (R 4.4.1)
## plot3D 1.4.1 2024-02-06 [2] CRAN (R 4.4.1)
## plot3Drgl 1.0.4 2023-01-19 [2] CRAN (R 4.4.1)
## plotgardener 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plotgardenerData 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## plotGrouper 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plotly 4.10.4 2024-01-13 [2] CRAN (R 4.4.1)
## plotmo 3.6.4 2024-08-31 [2] CRAN (R 4.4.1)
## plotrix 3.8-4 2023-11-10 [2] CRAN (R 4.4.1)
## plotROC 2.3.1 2023-10-06 [2] CRAN (R 4.4.1)
## PlotTools 0.3.1 2024-09-03 [2] CRAN (R 4.4.1)
## PLPE 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pls 2.8-5 2024-09-15 [2] CRAN (R 4.4.1)
## PLSDAbatch 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plsgenomics 1.5-3 2024-03-28 [2] CRAN (R 4.4.1)
## plsVarSel 0.9.12 2024-05-22 [2] CRAN (R 4.4.1)
## plyinteractions 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plyr 1.8.9 2023-10-02 [2] CRAN (R 4.4.1)
## plyranges 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## plyxp 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PMA 1.2-4 2024-09-03 [2] CRAN (R 4.4.1)
## PMCMRplus 1.9.12 2024-09-08 [2] CRAN (R 4.4.1)
## pmm 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pmp 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## png 0.1-8 2022-11-29 [2] CRAN (R 4.4.1)
## PoDCall 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## podkat 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pogos 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## poibin 1.6 2024-08-23 [2] CRAN (R 4.4.1)
## PoiClaClu 1.0.2.1 2019-01-04 [2] CRAN (R 4.4.1)
## polspline 1.1.25 2024-05-10 [2] CRAN (R 4.4.1)
## Polychrome 1.5.1 2022-05-03 [2] CRAN (R 4.4.1)
## polyclip 1.10-7 2024-07-23 [2] CRAN (R 4.4.1)
## polycor 0.8-1 2022-01-11 [2] CRAN (R 4.4.1)
## polyester 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## polylabelr 0.2.0 2020-04-19 [2] CRAN (R 4.4.1)
## polynom 1.4-1 2022-04-11 [2] CRAN (R 4.4.1)
## PolynomF 2.0-8 2024-03-03 [2] CRAN (R 4.4.1)
## PolyPhen.Hsapiens.dbSNP131 1.0.2 2024-09-26 [2] Bioconductor
## PolySTest 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## POMA 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pool 1.0.4 2024-10-07 [2] CRAN (R 4.4.1)
## poolr 1.1-1 2022-01-26 [2] CRAN (R 4.4.1)
## poorman 0.2.7 2023-10-30 [2] CRAN (R 4.4.1)
## posterior 1.6.0 2024-07-03 [2] CRAN (R 4.4.1)
## poweRlaw 0.80.0 2024-01-25 [2] CRAN (R 4.4.1)
## powerTCR 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## POWSC 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ppclust 1.1.0.1 2023-12-13 [2] CRAN (R 4.4.1)
## ppcor 1.1 2015-12-03 [2] CRAN (R 4.4.1)
## ppcseq 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PPInfer 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pqsfinder 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## prabclus 2.3-4 2024-09-24 [2] CRAN (R 4.4.1)
## pracma 2.4.4 2023-11-10 [2] CRAN (R 4.4.1)
## praise 1.0.0 2015-08-11 [2] CRAN (R 4.4.1)
## pram 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## praznik 11.0.0 2022-05-20 [2] CRAN (R 4.4.1)
## prebs 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## prebsdata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## preciseTAD 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## preciseTADhub 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## precrec 0.14.4 2023-10-11 [2] CRAN (R 4.4.1)
## PREDA 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PREDAsampledata 0.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## preprocessCore 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## preseqR 4.0.0 2018-06-27 [2] CRAN (R 4.4.1)
## prettydoc 0.4.1 2021-01-10 [2] CRAN (R 4.4.1)
## prettyGraphs 2.1.6 2018-12-18 [2] CRAN (R 4.4.1)
## prettyunits 1.2.0 2023-09-24 [2] CRAN (R 4.4.1)
## primirTSS 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PRIMME 3.2-6 2024-01-09 [2] CRAN (R 4.4.1)
## PrInCE 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## princurve 2.1.6 2021-01-18 [2] CRAN (R 4.4.1)
## printr 0.3 2023-03-08 [2] CRAN (R 4.4.1)
## prismatic 1.1.2 2024-04-10 [2] CRAN (R 4.4.1)
## proActiv 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## proBAMr 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pROC 1.18.5 2023-11-01 [2] CRAN (R 4.4.1)
## PROcess 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## processx 3.8.4 2024-03-16 [2] CRAN (R 4.4.1)
## procoil 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## proDA 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ProData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## prodlim 2024.06.25 2024-06-24 [2] CRAN (R 4.4.1)
## profileModel 0.6.1 2021-01-08 [2] CRAN (R 4.4.1)
## profileplyr 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## profileScoreDist 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## profmem 0.6.0 2020-12-13 [2] CRAN (R 4.4.1)
## profvis 0.4.0 2024-09-20 [2] CRAN (R 4.4.1)
## progeny 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## progress 1.2.3 2023-12-06 [2] CRAN (R 4.4.1)
## progressr 0.15.0 2024-10-29 [2] CRAN (R 4.4.1)
## proj4 1.0-14 2024-01-14 [2] CRAN (R 4.4.1)
## projectR 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pRoloc 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pRolocdata 1.43.3 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pRolocGUI 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PROMISE 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## promises 1.3.0 2024-04-05 [2] CRAN (R 4.4.1)
## PRONE 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## propagate 1.0-6 2018-05-06 [2] CRAN (R 4.4.1)
## PROPER 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PROPS 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Prostar 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## prostateCancerCamcap 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## prostateCancerGrasso 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## prostateCancerStockholm 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## prostateCancerTaylor 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## prostateCancerVarambally 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ProteinGymR 0.99.7 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## proteinProfiles 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ProteoDisco 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ProteoMM 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## protGear 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ProtGenerics 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## proto 1.0.0 2016-10-29 [2] CRAN (R 4.4.1)
## protolite 2.3.1 2024-10-04 [2] CRAN (R 4.4.1)
## protr 1.7-4 2024-09-11 [2] CRAN (R 4.4.1)
## protViz 0.7.9 2023-12-12 [2] CRAN (R 4.4.1)
## proxy 0.4-27 2022-06-09 [2] CRAN (R 4.4.1)
## proxyC 0.4.1 2024-04-07 [2] CRAN (R 4.4.1)
## PRROC 1.3.1 2018-06-19 [2] CRAN (R 4.4.1)
## pryr 0.1.6 2023-01-17 [2] CRAN (R 4.4.1)
## ps 1.8.1 2024-10-28 [2] CRAN (R 4.4.1)
## PSCBS 0.67.0 2024-02-17 [2] CRAN (R 4.4.1)
## pscl 1.5.9 2024-01-31 [2] CRAN (R 4.4.1)
## psichomics 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PSMatch 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pspline 1.0-20 2024-05-25 [2] CRAN (R 4.4.1)
## psych 2.4.6.26 2024-06-27 [2] CRAN (R 4.4.1)
## psygenet2r 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ptairData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ptairMS 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PtH2O2lipids 1.31.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ptw 1.9-16 2022-01-19 [2] CRAN (R 4.4.1)
## puma 3.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pumadata 2.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PureCN 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## purrr 1.0.2 2023-08-10 [2] CRAN (R 4.4.1)
## pushbar 0.1.0 2019-03-15 [2] CRAN (R 4.4.1)
## pvac 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pvca 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pvclust 2.2-0 2019-11-19 [2] CRAN (R 4.4.1)
## Pviz 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## pwalign 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PWMEnrich 4.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## PWMEnrich.Dmelanogaster.background 4.39.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PWMEnrich.Hsapiens.background 4.39.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## PWMEnrich.Mmusculus.background 4.39.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## pwr 1.3-0 2020-03-17 [2] CRAN (R 4.4.1)
## qap 0.1-2 2022-06-27 [2] CRAN (R 4.4.1)
## qckitfastq 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qcmetrics 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qdapRegex 0.7.8 2023-10-17 [2] CRAN (R 4.4.1)
## qdapTools 1.3.7 2023-05-10 [2] CRAN (R 4.4.1)
## QDNAseq 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QDNAseq.hg19 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## QDNAseq.mm10 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## QFeatures 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qgraph 1.9.8 2023-11-03 [2] CRAN (R 4.4.1)
## qmtools 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qpcR 1.4-1 2018-06-14 [2] CRAN (R 4.4.1)
## qpcrNorm 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qpdf 1.3.4 2024-10-04 [2] CRAN (R 4.4.1)
## qpgraph 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qPLEXanalyzer 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qPLEXdata 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## qqconf 1.3.2 2023-04-14 [2] CRAN (R 4.4.1)
## qqman 0.1.9 2023-08-23 [2] CRAN (R 4.4.1)
## qs 0.27.2 2024-10-01 [2] CRAN (R 4.4.1)
## qsea 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qsmooth 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QSutils 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qsvaR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qtl 1.70 2024-08-22 [2] CRAN (R 4.4.1)
## QTLExperiment 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Qtlizer 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## quadprog 1.5-8 2019-11-20 [2] CRAN (R 4.4.1)
## qualV 0.3-5 2023-07-02 [2] CRAN (R 4.4.1)
## quanteda 4.1.0 2024-09-04 [2] CRAN (R 4.4.1)
## quantiseqr 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## quantmod 0.4.26 2024-02-14 [2] CRAN (R 4.4.1)
## quantreg 5.99 2024-10-22 [2] CRAN (R 4.4.1)
## quantro 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## quantsmooth 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## quarto 1.4.4 2024-07-20 [2] CRAN (R 4.4.1)
## QuartPAC 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QuasR 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QuaternaryProd 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QUBIC 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## QUBICdata 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## queryup 1.0.5 2023-06-05 [2] CRAN (R 4.4.1)
## questionr 0.7.8 2023-01-31 [2] CRAN (R 4.4.1)
## QuickJSR 1.4.0 2024-10-01 [2] CRAN (R 4.4.1)
## qusage 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qvalue 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## qvcalc 1.0.3 2023-05-26 [2] CRAN (R 4.4.1)
## R.cache 0.16.0 2022-07-21 [2] CRAN (R 4.4.1)
## R.devices 2.17.2 2024-01-29 [2] CRAN (R 4.4.1)
## R.filesets 2.15.1 2024-01-24 [2] CRAN (R 4.4.1)
## R.huge 0.10.1 2024-01-24 [2] CRAN (R 4.4.1)
## R.matlab 3.7.0 2022-08-25 [2] CRAN (R 4.4.1)
## R.methodsS3 1.8.2 2022-06-13 [2] CRAN (R 4.4.1)
## R.oo 1.26.0 2024-01-24 [2] CRAN (R 4.4.1)
## R.rsp 0.46.0 2024-02-17 [2] CRAN (R 4.4.1)
## R.utils 2.12.3 2023-11-18 [2] CRAN (R 4.4.1)
## r2glmm 0.1.2 2017-08-05 [2] CRAN (R 4.4.1)
## R2HTML 2.3.4 2024-06-16 [2] CRAN (R 4.4.1)
## R2jags 0.8-9 2024-10-13 [2] CRAN (R 4.4.1)
## R2WinBUGS 2.1-22.1 2024-02-05 [2] CRAN (R 4.4.1)
## R3CPET 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## r3Cseq 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## r3dmol 0.1.2 2021-03-14 [2] CRAN (R 4.4.1)
## R453Plus1Toolbox 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## R4RNA 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## R6 2.5.1 2021-08-19 [2] CRAN (R 4.4.1)
## R6P 0.3.0 2022-10-02 [2] CRAN (R 4.4.1)
## radiant.data 1.6.7 2024-10-23 [2] CRAN (R 4.4.1)
## RadioGx 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rae230a.db 3.13.0 2024-09-26 [2] Bioconductor
## rae230aprobe 2.18.0 2024-09-26 [2] Bioconductor
## raer 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## raerdata 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rafalib 1.0.0 2015-08-09 [2] CRAN (R 4.4.1)
## ragg 1.3.3 2024-09-11 [2] CRAN (R 4.4.1)
## RaggedExperiment 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RAIDS 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rain 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rainbow 3.8 2024-01-23 [2] CRAN (R 4.4.1)
## ramr 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RaMS 1.4.3 2024-10-09 [2] CRAN (R 4.4.1)
## ramwas 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## randomcoloR 1.1.0.1 2019-11-24 [2] CRAN (R 4.4.1)
## randomForest 4.7-1.2 2024-09-22 [2] CRAN (R 4.4.1)
## randomForestSRC 3.3.1 2024-07-25 [2] CRAN (R 4.4.1)
## randomizr 1.0.0 2023-08-10 [2] CRAN (R 4.4.1)
## randPack 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## randRotation 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## randtests 1.0.2 2024-04-23 [2] CRAN (R 4.4.1)
## randtoolbox 2.0.5 2024-10-18 [2] CRAN (R 4.4.1)
## ranger 0.16.0 2023-11-12 [2] CRAN (R 4.4.1)
## RankAggreg 0.6.6 2020-05-09 [2] CRAN (R 4.4.1)
## RankProd 3.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RANN 2.6.2 2024-08-25 [2] CRAN (R 4.4.1)
## rapiclient 0.1.8 2024-09-30 [2] CRAN (R 4.4.1)
## rapidjsonr 1.2.0 2020-03-08 [2] CRAN (R 4.4.1)
## RApiSerialize 0.1.4 2024-09-28 [2] CRAN (R 4.4.1)
## rappdirs 0.3.3 2021-01-31 [2] CRAN (R 4.4.1)
## rapportools 1.1 2022-03-22 [2] CRAN (R 4.4.1)
## RAREsim 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RareVariantVis 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rARPACK 0.11-0 2016-03-10 [2] CRAN (R 4.4.1)
## Rarr 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## raster 3.6-30 2024-10-02 [2] CRAN (R 4.4.1)
## rat2302frmavecs 0.99.11 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## ratelimitr 0.4.1 2018-10-07 [2] CRAN (R 4.4.1)
## Rattus.norvegicus 1.3.1 2024-09-26 [2] Bioconductor
## rawDiag 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rawrr 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RbcBook1 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rbec 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rbenchmark 1.0.0 2012-08-30 [2] CRAN (R 4.4.1)
## rBeta2009 1.0 2012-03-01 [2] CRAN (R 4.4.1)
## RBGL 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rbibutils 2.3 2024-10-04 [2] CRAN (R 4.4.1)
## rbioapi 0.8.1 2024-03-30 [2] CRAN (R 4.4.1)
## RBioFormats 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RBioinf 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rbiom 1.0.3 2021-11-05 [2] CRAN (R 4.4.1)
## rBiopaxParser 2.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rBLAST 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RBM 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rbowtie 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rbowtie2 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rbsurv 2.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rbwa 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rcapture 1.4-4 2022-05-04 [2] CRAN (R 4.4.1)
## RCAS 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCASPAR 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rcdk 3.8.1 2023-07-01 [2] CRAN (R 4.4.1)
## rcdklibs 2.9 2024-03-03 [2] CRAN (R 4.4.1)
## rcellminer 2.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rcellminerData 2.27.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rCGH 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCircos 1.2.2 2021-12-19 [2] CRAN (R 4.4.1)
## RcisTarget 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RcisTarget.hg19.motifDBs.cisbpOnly.500bp 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rclipboard 0.2.1 2023-11-15 [2] CRAN (R 4.4.1)
## RCM 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rcmdcheck 1.4.0 2021-09-27 [2] CRAN (R 4.4.1)
## Rcollectl 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RColorBrewer 1.1-3 2022-04-03 [2] CRAN (R 4.4.1)
## rcompanion 2.4.36 2024-05-27 [2] CRAN (R 4.4.1)
## Rcpi 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rcpp 1.0.13 2024-07-17 [2] CRAN (R 4.4.1)
## RcppAlgos 2.8.5 2024-10-11 [2] CRAN (R 4.4.1)
## RcppAnnoy 0.0.22 2024-01-23 [2] CRAN (R 4.4.1)
## RcppArmadillo 14.0.2-1 2024-09-12 [2] CRAN (R 4.4.1)
## RcppCCTZ 0.2.12 2022-11-06 [2] CRAN (R 4.4.1)
## RcppDate 0.0.4 2024-10-14 [2] CRAN (R 4.4.1)
## RcppDE 0.1.7 2022-12-20 [2] CRAN (R 4.4.1)
## RcppDist 0.1.1 2018-10-28 [2] CRAN (R 4.4.1)
## RcppEigen 0.3.4.0.2 2024-08-24 [2] CRAN (R 4.4.1)
## RcppGSL 0.3.13 2023-01-13 [2] CRAN (R 4.4.1)
## RcppHMM 1.2.2 2017-11-21 [2] CRAN (R 4.4.1)
## RcppHNSW 0.6.0 2024-02-04 [2] CRAN (R 4.4.1)
## RcppHungarian 0.3 2023-09-05 [2] CRAN (R 4.4.1)
## RcppInt64 0.0.5 2024-04-30 [2] CRAN (R 4.4.1)
## RcppML 0.3.7 2021-09-21 [2] CRAN (R 4.4.1)
## RcppNumerical 0.6-0 2023-09-06 [2] CRAN (R 4.4.1)
## RcppParallel 5.1.9 2024-08-19 [2] CRAN (R 4.4.1)
## RcppProgress 0.4.2 2020-02-06 [2] CRAN (R 4.4.1)
## RcppRoll 0.3.1 2024-07-07 [2] CRAN (R 4.4.1)
## RcppSpdlog 0.0.18 2024-09-10 [2] CRAN (R 4.4.1)
## RcppThread 2.1.7 2024-02-09 [2] CRAN (R 4.4.1)
## RcppTOML 0.2.2 2023-01-29 [2] CRAN (R 4.4.1)
## RcppZiggurat 0.1.6 2020-10-20 [2] CRAN (R 4.4.1)
## RCSL 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCurl 1.98-1.16 2024-07-11 [2] CRAN (R 4.4.1)
## Rcwl 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RcwlPipelines 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCX 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCy3 2.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RCyjs 2.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rDGIdb 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rdisop 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rdist 0.0.5 2020-05-04 [2] CRAN (R 4.4.1)
## Rdpack 2.6.1 2024-08-06 [2] CRAN (R 4.4.1)
## RDRToolbox 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## reactable 0.4.4 2023-03-12 [2] CRAN (R 4.4.1)
## reactome.db 1.89.0 2024-10-06 [2] Bioconductor
## ReactomeContentService4R 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ReactomeGraph4R 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ReactomeGSA 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ReactomeGSA.data 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ReactomePA 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## reactR 0.6.1 2024-09-14 [2] CRAN (R 4.4.1)
## readbitmap 0.1.5 2018-06-27 [2] CRAN (R 4.4.1)
## readBrukerFlexData 1.9.3 2024-10-02 [2] CRAN (R 4.4.1)
## reader 1.0.6 2017-01-03 [2] CRAN (R 4.4.1)
## readJDX 0.6.4 2023-11-18 [2] CRAN (R 4.4.1)
## readMzXmlData 2.8.3 2023-08-19 [2] CRAN (R 4.4.1)
## readODS 2.3.0 2024-05-26 [2] CRAN (R 4.4.1)
## ReadqPCR 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## readr 2.1.5 2024-01-10 [2] CRAN (R 4.4.1)
## readxl 1.4.3 2023-07-06 [2] CRAN (R 4.4.1)
## rearrr 0.3.4 2024-02-07 [2] CRAN (R 4.4.1)
## REBET 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rebook 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rebus 0.1-3 2017-04-25 [2] CRAN (R 4.4.1)
## rebus.base 0.0-3 2017-04-25 [2] CRAN (R 4.4.1)
## rebus.datetimes 0.0-2 2022-11-03 [2] CRAN (R 4.4.1)
## rebus.numbers 0.0-1 2015-12-16 [2] CRAN (R 4.4.1)
## rebus.unicode 0.0-2 2017-01-03 [2] CRAN (R 4.4.1)
## receptLoss 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## recipes 1.1.0 2024-07-04 [2] CRAN (R 4.4.1)
## reconsi 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RecordLinkage 0.4-12.4 2022-11-08 [2] CRAN (R 4.4.1)
## recount 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## recount3 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## recountmethylation 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## recountWorkflow 1.29.2 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## recoup 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RedeR 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RedisParam 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## REDseq 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## redux 1.1.4 2023-11-30 [2] CRAN (R 4.4.1)
## RefManageR 1.4.0 2022-09-30 [2] CRAN (R 4.4.1)
## reformulas 0.3.0 2024-06-05 [2] CRAN (R 4.4.1)
## RegEnrich 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## regionalpcs 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RegionalST 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## regioneR 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## regioneReloaded 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## regionReport 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## registry 0.5-1 2019-03-05 [2] CRAN (R 4.4.1)
## RegParallel 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## regsplice 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## regutools 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## relations 0.6-13 2023-03-07 [2] CRAN (R 4.4.1)
## reldist 1.7-2 2023-02-17 [2] CRAN (R 4.4.1)
## relimp 1.0-5 2016-03-30 [2] CRAN (R 4.4.1)
## remaCor 0.0.18 2024-02-08 [2] CRAN (R 4.4.1)
## rematch 2.0.0 2023-08-30 [2] CRAN (R 4.4.1)
## rematch2 2.1.2 2020-05-01 [2] CRAN (R 4.4.1)
## remotes 2.5.0 2024-03-17 [2] CRAN (R 4.4.1)
## REMP 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rentrez 1.2.3 2020-11-10 [2] CRAN (R 4.4.1)
## renv 1.0.11 2024-10-12 [2] CRAN (R 4.4.1)
## Repitools 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## repmis 0.5 2016-02-07 [2] CRAN (R 4.4.1)
## repo 2.1.5 2020-02-08 [2] CRAN (R 4.4.1)
## ReportingTools 2.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## reportr 1.3.0 2018-10-26 [2] CRAN (R 4.4.1)
## reportROC 3.6 2022-06-17 [2] CRAN (R 4.4.1)
## repr 1.1.7 2024-03-22 [2] CRAN (R 4.4.1)
## reprex 2.1.1 2024-07-06 [2] CRAN (R 4.4.1)
## RepViz 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## reshape 0.8.9 2022-04-12 [2] CRAN (R 4.4.1)
## reshape2 1.4.4 2020-04-09 [2] CRAN (R 4.4.1)
## ResidualMatrix 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RESOLVE 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## restfulr 0.0.15 2022-06-16 [2] CRAN (R 4.4.1)
## reticulate 1.39.0 2024-09-05 [2] CRAN (R 4.4.1)
## retrofit 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ReUseData 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rex 1.2.1 2021-11-26 [2] CRAN (R 4.4.1)
## rexposome 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rfaRm 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rfast 2.1.0 2023-11-09 [2] CRAN (R 4.4.1)
## Rfastp 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RforProteomics 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rfPred 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rGADEM 2.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rGenomeTracks 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rGenomeTracksData 0.99.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## rgl 1.3.12 2024-10-28 [2] CRAN (R 4.4.1)
## RGMQL 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RGMQLlib 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RgnTX 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rgoslin 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RGraph2js 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rgraphviz 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rGREAT 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RGSEA 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rgsepd 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rhandsontable 0.3.8 2021-05-27 [2] CRAN (R 4.4.1)
## rhdf5 2.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rhdf5client 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rhdf5filters 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rhdf5lib 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rheumaticConditionWOLLBOLD 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rhinotypeR 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rhisat2 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RhpcBLASctl 0.23-42 2023-02-11 [2] CRAN (R 4.4.1)
## Rhtslib 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RiboCrypt 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RiboDiPA 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RiboProfiling 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ribor 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## riboSeqR 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ribosomeProfilingQC 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ridge 3.3 2022-04-11 [2] CRAN (R 4.4.1)
## rifi 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rifiComparative 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RImmPort 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rintrojs 0.3.4 2024-01-11 [2] CRAN (R 4.4.1)
## rio 1.2.3 2024-09-25 [2] CRAN (R 4.4.1)
## Risa 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RISmed 2.3.0 2021-07-05 [2] CRAN (R 4.4.1)
## RITAN 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RITANdata 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## ritis 1.0.0 2021-02-02 [2] CRAN (R 4.4.1)
## RIVER 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rjags 4-16 2024-08-19 [2] CRAN (R 4.4.1)
## rJava 1.0-11 2024-01-26 [2] CRAN (R 4.4.1)
## RJMCMCNucleosomes 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rjson 0.2.23 2024-09-16 [2] CRAN (R 4.4.1)
## rjsoncons 1.3.1 2024-07-07 [2] CRAN (R 4.4.1)
## RJSONIO 1.3-1.9 2023-11-27 [2] CRAN (R 4.4.1)
## Rlab 4.0 2022-05-04 [2] CRAN (R 4.4.1)
## rlang 1.1.4 2024-06-04 [2] CRAN (R 4.4.1)
## RLassoCox 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rlecuyer 0.3-8 2023-12-02 [2] CRAN (R 4.4.1)
## rlist 0.4.6.2 2021-09-03 [2] CRAN (R 4.4.1)
## RLMM 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rmagpie 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RMallow 1.1 2020-02-07 [2] CRAN (R 4.4.1)
## RMariaDB 1.3.2 2024-05-27 [2] CRAN (R 4.4.1)
## rmarkdown 2.28 2024-08-17 [2] CRAN (R 4.4.1)
## RMassBank 3.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RMassBankData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rmdformats 1.0.4 2022-05-17 [2] CRAN (R 4.4.1)
## rmelting 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rmeta 3.0 2018-03-20 [2] CRAN (R 4.4.1)
## rmio 0.4.0 2022-02-17 [2] CRAN (R 4.4.1)
## Rmisc 1.5.1 2022-05-02 [2] CRAN (R 4.4.1)
## Rmixmod 2.1.10 2023-12-13 [2] CRAN (R 4.4.1)
## Rmmquant 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rmpfr 0.9-5 2024-01-21 [2] CRAN (R 4.4.1)
## Rmpi 0.7-2.1 2024-09-23 [2] CRAN (R 4.4.1)
## rms 6.8-2 2024-08-23 [2] CRAN (R 4.4.1)
## RMSNumpress 1.0.1 2021-02-04 [2] CRAN (R 4.4.1)
## rmspc 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RMTstat 0.3.1 2022-04-12 [2] CRAN (R 4.4.1)
## rmutil 1.1.10 2022-10-27 [2] CRAN (R 4.4.1)
## RMySQL 0.10.29 2024-10-04 [2] CRAN (R 4.4.1)
## rmzqc 0.5.4 2024-04-16 [2] CRAN (R 4.4.1)
## RNAAgeCalc 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAdecay 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rnaEditr 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAmodR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAmodR.AlkAnilineSeq 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAmodR.Data 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RNAmodR.ML 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAmodR.RiboMethSeq 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAsense 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAseq123 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## rnaseqcomp 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAseqCovarImpute 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNAseqData.HNRNPC.bam.chr14 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rnaseqDTU 1.25.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## rnaseqGene 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## RnaSeqGeneEdgeRQL 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## RNASeqPower 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RnaSeqSampleSize 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RnaSeqSampleSizeData 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads.hg19 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads.hg38 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads.mm10 2.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads.mm9 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RnBeads.rn5 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rncl 0.8.7 2023-01-08 [2] CRAN (R 4.4.1)
## RNeXML 2.4.11 2023-02-01 [2] CRAN (R 4.4.1)
## rngtools 1.5.2 2021-09-20 [2] CRAN (R 4.4.1)
## rngWELL 0.10-10 2024-10-17 [2] CRAN (R 4.4.1)
## RNifti 1.7.0 2024-06-19 [2] CRAN (R 4.4.1)
## Rnits 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RNOmni 1.0.1.2 2023-09-11 [2] CRAN (R 4.4.1)
## roar 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## roastgsa 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## robslopes 1.1.3 2023-04-27 [2] CRAN (R 4.4.1)
## robust 0.7-5 2024-08-17 [2] CRAN (R 4.4.1)
## robustbase 0.99-4-1 2024-09-27 [2] CRAN (R 4.4.1)
## RobustRankAggreg 1.2.1 2022-10-03 [2] CRAN (R 4.4.1)
## ROC 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ROCit 2.1.2 2024-05-16 [2] CRAN (R 4.4.1)
## ROCpAI 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ROCR 1.0-11 2020-05-02 [2] CRAN (R 4.4.1)
## ROI 1.0-1 2023-04-20 [2] CRAN (R 4.4.1)
## ROI.plugin.lpsolve 1.0-2 2023-07-07 [2] CRAN (R 4.4.1)
## RolDE 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rols 3.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ROntoTools 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rook 1.2 2022-11-07 [2] CRAN (R 4.4.1)
## rootSolve 1.8.2.4 2023-09-21 [2] CRAN (R 4.4.1)
## ropls 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## roptim 0.1.6 2022-08-06 [2] CRAN (R 4.4.1)
## rorcid 0.7.0 2021-01-20 [2] CRAN (R 4.4.1)
## ROSeq 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rotl 3.1.0 2023-06-15 [2] CRAN (R 4.4.1)
## ROTS 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## roxygen2 7.3.2 2024-06-28 [2] CRAN (R 4.4.1)
## roxyglobals 1.0.0 2023-08-21 [2] CRAN (R 4.4.1)
## roxytest 0.0.2 2023-01-11 [2] CRAN (R 4.4.1)
## RPA 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rpart 4.1.23 2023-12-05 [3] CRAN (R 4.4.1)
## rpart.plot 3.1.2 2024-02-26 [2] CRAN (R 4.4.1)
## rphylopic 1.5.0 2024-09-04 [2] CRAN (R 4.4.1)
## RPMM 1.25 2017-02-28 [2] CRAN (R 4.4.1)
## RPostgres 1.4.7 2024-05-27 [2] CRAN (R 4.4.1)
## RPostgreSQL 0.7-7 2024-09-30 [2] CRAN (R 4.4.1)
## rprimer 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rprojroot 2.0.4 2023-11-05 [2] CRAN (R 4.4.1)
## RProtoBufLib 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RPushbullet 0.3.4 2021-03-01 [2] CRAN (R 4.4.1)
## rpx 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rqc 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rqt 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rqubic 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rrBLUP 4.6.3 2023-12-10 [2] CRAN (R 4.4.1)
## RRBSdata 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rrcov 1.7-6 2024-08-19 [2] CRAN (R 4.4.1)
## rRDP 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rRDPData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## rredlist 0.7.1 2022-11-11 [2] CRAN (R 4.4.1)
## RRHO 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rrvgo 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rsample 1.2.1 2024-03-25 [2] CRAN (R 4.4.1)
## Rsamtools 2.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rsbml 2.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rScudo 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rsemmed 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RSeqAn 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RSKC 2.4.2 2016-08-28 [2] CRAN (R 4.4.1)
## rslurm 0.6.2 2023-02-24 [2] CRAN (R 4.4.1)
## rsm 2.10.5 2024-06-09 [2] CRAN (R 4.4.1)
## RSNNS 0.4-17 2023-11-30 [2] CRAN (R 4.4.1)
## Rsolnp 1.16 2015-12-28 [2] CRAN (R 4.4.1)
## rsparse 0.5.2 2024-06-28 [2] CRAN (R 4.4.1)
## RSpectra 0.16-2 2024-07-18 [2] CRAN (R 4.4.1)
## rSpectral 1.0.0.10 2023-01-18 [2] CRAN (R 4.4.1)
## rsq 2.7 2024-09-29 [2] CRAN (R 4.4.1)
## RSQLite 2.3.7 2024-05-27 [2] CRAN (R 4.4.1)
## rstan 2.32.6 2024-03-05 [2] CRAN (R 4.4.1)
## rstantools 2.4.0 2024-01-31 [2] CRAN (R 4.4.1)
## rstatix 0.7.2 2023-02-01 [2] CRAN (R 4.4.1)
## rstudioapi 0.17.1 2024-10-22 [2] CRAN (R 4.4.1)
## Rsubread 2.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rsvd 1.0.5 2021-04-16 [2] CRAN (R 4.4.1)
## rsvg 2.6.1 2024-09-20 [2] CRAN (R 4.4.1)
## RSVSim 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rSWeeP 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTCA 1.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.clinical 20151101.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.CNV 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.methylation 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.miRNASeq 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.mRNA 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.mutations 20151101.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.PANCAN12 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.rnaseq 20151101.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGA.RPPA 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RTCGAToolbox 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rTensor 1.4.8 2021-05-15 [2] CRAN (R 4.4.1)
## RTN 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTNduals 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTNsurvival 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTopper 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rtpca 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rtracklayer 1.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rtreemix 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RTriangle 1.6-0.14 2024-09-05 [2] CRAN (R 4.4.1)
## rTRM 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rTRMui 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Rtsne 0.17 2023-12-07 [2] CRAN (R 4.4.1)
## Rttf2pt1 1.3.12 2023-01-22 [2] CRAN (R 4.4.1)
## runibic 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RUnit 0.4.33 2024-02-22 [2] CRAN (R 4.4.1)
## runonce 0.2.3 2021-10-02 [2] CRAN (R 4.4.1)
## ruv 0.9.7.1 2019-08-30 [2] CRAN (R 4.4.1)
## RUVcorr 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RUVnormalize 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RUVnormalizeData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## RUVSeq 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rvcheck 0.2.1 2021-10-22 [2] CRAN (R 4.4.1)
## RVenn 1.1.0 2019-07-18 [2] CRAN (R 4.4.1)
## rversions 2.1.2 2022-08-31 [2] CRAN (R 4.4.1)
## rvest 1.0.4 2024-02-12 [2] CRAN (R 4.4.1)
## rvinecopulib 0.6.3.1.1 2023-02-23 [2] CRAN (R 4.4.1)
## Rvisdiff 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RVS 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## RWeka 0.4-46 2023-03-07 [2] CRAN (R 4.4.1)
## RWekajars 3.9.3-2 2019-10-19 [2] CRAN (R 4.4.1)
## rWikiPathways 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## rworkflows 1.0.2 2024-09-22 [2] CRAN (R 4.4.1)
## s2 1.1.7 2024-07-17 [2] CRAN (R 4.4.1)
## S4Arrays 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## s4vd 1.1-1 2015-11-19 [2] CRAN (R 4.4.1)
## S4Vectors 0.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## S7 0.1.1 2023-09-17 [2] CRAN (R 4.4.1)
## sabre 0.4.3 2022-08-17 [2] CRAN (R 4.4.1)
## safe 3.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## safetensors 0.1.2 2023-09-12 [2] CRAN (R 4.4.1)
## sagenhaft 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SAIGEgds 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sampleClassifier 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sampleClassifierData 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## sampling 2.10 2023-10-29 [2] CRAN (R 4.4.1)
## samr 3.0 2018-10-16 [2] CRAN (R 4.4.1)
## SamSPECTRAL 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sandwich 3.1-1 2024-09-15 [2] CRAN (R 4.4.1)
## sangeranalyseR 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sangerseqR 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SANTA 2.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SARC 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sarks 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## saseR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sass 0.4.9 2024-03-15 [2] CRAN (R 4.4.1)
## satuRn 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SAVER 1.1.2 2019-11-13 [2] CRAN (R 4.4.1)
## SBGNview 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SBGNview.data 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SBMLR 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SC3 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scaeData 1.1.2 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## Scale4C 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ScaledMatrix 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scales 1.3.0 2023-11-28 [2] CRAN (R 4.4.1)
## scam 1.2-17 2024-06-19 [2] CRAN (R 4.4.1)
## SCAN.UPC 2.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scanMiR 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scanMiRApp 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scanMiRData 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scAnnotatR 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scAnnotatR.models 0.99.10 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## SCANVIS 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCArray 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCArray.sat 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scATAC.Explorer 1.11.4 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scater 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scatterHatch 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scattermore 1.2 2023-06-12 [2] CRAN (R 4.4.1)
## scatterpie 0.2.4 2024-08-28 [2] CRAN (R 4.4.1)
## scatterplot3d 0.3-44 2023-05-05 [2] CRAN (R 4.4.1)
## scBFA 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCBN 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scBubbletree 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scCB2 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scClassify 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sccomp 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sccore 1.0.5 2024-02-23 [2] CRAN (R 4.4.1)
## scDataviz 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDblFinder 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDD 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDDboost 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scde 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDesign3 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDiagnostics 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scDotPlot 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scds 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCFA 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scFeatureFilter 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scFeatures 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scGPS 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## schex 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scHOT 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scico 1.5.0 2023-08-14 [2] CRAN (R 4.4.1)
## scider 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scifer 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCLCBam 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scmap 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scMerge 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scMET 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scmeth 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scMitoMut 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scMultiome 1.5.7 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scMultiSim 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCnorm 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scone 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Sconify 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SCOPE 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scoreInvHap 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scoup 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scp 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scPCA 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scpdata 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scPipe 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scran 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scrapper 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scReClassify 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scRecover 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## screenCounter 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ScreenR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scRepertoire 2.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scrime 1.3.5 2018-12-01 [2] CRAN (R 4.4.1)
## scRNAseq 2.19.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## scRNAseqApp 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scruff 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scry 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scrypt 0.1.6 2023-01-29 [2] CRAN (R 4.4.1)
## scs 3.2.4 2023-04-11 [2] CRAN (R 4.4.1)
## scShapes 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scTensor 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scTGIF 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scTHI 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scTHI.data 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## sctransform 0.4.1 2023-10-19 [2] CRAN (R 4.4.1)
## scTreeViz 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scuttle 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## scviR 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sda 1.3.8 2021-11-21 [2] CRAN (R 4.4.1)
## SDAMS 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seahtrue 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sechm 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seewave 2.2.3 2023-10-19 [2] CRAN (R 4.4.1)
## segmented 2.1-3 2024-10-25 [2] CRAN (R 4.4.1)
## segmenter 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## segmentSeq 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## selectKSigs 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## selectr 0.4-2 2019-11-20 [2] CRAN (R 4.4.1)
## SELEX 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SemDist 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## semisup 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sendmailR 1.4-0 2023-01-12 [2] CRAN (R 4.4.1)
## seq.hotSPOT 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seq2pathway 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seq2pathway.data 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## seqArchR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqArchRplus 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SeqArray 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqc 1.39.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## seqCAT 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqcombo 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SeqGate 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SeqGSEA 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqinr 4.2-36 2023-12-08 [2] CRAN (R 4.4.1)
## seqLogo 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqmagick 0.1.7 2024-01-09 [2] CRAN (R 4.4.1)
## seqminer 9.7 2024-10-02 [2] CRAN (R 4.4.1)
## seqpac 1.5.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## seqPattern 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqsetvis 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SeqSQC 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seqTools 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sequencing 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## SeqVarTools 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seriation 1.5.6 2024-08-19 [2] CRAN (R 4.4.1)
## serumStimulation 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## servr 0.32 2024-10-04 [2] CRAN (R 4.4.1)
## sesame 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sesameData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## sessioninfo 1.2.2 2021-12-06 [2] CRAN (R 4.4.1)
## SEtools 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## setRNG 2024.2-1 2024-02-18 [2] CRAN (R 4.4.1)
## sets 1.0-25 2023-12-06 [2] CRAN (R 4.4.1)
## settings 0.2.7 2021-05-07 [2] CRAN (R 4.4.1)
## Seurat 5.1.0 2024-05-10 [2] CRAN (R 4.4.1)
## SeuratObject 5.0.2 2024-05-08 [2] CRAN (R 4.4.1)
## sevenbridges 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sevenC 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## seventyGeneData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## sf 1.0-18 2024-10-11 [2] CRAN (R 4.4.1)
## sfarrow 0.4.1 2021-10-27 [2] CRAN (R 4.4.1)
## SFEData 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## sfheaders 0.4.4 2024-01-17 [2] CRAN (R 4.4.1)
## sfsmisc 1.1-19 2024-08-19 [2] CRAN (R 4.4.1)
## sftime 0.3.0 2024-09-11 [2] CRAN (R 4.4.1)
## SGCP 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sgeostat 1.0-27 2016-02-03 [2] CRAN (R 4.4.1)
## SGSeq 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## shades 1.4.0 2019-08-02 [2] CRAN (R 4.4.1)
## shadowtext 0.1.4 2024-07-18 [2] CRAN (R 4.4.1)
## shape 1.4.6.1 2024-02-23 [2] CRAN (R 4.4.1)
## shapefiles 0.7.2 2022-08-25 [2] CRAN (R 4.4.1)
## SharedObject 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## shiny 1.9.1 2024-08-01 [2] CRAN (R 4.4.1)
## shiny.gosling 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## shiny.react 0.4.0 2024-05-20 [2] CRAN (R 4.4.1)
## shinyAce 0.4.3 2024-10-19 [2] CRAN (R 4.4.1)
## shinyalert 3.1.0 2024-04-27 [2] CRAN (R 4.4.1)
## shinyBS 0.61.1 2022-04-17 [2] CRAN (R 4.4.1)
## shinybusy 0.3.3 2024-03-09 [2] CRAN (R 4.4.1)
## shinycssloaders 1.1.0 2024-07-30 [2] CRAN (R 4.4.1)
## shinycustomloader 0.9.0 2018-03-27 [2] CRAN (R 4.4.1)
## shinyCyJS 1.0.0 2023-09-26 [2] CRAN (R 4.4.1)
## shinydashboard 0.7.2 2021-09-30 [2] CRAN (R 4.4.1)
## shinydashboardPlus 2.0.5 2024-08-18 [2] CRAN (R 4.4.1)
## shinyepico 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## shinyFeedback 0.4.0 2021-09-23 [2] CRAN (R 4.4.1)
## shinyFiles 0.9.3 2022-08-19 [2] CRAN (R 4.4.1)
## shinyHeatmaply 0.2.0 2020-04-06 [2] CRAN (R 4.4.1)
## shinyhelper 0.3.2 2019-11-09 [2] CRAN (R 4.4.1)
## shinyjqui 0.4.1 2022-02-03 [2] CRAN (R 4.4.1)
## shinyjs 2.1.0 2021-12-23 [2] CRAN (R 4.4.1)
## shinylogs 0.2.1 2022-04-18 [2] CRAN (R 4.4.1)
## shinymanager 1.0.410 2022-09-27 [2] CRAN (R 4.4.1)
## shinyMatrix 0.8.0 2024-04-10 [2] CRAN (R 4.4.1)
## shinymeta 0.2.0.3 2021-11-17 [2] CRAN (R 4.4.1)
## shinyMethyl 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## shinyMethylData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## shinypanel 0.1.5 2022-03-25 [2] CRAN (R 4.4.1)
## shinyscreenshot 0.2.1 2023-08-21 [2] CRAN (R 4.4.1)
## shinytest 1.6.1 2024-05-30 [2] CRAN (R 4.4.1)
## shinytest2 0.3.2 2024-04-28 [2] CRAN (R 4.4.1)
## shinythemes 1.2.0 2021-01-25 [2] CRAN (R 4.4.1)
## shinytitle 0.1.0 2021-06-16 [2] CRAN (R 4.4.1)
## shinytoastr 2.2.0 2023-08-30 [2] CRAN (R 4.4.1)
## shinyTree 0.3.1 2023-08-07 [2] CRAN (R 4.4.1)
## shinyvalidate 0.1.3 2023-10-04 [2] CRAN (R 4.4.1)
## shinyWidgets 0.8.7 2024-09-23 [2] CRAN (R 4.4.1)
## ShortRead 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## showimage 1.0.0 2018-01-24 [2] CRAN (R 4.4.1)
## showtext 0.9-7 2024-03-02 [2] CRAN (R 4.4.1)
## showtextdb 3.0 2020-06-04 [2] CRAN (R 4.4.1)
## SIAMCAT 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SICtools 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SIFT.Hsapiens.dbSNP132 1.0.2 2024-09-26 [2] Bioconductor
## SIFT.Hsapiens.dbSNP137 1.0.0 2024-09-26 [2] Bioconductor
## SigCheck 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sigclust 1.1.0.1 2022-06-27 [2] CRAN (R 4.4.1)
## sigFeature 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SigFuge 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## siggenes 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sights 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sigmajs 0.1.5 2020-06-18 [2] CRAN (R 4.4.1)
## Signac 1.14.0 2024-08-21 [2] CRAN (R 4.4.1)
## signal 1.8-1 2024-06-26 [2] CRAN (R 4.4.1)
## signalHsmm 1.5 2018-11-15 [2] CRAN (R 4.4.1)
## signatureSearch 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## signatureSearchData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## signeR 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## signifinder 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sigora 3.1.1 2021-11-30 [2] CRAN (R 4.4.1)
## SigsPack 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sigsquared 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SIM 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SIMAT 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SimBenchData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SimBu 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SIMD 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SimDesign 2.17.1 2024-08-17 [2] CRAN (R 4.4.1)
## SimFFPE 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## similaRpeak 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SIMLR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## simona 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## simPIC 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## simpIntLists 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## simpleCache 0.4.2 2021-04-17 [2] CRAN (R 4.4.1)
## simpleSeg 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## simpleSingleCell 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## simplifyEnrichment 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sincell 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## single 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Single.mTEC.Transcriptomes 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SingleCellAlleleExperiment 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingleCellExperiment 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingleCellMultiModal 1.17.4 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SingleCellSignalR 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## singleCellTK 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingleMoleculeFootprinting 2.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingleMoleculeFootprintingData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SingleR 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingleRBook 1.16.0 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## singscore 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SingscoreAMLMutations 1.21.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## SiPSiC 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sirt 4.1-15 2024-02-06 [2] CRAN (R 4.4.1)
## sitadela 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sitePath 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sitmo 2.0.2 2021-10-13 [2] CRAN (R 4.4.1)
## sizepower 1.76.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sjlabelled 1.2.0 2022-04-10 [2] CRAN (R 4.4.1)
## sjmisc 2.8.10 2024-05-13 [2] CRAN (R 4.4.1)
## sketchR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## skewr 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## skmeans 0.2-17 2024-09-02 [2] CRAN (R 4.4.1)
## slalom 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## slam 0.1-54 2024-10-15 [2] CRAN (R 4.4.1)
## slickR 0.6.0 2022-12-21 [2] CRAN (R 4.4.1)
## slider 0.3.2 2024-10-25 [2] CRAN (R 4.4.1)
## slingshot 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SLqPCR 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sm 2.2-6.0 2024-02-17 [2] CRAN (R 4.4.1)
## smacof 2.1-7 2024-10-10 [2] CRAN (R 4.4.1)
## SMAD 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## smartid 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SmartSVA 0.1.3 2017-05-28 [2] CRAN (R 4.4.1)
## smatr 3.4-8 2018-03-18 [2] CRAN (R 4.4.1)
## SMITE 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## smokingMouse 1.3.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## smoof 1.6.0.3 2023-03-10 [2] CRAN (R 4.4.1)
## smoothclust 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## smoother 1.3 2024-04-03 [2] CRAN (R 4.4.1)
## smoothie 1.0-3 2021-05-31 [2] CRAN (R 4.4.1)
## SmoothWin 3.0.0 2019-07-27 [2] CRAN (R 4.4.1)
## smurf 1.1.5 2023-03-22 [2] CRAN (R 4.4.1)
## SMVar 1.3.4 2022-04-12 [2] CRAN (R 4.4.1)
## sn 2.1.1 2023-04-04 [2] CRAN (R 4.4.1)
## sna 2.8 2024-09-08 [2] CRAN (R 4.4.1)
## SNAData 1.51.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SNAGEE 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SNAGEEdata 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## snakecase 0.11.1 2023-08-27 [2] CRAN (R 4.4.1)
## snapcount 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SNFtool 2.3.1 2021-06-11 [2] CRAN (R 4.4.1)
## snifter 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## snm 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## snow 0.4-4 2021-10-27 [2] CRAN (R 4.4.1)
## SnowballC 0.7.1 2023-04-25 [2] CRAN (R 4.4.1)
## snowfall 1.84-6.3 2023-11-26 [2] CRAN (R 4.4.1)
## SNPediaR 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SNPhood 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SNPhoodData 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SNPlocs.Hsapiens.dbSNP144.GRCh37 0.99.20 2024-09-26 [2] Bioconductor
## SNPlocs.Hsapiens.dbSNP144.GRCh38 0.99.20 2024-09-26 [2] Bioconductor
## SNPlocs.Hsapiens.dbSNP155.GRCh37 0.99.24 2024-09-26 [2] Bioconductor
## SNPlocs.Hsapiens.dbSNP155.GRCh38 0.99.24 2024-09-26 [2] Bioconductor
## SNPRelate 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## snpStats 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## softImpute 1.4-1 2021-05-09 [2] CRAN (R 4.4.1)
## soGGi 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## solrium 1.2.0 2021-05-19 [2] CRAN (R 4.4.1)
## som 0.3-5.2 2024-09-18 [2] CRAN (R 4.4.1)
## SomaDataIO 6.1.0 2024-03-26 [2] CRAN (R 4.4.1)
## SomaScan.db 0.99.10 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## SomatiCAData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SomaticCancerAlterations 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SomaticSignatures 2.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SOMbrero 1.4-2 2024-01-25 [2] CRAN (R 4.4.1)
## SOMNiBUS 1.13.0 2024-10-15 [2] Bioconductor 3.20 (R 4.4.1)
## sonicLength 1.4.7 2021-09-20 [2] CRAN (R 4.4.1)
## sortable 0.5.0 2023-03-26 [2] CRAN (R 4.4.1)
## SoupX 1.6.2 2022-11-01 [2] CRAN (R 4.4.1)
## sourcetools 0.1.7-1 2023-02-01 [2] CRAN (R 4.4.1)
## sp 2.1-4 2024-04-30 [2] CRAN (R 4.4.1)
## SpaceMarkers 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpacePAC 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spacetime 1.3-2 2024-09-04 [2] CRAN (R 4.4.1)
## spam 2.11-0 2024-10-03 [2] CRAN (R 4.4.1)
## Spaniel 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpaNorm 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sparcl 1.0.4 2018-10-24 [2] CRAN (R 4.4.1)
## sparkline 2.0 2016-11-12 [2] CRAN (R 4.4.1)
## sparklyr 1.8.6 2024-04-29 [2] CRAN (R 4.4.1)
## sparrow 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SparseArray 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SparseDC 0.1.17 2018-01-04 [2] CRAN (R 4.4.1)
## sparseLDA 0.1-9 2016-09-22 [2] CRAN (R 4.4.1)
## SparseM 1.84-2 2024-07-17 [2] CRAN (R 4.4.1)
## sparseMatrixStats 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sparseMVN 0.2.2 2021-10-25 [2] CRAN (R 4.4.1)
## sparsenetgls 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sparsepca 0.1.2 2018-04-11 [2] CRAN (R 4.4.1)
## SparseSignatures 2.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spaSim 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SPAtest 3.1.2 2020-09-04 [2] CRAN (R 4.4.1)
## spatial 7.3-17 2023-07-20 [3] CRAN (R 4.4.1)
## SpatialCPie 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpatialDatasets 1.3.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## spatialDE 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpatialDecon 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spatialDmelxsim 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## spatialEco 2.0-2 2023-11-17 [2] CRAN (R 4.4.1)
## SpatialExperiment 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpatialExtremes 2.1-0 2022-04-19 [2] CRAN (R 4.4.1)
## SpatialFeatureExperiment 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spatialHeatmap 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spatialLIBD 1.17.10 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SpatialOmicsOverlay 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spatialSimGP 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpatialTools 1.0.5 2023-07-18 [2] CRAN (R 4.4.1)
## spatstat.data 3.1-2 2024-06-21 [2] CRAN (R 4.4.1)
## spatstat.explore 3.3-3 2024-10-22 [2] CRAN (R 4.4.1)
## spatstat.geom 3.3-3 2024-09-18 [2] CRAN (R 4.4.1)
## spatstat.random 3.3-2 2024-09-18 [2] CRAN (R 4.4.1)
## spatstat.sparse 3.1-0 2024-06-21 [2] CRAN (R 4.4.1)
## spatstat.univar 3.0-1 2024-09-05 [2] CRAN (R 4.4.1)
## spatstat.utils 3.1-0 2024-08-17 [2] CRAN (R 4.4.1)
## spatzie 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spBayes 0.4-8 2024-09-23 [2] CRAN (R 4.4.1)
## spData 2.3.3 2024-09-02 [2] CRAN (R 4.4.1)
## spdep 1.3-6 2024-09-13 [2] CRAN (R 4.4.1)
## spdl 0.0.5 2023-06-18 [2] CRAN (R 4.4.1)
## speaq 2.7.0 2022-05-23 [2] CRAN (R 4.4.1)
## speckle 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## specL 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpeCond 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Spectra 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpectralTAD 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpectraQL 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Spectrum 1.1 2020-02-10 [2] CRAN (R 4.4.1)
## speedglm 0.3-5 2023-05-06 [2] CRAN (R 4.4.1)
## spelling 2.3.1 2024-10-04 [2] CRAN (R 4.4.1)
## SPEM 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SPIA 2.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SPIAT 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spicyR 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spicyWorkflow 1.5.1 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## SpikeIn 1.47.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SpikeInSubset 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## spikeLI 2.66.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spiky 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spillR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spkTools 1.62.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## splancs 2.01-45 2024-05-27 [2] CRAN (R 4.4.1)
## splatter 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpliceWiz 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SplicingFactory 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SplicingGraphs 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## splines 4.4.1 2024-09-25 [3] local
## splineTimeR 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SPLINTER 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## splitstackshape 1.4.8 2019-04-21 [2] CRAN (R 4.4.1)
## splots 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## splus2R 1.3-5 2024-02-18 [2] CRAN (R 4.4.1)
## SPONGE 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spoon 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpotClean 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SPOTlight 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SpotSweeper 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spqn 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spqnData 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## spsComps 0.3.3.0 2023-07-12 [2] CRAN (R 4.4.1)
## SPsimSeq 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## spsUtil 0.2.2 2021-10-30 [2] CRAN (R 4.4.1)
## SQLDataFrame 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sqldf 0.4-11 2017-06-28 [2] CRAN (R 4.4.1)
## SQN 1.0.6 2022-06-10 [2] CRAN (R 4.4.1)
## squallms 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SQUAREM 2021.1 2021-01-13 [2] CRAN (R 4.4.1)
## squash 1.0.9 2020-02-20 [2] CRAN (R 4.4.1)
## sRACIPE 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## srnadiff 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ssc 2.1-0 2019-12-15 [2] CRAN (R 4.4.1)
## sscu 2.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sSeq 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ssize 1.80.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sSNAPPY 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ssPATHS 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ssrch 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ssviz 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## st 1.2.7 2021-11-27 [2] CRAN (R 4.4.1)
## stable 1.1.6 2022-03-02 [2] CRAN (R 4.4.1)
## stabledist 0.7-2 2024-08-17 [2] CRAN (R 4.4.1)
## StabMap 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## stabs 0.6-4 2021-01-29 [2] CRAN (R 4.4.1)
## stageR 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## standR 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## StanHeaders 2.32.10 2024-07-15 [2] CRAN (R 4.4.1)
## stars 0.6-6 2024-07-16 [2] CRAN (R 4.4.1)
## startupmsg 0.9.7 2024-08-29 [2] CRAN (R 4.4.1)
## statebins 1.4.0 2020-07-08 [2] CRAN (R 4.4.1)
## STATegRa 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Statial 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## statip 0.2.3 2019-11-17 [2] CRAN (R 4.4.1)
## statmod 1.5.0 2023-01-06 [2] CRAN (R 4.4.1)
## statnet.common 4.10.0 2024-10-06 [2] CRAN (R 4.4.1)
## stats * 4.4.1 2024-09-25 [3] local
## stats4 4.4.1 2024-09-25 [3] local
## statTarget 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## stemHypoxia 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## stepNorm 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## STexampleData 1.13.3 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## stJoincount 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## stopwords 2.3 2021-10-28 [2] CRAN (R 4.4.1)
## storr 1.2.5 2020-12-01 [2] CRAN (R 4.4.1)
## strandCheckR 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## strawr 0.0.92 2024-07-16 [2] CRAN (R 4.4.1)
## Streamer 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## strex 2.0.1 2024-10-03 [2] CRAN (R 4.4.1)
## STRINGdb 2.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## stringdist 0.9.12 2023-11-28 [2] CRAN (R 4.4.1)
## stringfish 0.16.0 2023-11-28 [2] CRAN (R 4.4.1)
## stringi 1.8.4 2024-05-06 [2] CRAN (R 4.4.1)
## stringr 1.5.1 2023-11-14 [2] CRAN (R 4.4.1)
## strucchange 1.5-4 2024-09-02 [2] CRAN (R 4.4.1)
## struct 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Structstrings 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## structToolbox 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## StructuralVariantAnnotation 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## styler 1.10.3 2024-04-07 [2] CRAN (R 4.4.1)
## SubCellBarCode 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SubcellularSpatialData 1.1.3 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## subSeq 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## subspace 1.0.4 2015-10-12 [2] CRAN (R 4.4.1)
## SUITOR 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SummarizedBenchmark 2.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SummarizedExperiment 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## summarytools 1.0.1 2022-05-20 [2] CRAN (R 4.4.1)
## Summix 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SuperExactTest 1.1.0 2022-03-23 [2] CRAN (R 4.4.1)
## superheat 0.1.0 2017-02-04 [2] CRAN (R 4.4.1)
## SuperLearner 2.0-29 2024-02-20 [2] CRAN (R 4.4.1)
## supersigs 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SuppDists 1.1-9.8 2024-09-03 [2] CRAN (R 4.4.1)
## supraHex 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## surfaltr 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SurfR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## survClust 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## survcomp 1.56.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## survey 4.4-2 2024-03-20 [2] CRAN (R 4.4.1)
## survival 3.7-0 2024-06-05 [3] CRAN (R 4.4.1)
## survivalAnalysis 0.3.0 2022-02-11 [2] CRAN (R 4.4.1)
## survivalROC 1.0.3.1 2022-12-05 [2] CRAN (R 4.4.1)
## survivalsvm 0.0.5 2018-02-05 [2] CRAN (R 4.4.1)
## survminer 0.4.9 2021-03-09 [2] CRAN (R 4.4.1)
## survMisc 0.5.6 2022-04-07 [2] CRAN (R 4.4.1)
## survtype 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sva 3.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## svaNUMT 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## svaRetro 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## svd 0.5.7 2024-09-28 [2] CRAN (R 4.4.1)
## svglite 2.1.3 2023-12-08 [2] CRAN (R 4.4.1)
## svgPanZoom 0.3.4 2020-02-15 [2] CRAN (R 4.4.1)
## SVM2CRMdata 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## SVMDO 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## svMisc 1.2.3 2021-10-11 [2] CRAN (R 4.4.1)
## svUnit 1.0.6 2021-04-19 [2] CRAN (R 4.4.1)
## swamp 1.5.1 2019-12-06 [2] CRAN (R 4.4.1)
## SWATH2stats 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SwathXtend 2.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## swfdr 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## switchBox 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## switchde 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sylly 0.1-6 2020-09-20 [2] CRAN (R 4.4.1)
## sylly.en 0.1-3 2018-03-19 [2] CRAN (R 4.4.1)
## synapsis 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## synapter 2.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## synapterdata 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## synaptome.data 0.99.6 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## synaptome.db 0.99.16 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## synergyfinder 3.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SynExtend 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## synlet 2.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## SynMut 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## syntenet 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## sys 3.4.3 2024-10-04 [2] CRAN (R 4.4.1)
## sysfonts 0.8.9 2024-03-02 [2] CRAN (R 4.4.1)
## systemfonts 1.1.0 2024-05-15 [2] CRAN (R 4.4.1)
## systemPipeR 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## systemPipeRdata 2.9.8 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## systemPipeShiny 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## systemPipeTools 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## syuzhet 1.0.7 2023-08-11 [2] CRAN (R 4.4.1)
## TabulaMurisData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TabulaMurisSenisData 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tadar 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TADCompare 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tagcloud 0.6 2015-07-03 [2] CRAN (R 4.4.1)
## TAM 4.2-21 2024-02-19 [2] CRAN (R 4.4.1)
## tanggle 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TAPseq 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## target 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TargetDecoy 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## targetscan.Hs.eg.db 0.6.1 2024-09-26 [2] Bioconductor
## TargetScore 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TargetScoreData 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TargetSearch 2.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TargetSearchData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tartare 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## taxize 0.9.100.1 2024-08-26 [2] CRAN (R 4.4.1)
## taxonomizr 0.10.6 2023-12-15 [2] CRAN (R 4.4.1)
## TBSignatureProfiler 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TBX20BamSubset 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TCA 1.2.1 2021-02-14 [2] CRAN (R 4.4.1)
## TCC 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAbiolinks 2.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAbiolinksGUI.data 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAcrcmiRNA 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAcrcmRNA 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAMethylation450k 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAutils 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAWorkflow 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## TCGAWorkflowData 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tcltk 4.4.1 2024-09-25 [3] local
## tcltk2 1.2-11 2014-12-20 [2] CRAN (R 4.4.1)
## TCseq 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TDbasedUFE 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TDbasedUFEadv 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TeachingDemos 2.13 2024-02-16 [2] CRAN (R 4.4.1)
## TEKRABber 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TENET.AnnotationHub 0.99.4 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## tensor 1.5 2012-05-05 [2] CRAN (R 4.4.1)
## tensorA 0.36.2.1 2023-12-13 [2] CRAN (R 4.4.1)
## tensorflow 2.16.0 2024-04-15 [2] CRAN (R 4.4.1)
## TENxBrainData 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TENxBUSData 1.19.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TENxIO 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TENxPBMCData 1.23.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tenXplore 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TENxVisiumData 1.13.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TENxXeniumData 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TEQC 4.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ternarynet 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## terra 1.7-83 2024-10-14 [2] CRAN (R 4.4.1)
## terraTCGAdata 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tester 0.2.0 2024-04-04 [2] CRAN (R 4.4.1)
## testthat 3.2.1.1 2024-04-14 [2] CRAN (R 4.4.1)
## text2vec 0.6.4 2023-11-09 [2] CRAN (R 4.4.1)
## textclean 0.9.3 2018-07-23 [2] CRAN (R 4.4.1)
## textshape 1.7.5 2024-04-01 [2] CRAN (R 4.4.1)
## textshaping 0.4.0 2024-05-24 [2] CRAN (R 4.4.1)
## textstem 0.1.4 2018-04-09 [2] CRAN (R 4.4.1)
## TFARM 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tfautograph 0.3.2 2021-09-17 [2] CRAN (R 4.4.1)
## TFBSTools 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TFEA.ChIP 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TFHAZ 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TFisher 0.2.0 2018-03-21 [2] CRAN (R 4.4.1)
## TFMPvalue 0.0.9 2022-10-21 [2] CRAN (R 4.4.1)
## tfprobability 0.15.1 2022-09-01 [2] CRAN (R 4.4.1)
## tfruns 1.5.3 2024-04-19 [2] CRAN (R 4.4.1)
## TFutils 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TH.data 1.1-2 2023-04-17 [2] CRAN (R 4.4.1)
## threejs 0.3.3 2020-01-21 [2] CRAN (R 4.4.1)
## tibble 3.2.1 2023-03-20 [2] CRAN (R 4.4.1)
## tictoc 1.2.1 2024-03-18 [2] CRAN (R 4.4.1)
## tidybayes 3.0.7 2024-09-15 [2] CRAN (R 4.4.1)
## tidybulk 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidyCoverage 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidydr 0.0.5 2023-03-08 [2] CRAN (R 4.4.1)
## tidyFlowCore 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidygate 1.0.14 2024-09-17 [2] CRAN (R 4.4.1)
## tidygraph 1.3.1 2024-01-30 [2] CRAN (R 4.4.1)
## tidyHeatmap 1.8.1 2022-05-20 [2] CRAN (R 4.4.1)
## tidyjson 0.3.2 2023-01-07 [2] CRAN (R 4.4.1)
## tidyomics 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidyr 1.3.1 2024-01-24 [2] CRAN (R 4.4.1)
## tidysbml 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidyselect 1.2.1 2024-03-11 [2] CRAN (R 4.4.1)
## tidyseurat 0.8.0 2024-01-10 [2] CRAN (R 4.4.1)
## tidySingleCellExperiment 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidySpatialExperiment 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidySummarizedExperiment 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidytext 0.4.2 2024-04-10 [2] CRAN (R 4.4.1)
## tidytidbits 0.3.2 2022-03-16 [2] CRAN (R 4.4.1)
## tidytof 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tidytree 0.4.6 2023-12-12 [2] CRAN (R 4.4.1)
## tidyverse 2.0.0 2023-02-22 [2] CRAN (R 4.4.1)
## tidyxl 1.0.10 2023-12-21 [2] CRAN (R 4.4.1)
## tiff 0.1-12 2023-11-28 [2] CRAN (R 4.4.1)
## tightClust 1.1 2018-06-12 [2] CRAN (R 4.4.1)
## tigre 1.60.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tiledb 0.30.2 2024-10-04 [2] CRAN (R 4.4.1)
## TileDBArray 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tilingArray 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## timechange 0.3.0 2024-01-18 [2] CRAN (R 4.4.1)
## timecourse 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## timecoursedata 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## timeDate 4041.110 2024-09-22 [2] CRAN (R 4.4.1)
## timeOmics 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TimerQuant 1.35.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## timescape 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## timeSeries 4041.111 2024-09-22 [2] CRAN (R 4.4.1)
## timsac 1.3.8-4 2023-09-30 [2] CRAN (R 4.4.1)
## TIN 1.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tinesath1cdf 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tinesath1probe 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tinytest 1.4.1 2023-02-22 [2] CRAN (R 4.4.1)
## tinytex 0.53 2024-09-15 [2] CRAN (R 4.4.1)
## tippy 0.1.0 2021-01-11 [2] CRAN (R 4.4.1)
## TissueEnrich 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tissueTreg 1.25.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TitanCNA 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tkrplot 0.0-27 2022-10-18 [2] CRAN (R 4.4.1)
## tkWidgets 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tLOH 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tm 0.7-14 2024-08-13 [2] CRAN (R 4.4.1)
## TMB 1.9.15 2024-09-09 [2] CRAN (R 4.4.1)
## TMExplorer 1.15.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TMixClust 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TMSig 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tmvtnorm 1.6 2023-12-05 [2] CRAN (R 4.4.1)
## tnet 3.0.16 2020-02-24 [2] CRAN (R 4.4.1)
## TnT 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TOAST 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## toastui 0.3.4 2024-09-18 [2] CRAN (R 4.4.1)
## tofsimsData 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tokenizers 0.3.0 2022-12-22 [2] CRAN (R 4.4.1)
## tomoda 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tomoseqr 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tools 4.4.1 2024-09-25 [3] local
## TOP 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## topconfects 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TopDom 0.10.1 2021-05-06 [2] CRAN (R 4.4.1)
## topdownr 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## topdownrdata 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## topGO 2.58.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## topicdoc 0.1.1 2022-07-17 [2] CRAN (R 4.4.1)
## topicmodels 0.2-17 2024-08-14 [2] CRAN (R 4.4.1)
## topologyGSA 1.5.0 2023-09-25 [2] CRAN (R 4.4.1)
## torch 0.13.0 2024-05-21 [2] CRAN (R 4.4.1)
## ToxicoGx 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TPP 3.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TPP2D 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tpSVG 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tracktables 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## trackViewer 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tractor.base 3.4.2 2024-02-27 [2] CRAN (R 4.4.1)
## tradeSeq 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TrajectoryGeometry 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TrajectoryUtils 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transcriptogramer 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transcriptR 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transformGamPoi 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transformr 0.1.5 2024-02-26 [2] CRAN (R 4.4.1)
## transite 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tRanslatome 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transmogR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## transomics2cytoscape 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TransOmicsData 1.1.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## transport 0.15-4 2024-09-16 [2] CRAN (R 4.4.1)
## TransView 1.50.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## traseR 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## traviz 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TreeAndLeaf 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## treeclimbR 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## treeio 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## treekoR 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## treemap 2.4-4 2023-05-25 [2] CRAN (R 4.4.1)
## TreeSummarizedExperiment 2.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TreeTools 1.12.0 2024-07-25 [2] CRAN (R 4.4.1)
## TREG 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Trendy 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TRESS 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tricycle 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## triebeard 0.4.1 2023-03-04 [2] CRAN (R 4.4.1)
## trigger 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## trio 3.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## triplex 1.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tripr 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tRNA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tRNAdbImport 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tRNAscanImport 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TRONCO 2.38.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## truncdist 1.0-2 2016-08-30 [2] CRAN (R 4.4.1)
## truncnorm 1.0-9 2023-03-20 [2] CRAN (R 4.4.1)
## trust 0.1-8 2020-01-10 [2] CRAN (R 4.4.1)
## TSAR 1.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TSCAN 1.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tseries 0.10-58 2024-09-23 [2] CRAN (R 4.4.1)
## tsne 0.1-3.1 2022-03-28 [2] CRAN (R 4.4.1)
## TSP 1.2-4 2023-04-04 [2] CRAN (R 4.4.1)
## ttgsea 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TTMap 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TTR 0.24.4 2023-11-28 [2] CRAN (R 4.4.1)
## ttservice 0.4.1 2024-06-07 [2] CRAN (R 4.4.1)
## tuberculosis 1.11.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TumourMethData 1.3.0 2024-10-05 [2] Bioconductor 3.20 (R 4.4.1)
## tuneR 1.4.7 2024-04-17 [2] CRAN (R 4.4.1)
## TurboNorm 1.54.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TVTB 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tweeDEseq 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tweeDEseqCountData 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## tweedie 2.3.5 2022-08-17 [2] CRAN (R 4.4.1)
## tweenr 2.0.3 2024-02-26 [2] CRAN (R 4.4.1)
## twilight 1.82.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## twoddpcr 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## txcutr 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## TxDb.Athaliana.BioMart.plantsmart22 3.0.1 2024-09-26 [2] Bioconductor
## TxDb.Athaliana.BioMart.plantsmart28 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Celegans.UCSC.ce11.ensGene 3.15.0 2024-09-26 [2] Bioconductor
## TxDb.Celegans.UCSC.ce11.refGene 3.4.6 2024-09-26 [2] Bioconductor
## TxDb.Celegans.UCSC.ce6.ensGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Dmelanogaster.UCSC.dm3.ensGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Dmelanogaster.UCSC.dm6.ensGene 3.12.0 2024-09-26 [2] Bioconductor
## TxDb.Drerio.UCSC.danRer10.refGene 3.4.6 2024-09-26 [2] Bioconductor
## TxDb.Ggallus.UCSC.galGal5.refGene 3.12.0 2024-09-26 [2] Bioconductor
## TxDb.Hsapiens.UCSC.hg18.knownGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Hsapiens.UCSC.hg19.knownGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Hsapiens.UCSC.hg19.lincRNAsTranscripts 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Hsapiens.UCSC.hg38.knownGene 3.20.0 2024-10-01 [2] Bioconductor
## TxDb.Mmulatta.UCSC.rheMac10.refGene 3.14.0 2024-09-26 [2] Bioconductor
## TxDb.Mmusculus.UCSC.mm10.ensGene 3.4.0 2024-09-26 [2] Bioconductor
## TxDb.Mmusculus.UCSC.mm10.knownGene 3.10.0 2024-09-26 [2] Bioconductor
## TxDb.Mmusculus.UCSC.mm39.knownGene 3.20.0 2024-10-01 [2] Bioconductor
## TxDb.Mmusculus.UCSC.mm39.refGene 3.19.0 2024-09-26 [2] Bioconductor
## TxDb.Mmusculus.UCSC.mm9.knownGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Rnorvegicus.UCSC.rn4.ensGene 3.2.2 2024-09-26 [2] Bioconductor
## TxDb.Rnorvegicus.UCSC.rn5.refGene 3.12.0 2024-09-26 [2] Bioconductor
## TxDb.Rnorvegicus.UCSC.rn6.refGene 3.4.6 2024-09-26 [2] Bioconductor
## TxDb.Rnorvegicus.UCSC.rn7.refGene 3.15.0 2024-09-26 [2] Bioconductor
## TxDb.Scerevisiae.UCSC.sacCer3.sgdGene 3.2.2 2024-09-26 [2] Bioconductor
## txdbmaker 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tximeta 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tximport 1.34.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tximportData 1.33.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## TypeInfo 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## tzdb 0.4.0 2023-05-12 [2] CRAN (R 4.4.1)
## UCell 2.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## ucminf 1.2.2 2024-06-24 [2] CRAN (R 4.4.1)
## UCSC.utils 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UCSCRepeatMasker 3.17.3 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## Ularcirc 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## umap 0.2.10.0 2023-02-01 [2] CRAN (R 4.4.1)
## UMI4Cats 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## uncoverappLib 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UNDO 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## unifiedWMWqPCR 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UniProt.ws 2.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UniProtKeywords 0.99.7 2024-10-30 [2] Bioconductor 3.20 (R 4.4.1)
## uniqtag 1.0.1 2022-06-10 [2] CRAN (R 4.4.1)
## Uniquorn 2.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## units 0.8-5 2023-11-28 [2] CRAN (R 4.4.1)
## unittest 1.7-0 2024-08-16 [2] CRAN (R 4.4.1)
## universalmotif 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## unmarked 1.4.3 2024-09-01 [2] CRAN (R 4.4.1)
## updateObject 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UPDhmm 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## UpSetR 1.4.0 2019-05-22 [2] CRAN (R 4.4.1)
## urca 1.3-4 2024-05-27 [2] CRAN (R 4.4.1)
## urlchecker 1.0.1 2021-11-30 [2] CRAN (R 4.4.1)
## urltools 1.7.3 2019-04-14 [2] CRAN (R 4.4.1)
## usethis 3.0.0 2024-07-29 [2] CRAN (R 4.4.1)
## uSORT 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## utf8 1.2.4 2023-10-22 [2] CRAN (R 4.4.1)
## utils * 4.4.1 2024-09-25 [3] local
## uuid 1.2-1 2024-07-29 [2] CRAN (R 4.4.1)
## uwot 0.2.2 2024-04-21 [2] CRAN (R 4.4.1)
## V8 6.0.0 2024-10-12 [2] CRAN (R 4.4.1)
## VAExprs 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## validate 1.1.5 2024-02-14 [2] CRAN (R 4.4.1)
## VAM 1.1.0 2023-11-05 [2] CRAN (R 4.4.1)
## VanillaICE 1.68.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VarCon 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## varhandle 2.0.6 2023-09-30 [2] CRAN (R 4.4.1)
## variancePartition 1.36.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VariantAnnotation 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VariantExperiment 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VariantFiltering 1.42.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## variants 1.29.0 2024-10-25 [2] Bioconductor 3.20 (R 4.4.1)
## VariantTools 1.48.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VariantToolsData 1.29.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## varSelRF 0.7-8 2017-07-10 [2] CRAN (R 4.4.1)
## VaSP 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vbmp 1.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vcd 1.4-13 2024-09-16 [2] CRAN (R 4.4.1)
## VCFArray 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vcfR 1.15.0 2023-12-08 [2] CRAN (R 4.4.1)
## vctrs 0.6.5 2023-12-01 [2] CRAN (R 4.4.1)
## vdiffr 1.0.7 2023-09-22 [2] CRAN (R 4.4.1)
## VDJdive 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VectraPolarisData 1.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## VegaMC 3.44.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vegan 2.6-8 2024-08-28 [2] CRAN (R 4.4.1)
## velociraptor 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## veloviz 1.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## venn 1.12 2024-01-08 [2] CRAN (R 4.4.1)
## VennDetail 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VennDiagram 1.7.3 2022-04-12 [2] CRAN (R 4.4.1)
## venneuler 1.1-4 2024-01-14 [2] CRAN (R 4.4.1)
## verification 1.42 2015-07-15 [2] CRAN (R 4.4.1)
## VERSO 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VGAM 1.1-12 2024-09-18 [2] CRAN (R 4.4.1)
## vidger 1.26.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VIM 6.2.2 2022-08-25 [2] CRAN (R 4.4.1)
## vioplot 0.5.0 2024-07-05 [2] CRAN (R 4.4.1)
## viper 1.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vipor 0.4.7 2023-12-18 [2] CRAN (R 4.4.1)
## viridis 0.6.5 2024-01-29 [2] CRAN (R 4.4.1)
## viridisLite 0.4.2 2023-05-02 [2] CRAN (R 4.4.1)
## visdat 0.6.0 2023-02-02 [2] CRAN (R 4.4.1)
## ViSEAGO 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VisiumIO 1.2.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## visNetwork 2.1.2 2022-09-29 [2] CRAN (R 4.4.1)
## vissE 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Voyager 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## VplotR 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vroom 1.6.5 2023-12-05 [2] CRAN (R 4.4.1)
## vsclust 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vsn 3.74.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vtpnet 0.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vulcan 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## vulcandata 1.27.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## waddR 1.20.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## waffle 1.0.2 2023-09-30 [2] CRAN (R 4.4.1)
## waiter 0.2.5 2022-01-03 [2] CRAN (R 4.4.1)
## waldo 0.5.3 2024-08-23 [2] CRAN (R 4.4.1)
## warp 0.2.1 2023-11-02 [2] CRAN (R 4.4.1)
## wateRmelon 2.12.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## wavClusteR 2.40.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## waveslim 1.8.5 2024-06-04 [2] CRAN (R 4.4.1)
## wavethresh 4.7.3 2024-08-19 [2] CRAN (R 4.4.1)
## wdm 0.2.4 2023-08-10 [2] CRAN (R 4.4.1)
## weaver 1.72.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## webbioc 1.78.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## webchem 1.3.0 2023-06-09 [2] CRAN (R 4.4.1)
## webdriver 1.0.6 2021-01-12 [2] CRAN (R 4.4.1)
## WeberDivechaLCdata 1.7.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## webshot 0.5.5 2023-06-26 [2] CRAN (R 4.4.1)
## websocket 1.4.2 2024-07-22 [2] CRAN (R 4.4.1)
## webutils 1.2.2 2024-10-04 [2] CRAN (R 4.4.1)
## weights 1.0.4 2021-06-10 [2] CRAN (R 4.4.1)
## weitrix 1.18.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## WES.1KG.WUGSC 1.37.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## wesanderson 0.3.7 2023-10-31 [2] CRAN (R 4.4.1)
## WGCNA 1.73 2024-09-18 [2] CRAN (R 4.4.1)
## WGSmapp 1.17.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## wheatmap 0.2.0 2022-02-27 [2] CRAN (R 4.4.1)
## whisker 0.4.1 2022-12-05 [2] CRAN (R 4.4.1)
## widgetTools 1.84.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## widyr 0.1.5 2022-09-13 [2] CRAN (R 4.4.1)
## wiggleplotr 1.30.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## WikidataQueryServiceR 1.0.0 2020-06-16 [2] CRAN (R 4.4.1)
## WikidataR 2.3.3 2021-11-16 [2] CRAN (R 4.4.1)
## WikipediR 1.7.1 2024-04-05 [2] CRAN (R 4.4.1)
## wikitaxa 0.4.0 2020-06-29 [2] CRAN (R 4.4.1)
## withr 3.0.2 2024-10-28 [2] CRAN (R 4.4.1)
## wk 0.9.4 2024-10-11 [2] CRAN (R 4.4.1)
## word2vec 0.4.0 2023-10-07 [2] CRAN (R 4.4.1)
## wordcloud 2.6 2018-08-24 [2] CRAN (R 4.4.1)
## wordcloud2 0.2.1 2018-01-03 [2] CRAN (R 4.4.1)
## worrms 0.4.3 2023-06-20 [2] CRAN (R 4.4.1)
## wpm 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## wppi 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Wrench 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## writexl 1.5.1 2024-10-04 [2] CRAN (R 4.4.1)
## WriteXLS 6.7.0 2024-07-20 [2] CRAN (R 4.4.1)
## wrswoR 1.1.1 2020-07-26 [2] CRAN (R 4.4.1)
## xcms 4.4.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## xcore 1.10.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## xcoredata 1.9.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## XDE 2.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## xenLite 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## Xeva 1.22.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## xfun 0.48 2024-10-03 [2] CRAN (R 4.4.1)
## xgboost 1.7.8.1 2024-07-24 [2] CRAN (R 4.4.1)
## XhybCasneuf 1.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## XINA 1.24.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## XLConnect 1.1.0 2024-08-22 [2] CRAN (R 4.4.1)
## xlsx 0.6.5 2020-11-10 [2] CRAN (R 4.4.1)
## xlsxjars 0.6.1 2014-08-22 [2] CRAN (R 4.4.1)
## xmapbridge 1.64.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## XML 3.99-0.17 2024-06-25 [2] CRAN (R 4.4.1)
## xml2 1.3.6 2023-12-04 [2] CRAN (R 4.4.1)
## XML2R 0.0.8 2024-06-04 [2] CRAN (R 4.4.1)
## xmlparsedata 1.0.5 2021-03-06 [2] CRAN (R 4.4.1)
## XNAString 1.14.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## xopen 1.0.1 2024-04-25 [2] CRAN (R 4.4.1)
## xtable 1.8-4 2019-04-21 [2] CRAN (R 4.4.1)
## XtraSNPlocs.Hsapiens.dbSNP144.GRCh37 0.99.12 2024-09-26 [2] Bioconductor
## XtraSNPlocs.Hsapiens.dbSNP144.GRCh38 0.99.12 2024-09-26 [2] Bioconductor
## xts 0.14.1 2024-10-15 [2] CRAN (R 4.4.1)
## XVector 0.46.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## yaImpute 1.0-34.1 2024-09-21 [2] CRAN (R 4.4.1)
## yaml 2.3.10 2024-07-26 [2] CRAN (R 4.4.1)
## yamss 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## YAPSA 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## yardstick 1.3.1 2024-03-21 [2] CRAN (R 4.4.1)
## yarn 1.32.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## yeast2.db 3.13.0 2024-09-26 [2] Bioconductor
## yeastCC 1.45.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## yeastExpData 0.51.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## yeastGSData 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## yeastNagalakshmi 1.41.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## yeastRNASeq 0.43.0 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## yesno 0.1.3 2024-07-26 [2] CRAN (R 4.4.1)
## yulab.utils 0.1.7 2024-08-26 [2] CRAN (R 4.4.1)
## zCompositions 1.5.0-4 2024-06-19 [2] CRAN (R 4.4.1)
## zeallot 0.1.0 2018-01-28 [2] CRAN (R 4.4.1)
## zebrafishRNASeq 1.25.1 2024-10-26 [2] Bioconductor 3.20 (R 4.4.1)
## zellkonverter 1.16.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zenith 1.8.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zFPKM 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zinbwave 1.28.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zip 2.3.1 2024-01-27 [2] CRAN (R 4.4.1)
## zitools 1.0.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zlibbioc 1.52.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
## zoo 1.8-12 2023-04-13 [2] CRAN (R 4.4.1)
## ZygosityPredictor 1.6.0 2024-10-29 [2] Bioconductor 3.20 (R 4.4.1)
##
## [1] /home/biocbuild/bbs-3.20-books/tmpdir/RtmphzOvfD/Rinst2020235c565b68
## [2] /home/biocbuild/bbs-3.20-bioc/R/site-library
## [3] /home/biocbuild/bbs-3.20-bioc/R/library
##
## β Python configuration ββββββββββββββββββββββββββββββββββββββββββββββββββββ
## Python is not available
##
## βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ