connectBioassayDB | R Documentation |
BioassayDB
object connected to the specified
database file
This function returns a BioassayDB
object for working with a pre-existing bioassayR database, already located on the users filesystem.
Users can download pre-built databases for use with this feature from http://chemmine.ucr.edu/bioassayr
connectBioassayDB(databasePath, writeable = FALSE)
databasePath |
Full path to the database file to be opened. |
writeable |
logical. Should the database allow data to be modified and written to? |
BioassayDB |
for details see ?"BioassayDB-class" |
Tyler Backman
## create a test database
library(bioassayR)
filename <- tempfile()
mydb <- newBioassayDB(filename, indexed=FALSE)
disconnectBioassayDB(mydb)
## connect to test database
mydb <- connectBioassayDB(filename)
## 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.