Description Usage Arguments Details Value See Also Examples
Search for an object with a given name and return it.
NOTE: This man page is for the get
and mget
S4 generic
functions defined in the BiocGenerics package.
See ?base::get
for the default methods
(defined in the base package).
Bioconductor packages can define specific methods for objects
(list-like or environment-like) not supported by the default methods.
1 2 |
x |
For For |
envir |
Where to look for the key(s). Typically a list-like or environment-like object. |
pos, mode, inherits, ifnotfound |
See |
See ?base::get
for details about the default methods.
For get
: The value corresponding to the specified key.
For mget
: The list of values corresponding to the specified keys.
The returned list must have one element per key, and in the same order
as in x
.
See ?base::get
for the value returned by the
default methods.
base::get
for the default get
and
mget
methods.
showMethods
for displaying a summary of the
methods defined for a given generic function.
selectMethod
for getting the definition of
a specific method.
get,ANY,Bimap,missing-method in the
AnnotationDbi package for an example of a specific get
method (defined for Bimap objects).
BiocGenerics for a summary of all the generics defined in the BiocGenerics package.
1 2 3 4 5 6 7 | get # note the dispatch on the 'x', 'pos' and 'envir' args only
showMethods("get")
selectMethod("get", c("ANY", "ANY", "ANY")) # the default method
mget # note the dispatch on the 'x' and 'envir' args only
showMethods("mget")
selectMethod("mget", c("ANY", "ANY")) # the default method
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.