listFeatures | R Documentation |
List the available features in the given database. These features can
be used in the findCompounds
function.
listFeatures(conn)
conn |
Database connection |
A vector of character feature names.
Kevin Horan
findCompounds
#create and initialize a new SQLite database
conn = initDb("test7.db")
data(sdfsample)
#just load the data with no features or descriptors
ids=loadSdf(conn,sdfsample,fct=function(sdfset) cbind(mw=MW(sdfset)))
listFeatures(conn) # produces c("mw")
unlink("test7.db")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.