Returns the path on disk of an interval set.
gintervals.path(intervals.set = NULL)A character vector containing the full paths to the interval sets on disk.
This function returns the actual file system path where an interval set is stored. The function works with a single interval set name or a vector of names.
gdb.init_examples()
gintervals.path("annotations")
#> [1] "/tmp/RtmpHGT5Kl/trackdb/test/tracks/annotations.interv"
gintervals.path(c("annotations", "coding"))
#> [1] "/tmp/RtmpHGT5Kl/trackdb/test/tracks/annotations.interv"
#> [2] "/tmp/RtmpHGT5Kl/trackdb/test/tracks/coding.interv"