backup.gdsn {bigmelon} | R Documentation |
This function will copy a designated gdsn.class object stored inside a gds object to a backup folder (aptly named backup). If the backup folder does not exist, this will be 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) which can be specified using |
A gdsobject with an additional folder called backup with supplied node within.
Tyler Gorrie-Stone <t.gorrie-stone@qmul.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")