R/HSC_PreClassifier.R

Defines functions HSC_PC classify classify.default classify.HSC_PC

Documented in classify HSC_PC

HSC_PC <- function(...) stop("HSC_PC is an abstract class and cannot be instantiated!")

classify <- function(x, stream, ...) UseMethod("classify")
classify.default <- function(x, stream, ...) {
  stop(gettextf("classify mathod is not implemented for class '%s'.",paste(class(x), collapse=", ")))
}

classify.HSC_PC <- function(x, stream, ...) {
  stop(gettextf("classify mathod is not implemented for class '%s'.",paste(class(x), collapse=", ")))
}

Try the SeqDetect package in your browser

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

SeqDetect documentation built on March 2, 2020, 5:08 p.m.