Description Usage Arguments Value Author(s) Examples
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
1 | connectBioassayDB(databasePath, writeable = F)
|
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
1 2 3 4 5 6 7 8 9 10 11 12 | ## 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.