backup.gdsn {bigmelon} | R Documentation |
Quick function that will copy designated gdsn.class node within a gds object
to a 'backup'folder. If 'backup' folder does not exist, this is created. This is a wrapper to copyto.gdsn
which should be used if one wishes to copy a gds node to a seperate gds file.
backup.gdsn(gds = NULL, node)
gds |
If NULL, function will call |
node |
gdsn.class object (a gds node) |
gds object is modified to have a new folder 'backup' with supplied node copied inside
Tyler Gorrie-Stone <tgorri@essex.ac.uk>
data(melon) e <- es2gds(melon, "melon.gds") nod <- index.gdsn(e, "betas") backup.gdsn(gds = NULL, node = nod) closefn.gds(e) unlink("melon.gds")