Nothing
      setMethodS3("getFit", "BasePositionNormalization", function(this, array, ...) {
  # Assert that the normalization has been done
  if (!isDone(this)) {
    throw("Cannot get fit: Data is not processed: ", getFullName(this))
  }
  # Argument 'array':
  inSet <- getInputDataSet(this)
  array <- Arguments$getIndices(array, max=length(inSet))
  outSet <- getOutputDataSet(this)
  outDf <- outSet[[array]]
  path <- getPath(this)
  filename <- sprintf("%s,fit.RData", getFullName(outDf))
  pathname <- Arguments$getReadablePathname(filename, path=path, mustExist=TRUE)
  res <- loadObject(pathname)
  fit <- res$fit
  # Not needed anymore
  res <- NULL
  fit
}, protected=TRUE)
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.