vennDiagramLab is the R companion to the Venn Diagram Lab web tool and the Python venn-diagram-lab package. It provides headless Venn / UpSet / Network diagram analysis and rendering for bioinformaticians and biostatisticians who work natively in R, with byte-equivalent outputs that match the web tool and the Python package down to the byte.
solve_2set) and approximate (solve_3set) solvers.ComplexUpset with sort-by-size / sort-by-degree, depth / heatmap / custom color modes, and threshold cutoffs.ggraph + tidygraph, with configurable edge metric (intersection / Jaccard / fold enrichment / overlap coefficient) and significance coloring.ggplot2 layer (geom_venn()) and broom-compatible S3 methods (tidy() / glance() / augment()) for tidyverse + targets / drake pipeline integration.install.packages("vennDiagramLab")
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("vennDiagramLab")
The package source lives in the r/ subdirectory of the monorepo:
install.packages("remotes")
remotes::install_github("ZoliQua/Venn-Diagram-Lab", subdir = "r")
A standalone mirror (no subdir = needed) is kept in sync on every push to main for Bioconductor's Single Package Builder, which requires DESCRIPTION at repo root:
remotes::install_github("ZoliQua/vennDiagramLab")
Both installs produce the same package; the mirror exists purely to satisfy Bioc's submission tooling.
library(vennDiagramLab)
# Load a bundled dataset (4 cancer driver source catalogs)
ds <- load_sample("dataset_real_cancer_drivers_4")
result <- analyze(ds)
# Render the Venn diagram as SVG
svg <- render_venn_svg(result, title = "Cancer driver overlap")
writeLines(svg, "cancer_drivers.svg")
# Or get a tidy summary
broom::tidy(result)
# Or generate a multi-page PDF report
to_pdf_report(result, "cancer_drivers.pdf")
See vignette("v01_quickstart") for the full intro and browseVignettes("vennDiagramLab") for the complete eight-vignette gallery.
vignette(package = "vennDiagramLab")):v01_quickstart — five-step intro.v02_real_cancer_drivers — long-form biological walkthrough (Vogelstein, COSMIC CGC, OncoKB, IntOGen).v03_proportional_diagrams — area-proportional 2/3-set layouts and the low-level geometry helpers.v04_upset_vs_venn_vs_network — choosing the right visualization per set count.v05_statistics_deep_dive — Jaccard / Dice / hypergeometric / BH-FDR worked examples.v06_pipeline_integration — broom + dplyr + targets pipeline sketch.v07_pdf_reports — composite multi-page PDF generation.v08_custom_styling_and_export — custom names / colors, geom_venn(), multi-format export.vennDiagramLab is one of three coordinated implementations sharing the same SVG model library, statistics, and byte-equivalent TSV outputs:
venn-diagram-lab on PyPI): https://pypi.org/project/venn-diagram-lab/vennDiagramLab on CRAN + Bioconductor)main): https://github.com/ZoliQua/vennDiagramLabThe mirror is read-only — file changes should always be made in the monorepo. A GitHub Action splits the r/ subtree and force-pushes it (with a Bioc 0.99.z Version override) to the mirror on every push to main.
If you use vennDiagramLab in published work, please cite both the software and the version you used.
After install:
citation("vennDiagramLab")
returns a bibentry with the correct version + DOI for the installed copy.
The Zenodo concept DOI 10.5281/zenodo.19510813 always resolves to the latest version of vennDiagramLab. Cite this DOI when you want readers to be pointed at whatever is current.
Each tagged R release (r-vX.Y.Z) mints its own Zenodo deposit and DOI. The most recent version-specific record is at https://zenodo.org/records/20088768; the per-version DOI from any release archive is preferable for exact reproducibility.
Dul Z., Ölbei M., Thomas N.S.B., Si Ammour A., Csikász-Nagy A. (2026).
vennDiagramLab: Headless Venn diagram analysis and rendering.
R package version 2.0.4.
https://zoliqua.github.io/Venn-Diagram-Lab/r/
DOI: 10.5281/zenodo.19510813 (all versions)
main in the monorepo. Do not open PRs against the R-only mirror — they will be lost on the next subtree sync.MIT — see LICENSE.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.