plotPartitions {GenomicDistributions}R Documentation

Produces a barplot showing how query regions of interest are distributed across a given partition list

Description

This function can be used to test a GRanges object against any arbitrary list of genome partitions. The partition list is a priority-ordered list of GRanges objects. Each region in the query will be assigned to a given partition that it overlaps with the highest priority.

Usage

plotPartitions(assignedPartitions, numbers = FALSE)

Arguments

assignedPartitions

A table holding the frequency of assignment to each of the partitions. Produced by calcPartitions

numbers

logical indicating whether raw overlaps should be plotted instead of the default percentages

Value

A ggplot object using a barplot to show the distribution of the query regions across a given partition list.

Examples

p = calcPartitionsRef(vistaEnhancers, "hg19")
partPlot = plotPartitions(p)
partCounts = plotPartitions(p, numbers=TRUE)

[Package GenomicDistributions version 1.0.0 Index]