# LFQDataImp ----
#'
#' Decorates LFQData with methods to impute missing values
#'
#' @export
#' @family LFQData
#'
LFQDataImp <- R6::R6Class(
"LFQDataImp",
public = list(
#' @field lfq LFQData
lfq = NULL,
#' @description
#' initialize
#' @param lfq lfqdata
#' @param prefix datasetname
initialize = function(lfq, prefix = "protein"){
self$lfq = lfq$clone(deep = TRUE)
self$prefix = prefix
})
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.