HmdbMetabolitesEntry {biodbHmdb} | R Documentation |
HMDB Metabolites entry class.
HMDB Metabolites entry class.
This is the entry class for the HMDB Metabolites database.
biodb::BiodbEntry
-> biodb::BiodbXmlEntry
-> HmdbMetabolitesEntry
new()
New instance initializer. Connector classes must not be instantiated directly. Instead, you must use the createConn() method of the factory class.
HmdbMetabolitesEntry$new(...)
...
All parameters are passed to the super class initializer.
Nothing.
clone()
The objects of this class are cloneable with this method.
HmdbMetabolitesEntry$clone(deep = FALSE)
deep
Whether to make a deep clone.
# Create an instance with default settings: mybiodb <- biodb::newInst() # Create a connector conn <- mybiodb$getFactory()$createConn('hmdb.metabolites') # Get an entry # Getting one entry requires the download of the whole database. e <- conn$getEntry('HMDB0000001') # Terminate instance. mybiodb$terminate()