README.md

Make Genome Level Trellis Graph

R-CMD-check codecov bioc bioc

Genome level Trellis graph visualizes genomic data conditioned by genomic categories (e.g. chromosomes). For each genomic category, multiple dimensional data which are represented as tracks describe different features from different aspects. This package provides high flexibility to arrange genomic categories and to add self-defined graphics in the plot.

Citation

Zuguang Gu, et al., gtrellis: an R/Bioconductor package for making genome-level Trellis graphics, 2016. BMC Bioinformatics.

Install

gtrellis is available on Bioconductor, you can install it by:

if (!requireNamespace("BiocManager", quietly=TRUE))
    install.packages("BiocManager")
BiocManager::install("gtrellis") 

If you want the latest version, install it directly from GitHub:

library(devtools)
install_github("jokergoo/gtrellis")

Usage

Basic usage is:

library(gtrellis)

bed = circlize::generateRandomBed()
gtrellis_layout(track_ylim = range(bed[[4]]))
add_track(bed, panel.fun = function(bed) {
    x = (bed[[2]] + bed[[3]]) / 2
    y = bed[[4]]
    grid.points(x, y, pch = 16, size = unit(1, "mm"))
})

There are several tracks with pre-defined graphics:

Layout

gtrellis supports several types of layouts:

One row layout:

Multiple row layout that chromosomes with similar length are arranged in a same column:

Chromosomes in a same row are arranged compactly to the left:

For each chromosome, multiple tracks are supported:

Example

Example figures are:

License

MIT @ Zuguang Gu



jokergoo/gtrellis documentation built on Feb. 27, 2024, 6:44 p.m.