KeggModuleConn {biodbKegg} | R Documentation |
The connector class to KEGG Pathway database.
The connector class to KEGG Pathway database.
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
-> biodbKegg::KeggConn
-> KeggModuleConn
new()
New instance initializer. Connector classes must not be instantiated directly. Instead, you must use the createConn() method of the factory class.
KeggModuleConn$new(...)
...
All parameters are passed to the super class initializer.
Nothing.
clone()
The objects of this class are cloneable with this method.
KeggModuleConn$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('kegg.module') # Get an entry e <- conn$getEntry('M00009') # Terminate instance. mybiodb$terminate()