activeView-methods {rtracklayer} | R Documentation |
Get the active view.
The following methods are defined by rtracklayer.
activeView(object)
: Gets the active
browserView
from a browser session.
activeView(object) <- value
: Sets the active
browserView
in a browser session.
activeView(object)
: Gets a logical indicating whether this
is the active view.
## Not run: session <- browseGenome(browser = "argo") activeView(session) view <- browserView(session, genomeSegment("hg18", "chr22", 20000, 30000)) activeView(session) <- view ## End(Not run)