is_dnds_estimator <- function(method = NULL){
provided <- c("Li")
if (is.null(method)){
message("The followig methods are provided: ", paste0(provided, collapse = ", "))
return(FALSE)
}
return(is.element(method, provided))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.