Combine the plots from compSCESets and diffSCESets into a single panel.

makeOverallPanel(comp, diff, title = "Overall comparison",
  row.labels = c("Means", "Variance", "Mean-variance relationship",
  "Library size", "Zeros per cell", "Zeros per gene",
  "Mean-zeros relationship"))

Arguments

comp

list returned by compareSCESets.

diff

list returned by diffSCESets.

title

title for the panel.

row.labels

vector of labels for each of the seven rows.

Value

Combined panel plot

Examples

# NOT RUN {
sim1 <- splatSimulate(nGenes = 1000, batchCells = 20)
sim2 <- simpleSimulate(nGenes = 1000, nCells = 20)
comparison <- compSCESets(list(Splat = sim1, Simple = sim2))
difference <- diffSCESets(list(Splat = sim1, Simple = sim2), ref = "Simple")
panel <- makeOverallPanel(comparison, difference)
# }