R/readBpmapSeqInfo.R

Defines functions readBpmapSeqinfo

Documented in readBpmapSeqinfo

readBpmapSeqinfo <- function(filename, seqIndices=NULL, verbose=0) {
  res <- .Call("R_affx_get_bpmap_seqinfo", filename, as.integer(seqIndices), as.integer(verbose), PACKAGE = "affxparser");

  # Sanity check
  if (is.null(res)) {
    stop("Failed to read sequence information from BPMAP file: ", filename);
  }

  res;
} # readBpmapSeqinfo()

############################################################################
# HISTORY:
# 2011-11-18
# o ROBUSTNESS: Added sanity check that the native code did not return NULL.
############################################################################

Try the affxparser package in your browser

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

affxparser documentation built on Nov. 8, 2020, 7:26 p.m.