#' @describeIn rqcCycleGCPlot calculates necessary statistics
#' @export
rqcCycleGCCalc <- function(rqcResultSet)
{
f <- function(x) {
gc <- sum(x$count[c(2,3)]) / sum(x$count) * 100
data.frame(gc)
}
df <- perCycleBasecall(rqcResultSet)
ddply(df, c("filename", "cycle"), f)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.