R/2_all_generics.R

Defines functions fetch_allele2 fetch_allele1 fetch_gds get_snp_annot get_scan_annot is_snp_first_dim

NULL


is_snp_first_dim <- function(obj, ...) {
  UseMethod('is_snp_first_dim')
}

get_scan_annot <- function(obj, ...) {
  UseMethod('get_scan_annot')
}

get_snp_annot <- function(obj, ...) {
  UseMethod('get_snp_annot')
}



fetch_gds <- function(obj, ...) {
  UseMethod('fetch_gds')
}


fetch_allele1 <- function(obj, snps_idx) {
  UseMethod('fetch_allele1')
}

fetch_allele2 <- function(obj, snps_idx) {
  UseMethod('fetch_allele2')
}
ThomasChln/snpclust documentation built on June 11, 2020, 4:27 p.m.