Description Usage Arguments Value Examples
Extractor function for the metabolites specified by the user in the input
1 | getInput(object)
|
object |
FELLA.USER object |
Vector of metabolites in the input
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(FELLA.sample)
data(input.sample)
## No excluded compounds: the input is recovered as is
obj <- defineCompounds(
compounds = input.sample,
data = FELLA.sample)
i1 <- getInput(obj)
## One compound does not map: the input contains only the mapped entities
obj <- defineCompounds(
compounds = c(input.sample, "intruder"),
data = FELLA.sample)
i2 <- getInput(obj)
identical(sort(i1), sort(i2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.