Nothing
pubchemServerURL = "https://pubchem.ncbi.nlm.nih.gov/rest/pug"
pubchemCidToSDF = function(cids){
if(! class(cids) == "numeric")
stop('reference compound ids must be of class \"numeric\"')
if(length(cids) == 0)
stop('no compounds to retrieve- input must contain at least one cid')
finalSDF=NA
batchByIndex(cids,function(indexBatch){
url = paste(pubchemServerURL,"compound","cid",paste(indexBatch,collapse=","),"SDF",sep="/")
suppressWarnings(
if(is.na(finalSDF)){
finalSDF<<-read.SDFset(readLines(url(url)))
}else{
finalSDF<<-c(finalSDF,read.SDFset(readLines(url(url))))
})
},100)
cid(finalSDF) = makeUnique(cid(finalSDF),silent=TRUE)
finalSDF
}
pubchemSmilesSearch = function(smiles){
if(class(smiles) == "SMIset")
smiles = as.character(smiles)
if(! class(smiles) == "character"){
stop('reference compound must be a smiles string of class \"character\"')
}
url = paste(pubchemServerURL,"compound","fastsimilarity_2d","smiles",smiles,"SDF",sep="/")
read.SDFset(readLines(suppressWarnings(url(url))))
}
pubchemSDFSearch = function(sdf){
if(! class(sdf) == "SDFset"){
stop('reference compound must be a compound of class \"SDFset\"')
}
url = paste(pubchemServerURL,"compound","fastsimilarity_2d","sdf","SDF",sep="/")
#message("url: ",url)
sdfStr = paste(as(sdf[[1]],"character"),collapse="\r\n")
read.SDFset(readLines(textConnection(rawToChar(postForm(url,sdf = sdfStr)))))
}
pubchemSDF2PNG = function(sdf,outputFile){
if(! class(sdf) == "SDFset"){
stop('reference compound must be a compound of class \"SDFset\"')
}
url = paste(pubchemServerURL,"compound","fastsimilarity_2d","sdf","PNG",sep="/")
#message("url: ",url)
sdfStr = paste(as(sdf[[1]],"character"),collapse="\r\n")
pngData = postForm(url,sdf=sdfStr)
writeBin(pngData[1:length(pngData)],outputFile)
}
pubchemName2CID = function(name){
url = paste(pubchemServerURL,"compound","name",name,"cids","txt",sep="/")
#message("url: ",url)
tryCatch(
readLines(suppressWarnings(url(url))),
error=function(e) NA,
warning=function(e) NA)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.