HmdbMetabolitesConn {biodbHmdb} | R Documentation |
This is a concrete connector class. It must never be instantiated directly,
but instead be instantiated through the factory BiodbFactory
.
Only specific methods are described here. See super classes for the
description of inherited methods.
biodb::BiodbConnBase
-> biodb::BiodbConn
-> HmdbMetabolitesConn
clone()
The objects of this class are cloneable with this method.
HmdbMetabolitesConn$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()