| MassCsvFileEntry {biodb} | R Documentation |
Mass CSV File entry class.
Mass CSV File entry class.
This is the entry class for Mass CSV file databases.
biodb::BiodbEntry -> biodb::BiodbCsvEntry -> MassCsvFileEntry
new()New instance initializer. Entry objects must not be created directly. Instead, they are retrieved through the connector instances.
MassCsvFileEntry$new(...)
...All parameters are passed to the super class initializer.
Nothing.
clone()The objects of this class are cloneable with this method.
MassCsvFileEntry$clone(deep = FALSE)
deepWhether to make a deep clone.
Super class BiodbCsvEntry.
# Create an instance with default settings:
mybiodb <- biodb::newInst()
# Get path to LCMS database example file
lcmsdb <- system.file("extdata",
"massbank_extract_lcms_2.tsv", package="biodb")
# Create a connector
conn <- mybiodb$getFactory()$createConn('mass.csv.file', url=lcmsdb)
# Get an entry
e <- conn$getEntry('PR010001')
# Terminate instance.
mybiodb$terminate()