R/methods.R

Defines functions reduce reduce.default get_snps get_snps.default get_subjects get_subjects.default

# single verbs -----------------------------------------------------------------
#' @export
reduce <- function(x, ...) UseMethod("reduce", x)

#' @export
reduce.default <- function(x, ...) stop("Unknown class")




# get functions ----------------------------------------------------------------

#' @export
get_snps <- function(x, ...) UseMethod("get_snps", x)

#' @export
get_snps.default <- function(x, ...) stop("Unknown class")

#' @export
get_subjects <- function(x, ...) UseMethod("get_subjects", x)

#' @export
get_subjects.default <- function(x, ...) stop("Unknown class")
DavisBrian/gwasr documentation built on May 6, 2019, 1:55 p.m.