newBioassayDB | R Documentation |
This function creates a new bioassayR database at the specified filesystem location, and returns a BioassayDB
object connected to the new database.
newBioassayDB(databasePath, writeable = TRUE, indexed = FALSE)
databasePath |
Full path to the database file to be created. |
writeable |
logical. Should the database allow data to be modified and written to? |
indexed |
logical. Should a performance enhancing index be created? The default is false, as typically an index is added only after initial data is loaded. Data loading is much slower into an already indexed database. |
Tyler Backman
## get a temporary filename
library(bioassayR)
filename <- tempfile()
## create a new bioassayR database
mydb <- newBioassayDB(filename, indexed=FALSE)
## close and delete database
disconnectBioassayDB(mydb)
unlink(filename)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.