View source: R/track-management.R
| gtrack.mv | R Documentation |
Renames a track or moves it to a different namespace within the same database.
gtrack.mv(src = NULL, dest = NULL)
src |
source track name |
dest |
destination track name |
This function renames a track or moves it to a different namespace (directory)
within the same database. The track cannot be moved to a different database.
Use gtrack.copy followed by gtrack.rm if you need
to move a track between databases.
None.
gtrack.copy, gtrack.rm,
gtrack.exists, gtrack.ls
gdb.init_examples()
gtrack.create_sparse("test_track", "Test", gintervals(1, 0, 100), 1)
gtrack.mv("test_track", "renamed_track")
gtrack.exists("renamed_track")
gtrack.rm("renamed_track", force = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.