Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/internalFuncs.R
A function to look for values across linked environments.
1 | linkedmultiget(x, envir.list = list(), unique = TRUE)
|
x |
The keys in the first environment in the list. |
envir.list |
A list of environments. |
unique |
Simplify the list returned by ensuring that the values for each key are unique. |
Environments can be considered as hashtables. The keys are obviously
strings, but in some cases the associated values are also
strings. This is the case for annotation environments (as built with
the package AnnBuilder
). This function helps to look for values
across several environments: the keys have associated values in a
first environment, these values are used as keys in the second
environments, etc...
A list of length the length of x
.
Laurent Gautier
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(ecoligenomeBNUM)
data(ecoligenomeBNUM2MULTIFUN)
data(multiFun)
## get 5 Affymetrix IDs
set.seed(456)
my.affyids <- sample(ls(ecoligenomeBNUM), 5)
## get the MULTIFUN annotations for them
r <- linkedmultiget(my.affyids, list(ecoligenomeBNUM,
ecoligenomeBNUM2MULTIFUN, multiFun))
print(r)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.