R/plot.hmmer.R

Defines functions `plot.hmmer`

`plot.hmmer` <-
function(x, ...) {
  allowed <- c("phmmer", "hmmsearch", "jackhmmer")
  
  if(!any(inherits(x, allowed)))
    stop(paste("please provide the results of a hmmer search of type:",
               paste(allowed, collapse=", ")))

  plot.blast(x, ...)
}

Try the bio3d package in your browser

Any scripts or data that you put into this service are public.

bio3d documentation built on Oct. 30, 2024, 1:08 a.m.