Returns a list of named intervals sets in Genomic Database.

gintervals.ls(
  pattern = "",
  ignore.case = FALSE,
  perl = FALSE,
  fixed = FALSE,
  useBytes = FALSE
)

Arguments

pattern, ignore.case, perl, fixed, useBytes

see 'grep'

Value

An array that contains the names of intervals sets.

Details

This function returns a list of named intervals sets that match the pattern (see 'grep'). If called without any arguments all named intervals sets are returned.

Examples

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

gdb.init_examples()
gintervals.ls()
#> [1] "annotations"
gintervals.ls(pattern = "annot*")
#> [1] "annotations"