activeView-methods {rtracklayer}R Documentation

Accessing the active view

Description

Get the active view.

Methods

The following methods are defined by rtracklayer.

object = "browserSession"
activeView(object): Gets the active browserView from a browser session.

activeView(object) <- value: Sets the active browserView in a browser session.

object = "ucscView" or "argoView"
activeView(object): Gets a logical indicating whether this is the active view.

Examples

## Not run: 
  session <- browseGenome(browser = "argo")
  activeView(session)
  view <- browserView(session, genomeSegment("hg18", "chr22", 20000, 30000))
  activeView(session) <- view
## End(Not run)

[Package rtracklayer version 1.2.2 Index]