listFeatures {ChemmineR} | 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
#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")