Skip to main content
Chemistry LibreTexts

4.7: R Assignment

  • Page ID
    279688
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Structure Search

    S. Kim, J. Cuadros

    Objectives

    • Learn various types of structure searches including identity search, similarity search, substructure and super structure searches.
    • Learn the optional parameters available for each search type.

    Using PUG-REST, one can perform various types of structure searches (https://bit.ly/2lPznCo), including: - identity search - similarity search - super/substructure search - molecular formula search

    As explained in a PubChem paper (https://bit.ly/2kirxky), whereas structure search can be performed in either an ‘asynchronous’ or ‘synchronous’ way, it is highly recommended to use the synchronous approach.

    The synchronous searches are invoked by using the keywords prefixed with ‘fast’, such as fastidenity, fastsimilarity_2d, fastsimilarity_3d, fastsubstructure, fastsuperstructure, and fastformula.

    In this task, we will use some cheminformatics packages to ease some processes. In R, some options are rcdk , ChemmineR and ChemmineOB . In Python, a useful package is RDKit ; in R, we’ll make use of it online version, the Beaker API of ChEMBL (https://chembl.gitbook.io/chembl-interface-documentation/web-services).

    PUG-REST allows you to search the PubChem Compound database for molecules identical to the query molecule. PubChem’s identity search supports different contexts of chemical identity, which the user can specify using the optional parameter, “identity_type”. Here are some commonly-used chemical identity contexts. - same_connectivity: returns compounds with the same atom connectivity as the query molecule, ignoring stereochemistry and isotope information. - same_isotope: returns compounds with the same isotopes (as well as the same atom connectivity) as the query molecule. Stereochemistry will be ignored. - same_stereo: returns compounds with the same stereochemistry (as well as the same atom connectivity) as the query molecule. Isotope information will be ignored. - same_stereo_isotope: returns compounds with the same stereochemistry AND isotope information (as well as the same atom connectivity). This is the default.

    The following code cell demonstrates how these different contexts of chemical sameness affects identity search in PubChem.

    if(!require("httr")) {
     install.packages(("httr"), repos="https://cloud.r-project.org/",
     quiet=TRUE, type="binary")
     library("httr")
    }
    if(!require("jsonlite")) {
     install.packages(("jsonlite"), repos="https://cloud.r-project.org/",
     quiet=TRUE, type="binary")
    library("jsonlite")
    }
    if(!require("png")) {
     install.packages(("png"), repos="https://cloud.r-project.org/",
     quiet=TRUE, type="binary")
     library("png")
    }
    if(!require("grid")) {
     install.packages(("grid"), repos="https://cloud.r-project.org/",
     quiet=TRUE, type="binary")
     library("grid")
    }
    if(!require("gridExtra")) {
     install.packages(("gridExtra"), repos="https://cloud.r-project.org/",
     quiet=TRUE, type="binary")
     library("gridExtra")
    }
    
    prolog <- "https://pubchem.ncbi.nlm.nih.gov/rest/pug"
    smiles <- "C(/C=C/Cl)Cl"
    options <- c('same_stereo_isotope',
     'same_stereo',
     'same_isotope',
     'same_connectivity') # same_stereo_isotope is the default
    
    for(opt in options) {
     print(paste ("#### Identity_type:", opt))
     url <- paste(prolog,
     "/compound/fastidentity/smiles/",
     "property/isomericsmiles/csv?smiles=",
     URLencode(smiles,reserved = T),
     "&identity_type=",
     opt, sep="")
     dfChem <- read.table(url, sep=",", header=T)
     print(dfChem)
    
     url_img <- paste("https://www.ebi.ac.uk/chembl/api/utils/smiles2image",
     "?size=300&engine=rdkit",sep="")
     res <- POST(url_img,
     body=list(smiles=paste(dfChem[,2],collapse="\n")))
     img <- readPNG(res$content, native=TRUE)
     grid.arrange(rasterGrob(img))
    
     Sys.sleep(.5)
    } 

    Exercise 1a: Find compounds that has the same atom connectivity and isotope information as the query molecule. query <- "CC1=CN=C(C(=C1OC)C)CS@C2=NC3=C(N2)C=C(C=C3)OC" For each compound returned from the search, retrieve the following information.

    • CID
    • Isomeric SMILES string
    • chemical synonyms (for simplicity, print only the five synonyms that first occur in the name list retrieved for each compound)
    • Structure image
    # Write your code here
    

    PubChem supports 2-dimensional (2-D) and 3-dimensional (3-D) similarity searches. Because molecular similarity is not a measurable physical observable but a subjective concept, many approaches have been developed to evaluate it. Detailed discussion on how PubChem quantifyies molecular similarity, read the following LibreTexts page:

    Searching PubChem Using a Non-Textual Query (https://bit.ly/2lPznCo)

    The code cell below demonstrates how to perform 2-D and 3-D similarity searches.

    mydata <- list(smiles="C1COCC(=O)N1C2=CC=C(C=C2)N3C[C@@H](OC3=O)CNC(=O)C4=CC=C(S4)Cl")
    url <- paste(prolog,
     "/compound/fastsimilarity_2d/smiles/cids/txt?Threshold=99",
     sep="")
    res <- POST(url,body=mydata)
    cids <- unlist(strsplit(rawToChar(res$content),"\n",fixed=T))
    print(paste("# Number of CIDs:", length(cids)))
    
    print(cids) 

    IMPORTANT: It is worth mentioning that the parameter name “Threshold” is case-sensitive. If “threshold” is used (rather than “Threshold”), it will be ignored and the default value (0.90) will be used for the parameter. [As a matter of fact, all optional parameter names in PUG-REST are case-sensitive.]

     url1 <- paste(prolog, "/compound/fastsimilarity_2d/smiles/cids/txt?Threshold=95", sep="")
    url2 <- paste(prolog, "/compound/fastsimilarity_2d/smiles/cids/txt?threshold=95", sep="")
    # "threshold=95" is ignored.
    res1 <- POST(url1,body=mydata)
    res2 <- POST(url2,body=mydata)
    cids1 <- unlist(strsplit(rawToChar(res1$content),"\n",fixed=T))
    cids2 <- unlist(strsplit(rawToChar(res2$content),"\n",fixed=T))
    print(paste("# Number of CIDs:", length(cids1), "vs.", length(cids2))) 

    It is possible to run 3-D similarity search using PUG-REST. However, because 3-D similarity search takes much longer than 2-D similarity search, it often exceeds the 30-second time limit and returns a time-out error, especially when the query molecule is big.

    In addition, for 3-D similarity search, it is not possible to adjust the similarity threshold (that is, the optional “Threshold” parameter does not work). 3-D similarity search uses a shape-Tanimoto (ST) of >=0.80 and a color-Tanimoto (CT) of >=0.50 as a similarity threshold. Read the libreTexts page for more details (https://bit.ly/2lPznCo).

    mydata <- list(smiles="CC(=O)OC1=CC=CC=C1C(=O)O")
    url <- paste(prolog,
     "/compound/fastsimilarity_3d/smiles/cids/txt",
     sep="")
    res <- POST(url,body=mydata)
    cids <- unlist(strsplit(rawToChar(res$content),"\n",fixed=T))
    print(paste("# Number of CIDs:", length(cids)))
    

    Exercise 2a: Perform 2-D similarity search with the following query, using a threshold of 0.80 and find the macromolecule targets of the assays in which the returned compounds were tested. You will need to take these steps.

    • Run 2-D similarity search using the SMILES string as a query (with Threshold=80).
    • Retrieve the AIDs in which any of the returned CIDs was tested “active”.
    • Retrieve the gene symbols of the targets for the returned AIDs.
    query <- "[C@@H]23C(=O)[C@H](N)C(C)[C@H](CCC1=COC=C1)[C@@]2(C)CCCC3(C)C"
    
     # Write your code here

    When a chemical structure occurs as a part of a bigger chemical structure, the former is called a substructure and the latter is referred to as a superstructure (https://bit.ly/2lPznCo). PUG-REST supports both substructure and superstructure searches. For example, below is an example for substructure search using the core structure of antibiotic drugs called cephalosporins as a query (https://en.Wikipedia.org/wiki/Cephalosporin).

    mydata <- list(smiles="C12(SCC(=C(N1C([C@H]2NC(=O)[*])=O)C(=O)O[H])[*])[H]")
    url <- paste(prolog,
     "/compound/fastsubstructure/smiles/cids/txt?Stereo=exact",
     sep="")
    res <- POST(url,body=mydata)
    cids <- unlist(strsplit(rawToChar(res$content),"\n",fixed=T))
    print(paste("# Number of CIDs:", length(cids)))
    

    An important thing to remember about substructure search is that, if the query structure is not specific enough (that is, not big enough), it will return too many hits for the PubChem server can handle. For example, if you perform substructure search using the “C-C” as a query, it will give you an error, because PubChem has ~96 million (organic) compounds with more than two carbon atoms and most of them will have the “C-C” unit. Therefore, if you get an “time-out” error while doing substructure search, consider providing more specific structure as an input query.

    Exercise 3a: Below is the SMILES string for a HCV (Hepatitis C Virus) drug (Sovaldi). Perform substructure search using this SMILES string as a query, identify compounds that are mentioned in patent documents, and create a list of the patent documents that mentioning them.

    Use the default options for substructure search. Use the “XRefs” operation to retrieve Patent IDs associated with the returned compounds. For simplicity, ignore the CID-Patent ID mapping. (That is, no need to track which CID is associated with which patent document.)

    query <- "C[C@@H](C(=O)OC(C)C)N[P@](=O)(OC[C@@H]1[C@H]([C@@]([C@@H](O1)N2C=CC(=O)NC2=O)(C)F)
    O)OC3=CC=CC=C3"
    
    # Write your code here 

    Strictly speaking, molecular formula search is not structure search, but its PUG-REST request URL is constructed in a similar way to structure searches like identity, similarity, and substructure/superstructure searches.

    query <- "C22H28FN3O6S" # Molecular formula for Crestor (Rosuvastatin: CID 446157)
    url <- paste(prolog, "/compound/fastformula/",
     query, "/cids/txt", sep="")
    cids <- readLines(url)
    print(paste("# Number of CIDs:", length(cids)))
    

    It is possible to allow other elements to be present in addition to those specified by the query formula, as shown in the following example.

    query <- "C22H28FN3O6S" # Molecular formula for Crestor (Rosuvastatin: CID 446157)
    url <- paste(prolog, "/compound/fastformula/",
     query, "/cids/txt?AllowOtherElements=true", sep="")
    cids <- readLines(url)
    print(paste("# Number of CIDs:", length(cids)))
    

    Exercise 4a: The general molecular formula for alcohols is [for example, CH4O (methanol), C2H6O (ethanol), C3H8O (propanol), etc]. Run molecular formula search using this general formula for n=1 through 20 and retrieve the XLogP values of the returned compounds for each value of n. Print the minimum and maximum XLogP values for each n value.

     # Write your code here

    4.7: R Assignment is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?