is_ortho_detection_method <- function(method = NULL){
provided <- c("DIAMOND-BH","DIAMOND-RBH")
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.