Closed DrBlackwell closed 4 years ago
Is there a function to generate a list of compounds not in ToxCast based on CAS #s?
You could do this:
library(toxEval) CAS <- c("blah-blah","121-00-6","136-85-6","80-05-7") CAS_not_in <- CAS[!CAS %in% ToxCast_ACC$CAS] CAS_not_in [1] "blah-blah"
Is there a function to generate a list of compounds not in ToxCast based on CAS #s?