plotgardener
is a coordinate-based, genomic visualization package for R. Using grid
graphics, plotgardener
empowers users to programmatically and flexibly generate multi-panel figures. Tailored for genomics for a variety of genomic assemblies, plotgardener
allows users to visualize large, complex genomic datasets while providing exquisite control over the arrangement of plots.
plotgardener
functions can be grouped into the following categories:
Functions for creating plotgardener
page layouts, drawing, showing, and hiding guides, as well as placing plots on the page. See The plotgardener Page
Functions for quickly reading in large biological datasets. See Reading Data for plotgardener
Contains genomic plotting functions, functions for placing ggplots
and base
plots, as well as functions for drawing simple shapes. See Plotting Multi-omic Data
Enables users to add annotations to their plots, such as legends, axes, and scales. See Plot Annotations
Functions that display plotgardener
properties or operate on other plotgardener
functions, or constructors for plotgardener
objects. See plotgardener Meta Functions
This vignette provides a quick start guide for utilizing plotgardener
. For in-depth demonstrations of plotgardener
’s key features, see the additional articles. For detailed usage of each function, see the function-specific reference examples with ?function()
(e.g. ?plotPairs()
).
All the data included in this vignette can be found in the supplementary package plotgardenerData
.
plotgardener
plotting functions contain 4 types of arguments:
Data reading argument (data
)
Genomic locus arguments (chrom
, chromstart
, chromend
, assembly
)
Placement arguments (x
, y
, width
, height
, just
, default.units
, …) that define where each plot resides on a page
Attribute arguments that affect the data being plotted or the style of the plot (norm
, fill
, fontcolor
, …) that vary between functions
The quickest way to plot data is to omit the placement arguments. This will generate a plotgardener
plot that fills up the entire graphics window and cannot be annotated. These plots are only meant to be used for quick genomic data inspection and not as final plotgardener
plots. The only arguments that are required are the data arguments and locus arguments. The examples below show how to quickly plot different types of genomic data with plot defaults and included data types. To use your own data, replace the data
argument with either a path to the file or an R object as described above.
## Load plotgardener
library(plotgardener)
## Load hg19 genomic annotation packages
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
## Load example GWAS data
library(plotgardenerData)
data("hg19_insulin_GWAS")
## Quick plot GWAS data
plotManhattan(
data = hg19_insulin_GWAS,
assembly = "hg19",
fill = c("steel blue", "grey"),
ymax = 1.1, cex = 0.20
)
plotgardener
pageTo build complex, multi-panel plotgardener
figures with annotations, we must:
plotgardener
coordinate page with pageCreate()
.x
, y
, width
, height
, just
, default.units
) in plotting functions and save the output of the plotting function.data("IMR90_HiC_10kb")
hicPlot <- plotHicSquare(
data = IMR90_HiC_10kb,
chrom = "chr21", chromstart = 28000000, chromend = 30300000,
assembly = "hg19",
x = 0.25, y = 0.25, width = 2.5, height = 2.5, default.units = "inches"
)
plotgardener
plot objects by passing them into the plot
argument of annotation functions.annoHeatmapLegend(
plot = hicPlot,
x = 2.85, y = 0.25, width = 0.1, height = 1.25, default.units = "inches"
)
annoGenomeLabel(
plot = hicPlot,
x = 0.25, y = 2.75, width = 2.5, height = 0.25, default.units = "inches"
)
For more information about how to place plots and annotations on a plotgardener
page, check out the section Working with plot objects.
When a plotgardener
plot is ready to be saved and exported, we can first remove all page guides that were made with pageCreate()
:
We can then either use the Export toggle in the RStudio plot panel, or save the plot within our R code as follows:
pdf(width = 3.25, height = 3.25)
pageCreate(width = 3.25, height = 3.25, default.units = "inches")
data("IMR90_HiC_10kb")
hicPlot <- plotHicSquare(
data = IMR90_HiC_10kb,
chrom = "chr21", chromstart = 28000000, chromend = 30300000,
assembly = "hg19",
x = 0.25, y = 0.25, width = 2.5, height = 2.5, default.units = "inches"
)
annoHeatmapLegend(
plot = hicPlot,
x = 2.85, y = 0.25, width = 0.1, height = 1.25, default.units = "inches"
)
annoGenomeLabel(
plot = hicPlot,
x = 0.25, y = 2.75, width = 2.5, height = 0.25, default.units = "inches"
)
pageGuideHide()
dev.off()
Please note that due to the implementation of grid
removal functions, using pageGuideHide
within a pdf
call will result in the rendering of a separate, new page with the plot guides removed. To avoid this artifact, hide guides in the pageCreate
function call with showGuides = FALSE
.
For more detailed usage and examples, please refer to the other available vignettes.
We still have many ideas to add for a second version of plotgardener
including, but not limited to: grammar of graphics style plot arguments and plot building, templates, themes, and multi-plotting functions. If you have suggestions for ways we can improve plotgardener
, please let us know!
sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.20-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## time zone: America/New_York
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats4 grid stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] org.Hs.eg.db_3.20.0
## [2] TxDb.Hsapiens.UCSC.hg19.knownGene_3.2.2
## [3] GenomicFeatures_1.58.0
## [4] AnnotationDbi_1.68.0
## [5] Biobase_2.66.0
## [6] GenomicRanges_1.58.0
## [7] GenomeInfoDb_1.42.0
## [8] IRanges_2.40.0
## [9] S4Vectors_0.44.0
## [10] BiocGenerics_0.52.0
## [11] plotgardenerData_1.11.0
## [12] plotgardener_1.12.0
##
## loaded via a namespace (and not attached):
## [1] tidyselect_1.2.1 blob_1.2.4
## [3] dplyr_1.1.4 Biostrings_2.74.0
## [5] bitops_1.0-9 fastmap_1.2.0
## [7] RCurl_1.98-1.16 GenomicAlignments_1.42.0
## [9] XML_3.99-0.17 digest_0.6.37
## [11] lifecycle_1.0.4 plyranges_1.26.0
## [13] KEGGREST_1.46.0 RSQLite_2.3.7
## [15] magrittr_2.0.3 compiler_4.4.1
## [17] rlang_1.1.4 sass_0.4.9
## [19] tools_4.4.1 utf8_1.2.4
## [21] yaml_2.3.10 data.table_1.16.2
## [23] rtracklayer_1.66.0 knitr_1.48
## [25] S4Arrays_1.6.0 bit_4.5.0
## [27] curl_5.2.3 DelayedArray_0.32.0
## [29] RColorBrewer_1.1-3 abind_1.4-8
## [31] BiocParallel_1.40.0 withr_3.0.2
## [33] purrr_1.0.2 fansi_1.0.6
## [35] colorspace_2.1-1 Rhdf5lib_1.28.0
## [37] ggplot2_3.5.1 scales_1.3.0
## [39] SummarizedExperiment_1.36.0 cli_3.6.3
## [41] rmarkdown_2.28 crayon_1.5.3
## [43] generics_0.1.3 httr_1.4.7
## [45] rjson_0.2.23 DBI_1.2.3
## [47] cachem_1.1.0 rhdf5_2.50.0
## [49] zlibbioc_1.52.0 parallel_4.4.1
## [51] ggplotify_0.1.2 XVector_0.46.0
## [53] restfulr_0.0.15 matrixStats_1.4.1
## [55] yulab.utils_0.1.7 vctrs_0.6.5
## [57] Matrix_1.7-1 jsonlite_1.8.9
## [59] gridGraphics_0.5-1 bit64_4.5.2
## [61] strawr_0.0.92 jquerylib_0.1.4
## [63] glue_1.8.0 codetools_0.2-20
## [65] gtable_0.3.6 BiocIO_1.16.0
## [67] UCSC.utils_1.2.0 munsell_0.5.1
## [69] tibble_3.2.1 pillar_1.9.0
## [71] htmltools_0.5.8.1 rhdf5filters_1.18.0
## [73] GenomeInfoDbData_1.2.13 R6_2.5.1
## [75] evaluate_1.0.1 lattice_0.22-6
## [77] highr_0.11 png_0.1-8
## [79] Rsamtools_2.22.0 memoise_2.0.1
## [81] bslib_0.8.0 Rcpp_1.0.13
## [83] SparseArray_1.6.0 xfun_0.48
## [85] fs_1.6.4 MatrixGenerics_1.18.0
## [87] pkgconfig_2.0.3