| seqOpen {SeqArray} | R Documentation |
Opens a SeqArray GDS file.
seqOpen(gds.fn, readonly=TRUE, allow.duplicate=FALSE)
gds.fn |
the file name |
readonly |
whether read-only or not |
allow.duplicate |
if |
It is strongly suggested to call seqOpen instead of
openfn.gds, since seqOpen will perform internal checking
for data integrality.
Return an object of class gds.class.
Xiuwen Zheng
seqClose, seqGetData,
seqApply
# the GDS file
(gds.fn <- seqExampleFileName("gds"))
# open the GDS file
gdsfile <- seqOpen(gds.fn)
# display the contents of the GDS file in a hierarchical structure
gdsfile
# close the GDS file
seqClose(gdsfile)