The plot_panel function takes objects of the class adpcr to enable customizable graphical representations of a chamber-based digital PCR experiments (e.g., Digital Array (R) IFCs (integrated fluidic circuits) of the BioMark (R) and EP1 (R)).

plot_panel(input, col = "red", legend = TRUE, half = "none",
  plot = TRUE, ...)

Arguments

input
object of the adpcr class.
col
A single color or vector of colors for each level of input.
legend
If TRUE, a built-in legend is added to the plot.
half
If left or right, every well is represented only by the adequate half of the rectangle.
plot
"logical", if FALSE, only plot data is returned invisibly.
...
Arguments to be passed to plot function.

Value

Invisibly returns two sets of coordinates of each microfluidic well as per calc_coordinates: coords is a list of coordinates suitable for usage with functions from graphics package. The second element is a data frame of coordinates useful for users utilizing ggplot2 package.

Details

Currently, only objects containing tnp data can be plotted as a whole. For the any other type of the adpcr data, only just one column of data (one panel) can be plotted at the same time (see Examples how easily plot multipanel objects). Moreover the object must contain fluorescence intensities or exact number of molecules or the positive hits derived from the Cq values for each well. The Cq values can be obtained by custom made functions (see example in dpcr_density)) or the yet to implement "qpcr_analyser function from the dpcR package.

If the col argument has length one, a color is assigned for each interval of the input, with the brightest colors for the lowest values.

See also

extract_run - extract experiments. adpcr2panel - convert adpcr object to arrays.

Examples

# Create a sample dPCR experiment with 765 elements (~> virtual compartments) # of target molecule copies per compartment as integer numbers (0,1,2) ttest <- sim_adpcr(m = 400, n = 765, times = 20, pos_sums = FALSE, n_panels = 1) # Plot the dPCR experiment results with default settings plot_panel(ttest)
# Apply a two color code for number of copies per compartment plot_panel(ttest, col = c("blue", "red"))
# plot few panels ttest2 <- sim_adpcr(m = 400, n = 765, times = 40, pos_sums = FALSE, n_panels = 4)
#> The assumed volume of partitions in each run is equal to 1.
#> The assumed volume uncertainty in each run is equal to 0.
par(mfcol = c(2, 2)) four_panels <- lapply(1:ncol(ttest2), function(i) plot_panel(extract_run(ttest2, i), legend = FALSE, main = paste("Panel", LETTERS[i], sep = " ")))
par(mfcol = c(1, 1)) # two different channels plot_panel(extract_run(ttest2, 1), legend = FALSE, half = "left")
par(new = TRUE) plot_panel(extract_run(ttest2, 2), col = "blue", legend = FALSE, half = "right")
# plot two panels with every well as only the half of the rectangle ttest3 <- sim_adpcr(m = 400, n = 765, times = 40, pos_sums = FALSE, n_panels = 2)
#> The assumed volume of partitions in each run is equal to 1.
#> The assumed volume uncertainty in each run is equal to 0.
par(mfcol = c(1, 2)) two_panels <- lapply(1:ncol(ttest3), function(i) plot_panel(extract_run(ttest3, i), legend = FALSE, main = paste("Panel", LETTERS[i], sep = " ")))
par(mfcol = c(1, 1))