getInput {FELLA} | R Documentation |
Extractor function for the metabolites specified by the user in the input
getInput(object)
object |
FELLA.USER object |
Vector of metabolites in the input
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))