R/readCelHeader.R

Defines functions readCelHeader

Documented in readCelHeader

readCelHeader <- function(filename) {
    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # Validate arguments
    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # Argument 'filename':
    if(length(filename) != 1) {
      stop("Argument 'filename' should be a single file: ", 
                                            paste(filename, collapse=", "));
    }
    # Expand '~' pathnames to full pathnames.
    filename <- file.path(dirname(filename), basename(filename));
    if (!file.exists(filename)) {
      stop("Cannot read CEL file header. File not found: ", filename);
    }

    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # Reading CEL header
    # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    res <- .Call("R_affx_get_cel_file_header", filename, PACKAGE="affxparser");

    # Sanity check
    if (is.null(res)) {
      stop("Failed to read CEL file header: ", filename);
    }

    res;
} # readCelHeader()


############################################################################
# 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.