Learn R Programming

misha (version 4.2.9)

gtrack.rm: Deletes a track

Description

Deletes a track.

Usage

gtrack.rm(track = NULL, force = FALSE)

Value

None.

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.

See Also

gtrack.exists, gtrack.ls, gtrack.create, gtrack.2d.create, gtrack.create_sparse, gtrack.smooth

Examples

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

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")

Run the code above in your browser using DataLab