Learn R Programming

gdsfmt (version 1.8.3)

closefn.gds: Close a GDS file

Description

Close a CoreArray Genomic Data Structure (GDS) file.

Usage

closefn.gds(gdsfile)

Arguments

gdsfile
an object of class gds.class, a GDS file

Value

None.

Details

For better performance, data in a GDS file are usually cached in memory. Keep in mind that the new file may not actually be written to disk, until closefn.gds or sync.gds is called. Anyway, when R shuts down, all GDS files created or opened would be automatically closed.

References

http://github.com/zhengxwen/gdsfmt

See Also

createfn.gds, openfn.gds, sync.gds

Examples

Run this code
# cteate a GDS file
f <- createfn.gds("test.gds")

add.gdsn(f, "int.matrix", matrix(1:50*100, nrow=100, ncol=50))

# close the GDS file
closefn.gds(f)

# delete the temporary file
unlink("test.gds", force=TRUE)

Run the code above in your browser using DataLab