R/readgdsn.R

Defines functions readgdsn

readgdsn <- function(gfile, node){
    if (!inherits(gfile, "gds.class")){
        return("object should inherit from 'gds.class'.")
    }
    stopifnot(class(node) == "character")
    stopifnot(node %in% ls.gdsn(gfile))

    gdsn <- read.gdsn(index.gdsn(gfile, node))
    gdsn
}

Try the SeqSQC package in your browser

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

SeqSQC documentation built on Nov. 8, 2020, 5:03 p.m.