validate.lambda <- function(summary.files, lambda){
  if(is.null(lambda)){
    lambda <- rep(1.0, length(summary.files))
  }
  if(!is.vector(lambda)){
    msg <- 'lambda should be a numeric vector'
    stop(msg)
  }
  # each summary file should has one inflation factor
  if(length(summary.files) != length(lambda)){
    msg <- 'Each summary file should has one inflation factor'
    stop(msg)
  }
  lambda
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.