saveFeatures {GenomicFeatures} | R Documentation |
These methods provide a way to dump a TranscriptDb or FeatureDb object to an SQLite file, and to recreate that object from the saved file.
However, these methods are now deprecated and have been replaced by
saveDb
and loadDb
.
Users are encouraged to switch to those other methods as the methods documented here will soon be defunct.
saveFeatures(x, file) loadFeatures(file)
x |
A TranscriptDb or FeatureDb object. |
file |
An SQLite Database filename. |
For loadFeatures
only, a TranscriptDb or FeatureDb
object is returned.
M. Carlson
saveDb
,
TranscriptDb,
FeatureDb
## Not run: txdb <- loadFeatures(system.file("extdata", "UCSC_knownGene_sample.sqlite", package = "GenomicFeatures")) txdb ## End(Not run)