Skip to contents

Simple plot of total read counts per barcode across samples.

Usage

plotBarcodeCounts(dgeObject, order = FALSE, log10 = FALSE)

Arguments

dgeObject

DGE object with barcode counts

order

Order the dataset by decreasing abundance (boolean). Default = `FALSE`.

log10

log10 transform the data. Adds a pseudocount of 1 (boolean). Default = `FALSE`.

Value

Returns a plot of the read counts per barcode (row) in a data frame

Examples

data(test.dge)
plotBarcodeCounts(test.dge)

plotBarcodeCounts(test.dge, order = TRUE, log10 = TRUE)