MassSqliteEntry {biodb} | R Documentation |
This is the entry class for a Mass spectra SQLite database.
biodb::BiodbEntry
-> biodb::BiodbListEntry
-> MassSqliteEntry
clone()
The objects of this class are cloneable with this method.
MassSqliteEntry$clone(deep = FALSE)
deep
Whether to make a deep clone.
Super class BiodbListEntry
.
# Create an instance with default settings: mybiodb <- biodb::newInst() # Get path to LCMS database example file lcmsdb <- system.file("extdata", "massbank_extract.sqlite", package="biodb") # Create a connector conn <- mybiodb$getFactory()$createConn('mass.sqlite', url=lcmsdb) # Get an entry e <- conn$getEntry('34.pos.col12.0.78') # Terminate instance. mybiodb$terminate()