R/is_pairwise_aln_tool.R

Defines functions is_pairwise_aln_tool

is_pairwise_aln_tool <- function(tool = NULL){

  provided <- c("NW")

  if(is.null(tool)){
    message("The followig methods are provided: ", paste0(provided, collapse = ", "))
    return(FALSE)
  }

  return(is.element(tool, provided))
}
drostlab/homologr documentation built on Sept. 28, 2020, 12:44 a.m.