Nothing
##
## Package: flowFP
## File: plot-plate.R
## Author: Herb Holyst
##
## Copyright (C) 2009 by University of Pennsylvania,
## Philadelphia, PA USA. All rights reserved.
##
#
# R function to plot a group of fingerprints in a grid with qc colors.
#
plotPlateFP <- function (fp, main="Fingerprint Deviation Plot",
transformation=c("log2norm", "raw", "normalized"),
vert_scale=3, method=c("sd", "max"), red_limit=1.0) {
transformation = match.arg(transformation)
method = match.arg(method)
nFeatures <- nFeatures(fp)
nplots <- nInstances(fp)
if (nplots > 96) {
stop("This method can only be used for up to 96 samples\n", call.=FALSE)
}
ylim = getYlim(fp, transformation, vert_scale)
xlim = c(1,nFeatures)
opar <- par(no.readonly=TRUE)
on.exit (par(opar))
par(mar=c(0,0,0,0))
initialize_96wellPlate()
# plot the title info
plot ("", xlim=c(0,1), ylim=c(0,1), xaxt='n', yaxt='n', bty='n', xlab="", ylab="")
text (x=.5, y=.6, label=main, pos=3, cex=2)
text (x=.25, y=.3, label=sprintf("method = %s", method), pos=4, cex=1.5)
text (x=.25, y=.1, label=sprintf("vertical scale factor = %.1f", vert_scale), pos=4, cex=1.5)
draw_wedge(0.65, 0.2, 0.85, 0.3, red_limit)
fpMatrix = counts(fp, transformation=transformation)
fpMatrix[which(is.infinite(fpMatrix))] = NA
if (method == "sd") {
qcval = apply(fpMatrix, 1, na.rm=TRUE, sd)
} else {
qcval = apply(fpMatrix, 1, na.rm=TRUE, max)
}
if (transformation == "raw")
hLines = NULL
else if (transformation == "normalized")
hLines = c(1)
else
hLines = c(0)
vLines = NULL
if (is.flowFPPlex(fp) && length(fp) > 1) {
vLines = vector(mode="numeric", length = length(fp) - 1)
acc = 0
for(i in 1:(length(fp) - 1)) {
vLines[i] = acc + nFeatures(fp[[i]])
acc = vLines[i]
}
}
for (i in 1:nplots) {
bgcol = getCellColor(qcval[i], red_limit)
initFPplot(fp, ylim=ylim, xlim=xlim, transformation=transformation,
xaxt='n', yaxt='n', qcval=qcval[i], bgcol=bgcol)
lines(fpMatrix[i,])
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.