Plots a density distribution of GC vectors Give results from the calcGCContent function, this will produce a density plot

plotGCContent(gcvectors)

Arguments

gcvectors

A numeric vector or list of numeric vectors of GC contents.

Value

A ggplot object plotting distribution of GC content in query regions.

Examples

numVector = rnorm(400, mean=0.5, sd=0.1)
GCplot = plotGCContent(numVector)
vecs = list(example1 = rnorm(400, mean=0.5, sd=0.1), 
            example2 = rnorm(600, mean=0.5, sd=0.1))
GCplot = plotGCContent(vecs)