gvtrack.ls {misha} | R Documentation |
Returns a list of virtual track names
Description
Returns a list of virtual track names.
Usage
gvtrack.ls(
pattern = "",
ignore.case = FALSE,
perl = FALSE,
fixed = FALSE,
useBytes = FALSE
)
Arguments
pattern , ignore.case , perl , fixed , useBytes |
see 'grep' |
Details
This function returns a list of virtual tracks that exist in current R environment that match the pattern (see 'grep'). If called without any arguments all virtual tracks are returned.
Value
An array that contains the names of virtual tracks.
See Also
grep
, gvtrack.create
,
gvtrack.rm
Examples
gdb.init_examples()
gvtrack.create("vtrack1", "dense_track", "max")
gvtrack.create("vtrack2", "dense_track", "quantile", 0.5)
gvtrack.ls()
gvtrack.ls(pattern = "*2")
[Package misha version 4.3.6 Index]