plotGCContent {GenomicDistributions} | R Documentation |
calcGCContent
function, this will produce a
density plotPlots a density distribution of GC vectors
Give results from the calcGCContent
function, this will produce a
density plot
plotGCContent(gcvectors)
gcvectors |
A numeric vector or list of numeric vectors of GC contents. |
A ggplot object plotting distribution of GC content in query regions.
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(numVector)