Bimap-direction {AnnotationDbi}R Documentation

Methods for accessing/changing the direction of a Bimap object

Description

These methods are part of the Bimap interface.

Usage

  direction(x)
  direction(x) <- value
  revmap(x, ...)

Arguments

x A Bimap object.
value A single integer or character string indicating the new direction.
... Extra argument can be:
objName
The name to give to the reversed map (only supported if x is an AnnDbBimap object).

Value

Author(s)

H. Pages

See Also

Bimap, BimapFormatting, AnnDbBimap-envirAPI

Examples

  library(hgu95av2.db)
  x <- hgu95av2GO
  x
  length(x)
  Llength(x)
  Rlength(x)

  y <- revmap(x)
  y
  length(y)
  Llength(y)
  Rlength(y)

[Package AnnotationDbi version 1.0.6 Index]