plateStatistics | R Documentation |
Calculate counts/concentration in a plate layout and plot in heatmaps.
plateStatistics(dataset, colname = c("Read Count",
"LibConc_qPCR [Characteristic]",
"LibConc_100_800bp [Characteristic]"))
heatmapPlate(x, title="unnamed", center=TRUE, log10=TRUE)
dataset |
A |
title |
A |
x |
A |
center |
A |
log10 |
A |
plateStatistics
fetch the plate position information from the column
“PlatePosition [Characteristic]”.
The current supported format of “PlatePosition [Characteristic]” is
“PlateNumber_[A-Z][Integer]”, e.g. “1_A2”.
heatmapPlate
plot the heatmap with the results
from plateStatistics
.
plateStatistics
: a list
of list
of matrix
with
rows in alphabets and columns in numbers of the plate.
heatmapPlate
: plotly
object of heatmap.
Ge Tan
Plate layout: https://www.dnaseq.co.uk/images/samples-on-well-plate.png
## Not run:
dataset <- ezRead.table("/srv/gstore/projects/p2438/Fastqc_18564_2017-06-07--14-06-33/input_dataset.tsv")
ans <- plateStatistics(dataset)
p1 <- heatmapPlate(ans[[1]][["Read Count"]], center=TRUE, log10=TRUE)
p2 <- heatmapPlate(ans[[1]][["Read Count"]], center=TRUE, log10=FALSE)
p3 <- heatmapPlate(ans[[1]][["Read Count"]], center=FALSE, log10=TRUE)
p4 <- heatmapPlate(ans[[1]][["Read Count"]], center=FALSE, log10=FALSE)
subplot(p1, p3,p2,p4, nrows=2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.