Learn R Programming

SeqArray (version 1.8.0)

seqOpen: Open a Sequencing GDS File

Description

Open a Sequencing GDS file

Usage

seqOpen(gds.fn, readonly=TRUE)

Arguments

gds.fn
the file name
readonly
whether read-only or not

Value

Return an object of class gds.class.

Details

It is strongly suggested to call seqOpen instead of openfn.gds, since seqOpen will perform internal checking for data integrality.

See Also

seqGetData, seqApply

Examples

Run this code
gds.fn <- seqExampleFileName("gds")
# or gds.fn <- "C:/YourFolder/Your_GDS_File.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)

Run the code above in your browser using DataLab