gtrack.rm {misha} | R Documentation |
Deletes a track
Description
Deletes a track.
Usage
gtrack.rm(track = NULL, force = FALSE)
Arguments
track |
track name |
force |
if 'TRUE', suppresses user confirmation of a named track removal |
Details
This function deletes a track from the Genomic Database. By default 'gtrack.rm' requires the user to interactively confirm the deletion. Set 'force' to 'TRUE' to suppress the user prompt.
Value
None.
See Also
gtrack.exists
, gtrack.ls
,
gtrack.create
, gtrack.2d.create
,
gtrack.create_sparse
, gtrack.smooth
Examples
gdb.init_examples()
gtrack.create("new_track", "Test track", "2 * dense_track")
gtrack.exists("new_track")
gtrack.rm("new_track", force = TRUE)
gtrack.exists("new_track")
[Package misha version 4.3.6 Index]