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')
}

Try the snplinkage package in your browser

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

snplinkage documentation built on May 4, 2023, 9:09 a.m.