Learn R Programming

misha (version 5.4.0)

gtrack.copy: Copies a track

Description

Creates a copy of an existing track.

Usage

gtrack.copy(src = NULL, dest = NULL)

Value

None.

Arguments

src

source track name

dest

destination track name

Details

This function creates a copy of a track. The new track is created in the current working directory (.misha$GWD), which may be in a different database than the source track when multiple databases are connected.

See Also

gtrack.mv, gtrack.rm, gtrack.exists, gtrack.ls

Examples

Run this code
# \dontshow{
options(gmax.processes = 2)
# }

gdb.init_examples()
gtrack.copy("dense_track", "dense_track_copy")
gtrack.exists("dense_track_copy")
gtrack.rm("dense_track_copy", force = TRUE)

Run the code above in your browser using DataLab