Retrieve JSON Data from PubChem
get_json.Rd
This function sends a request to PubChem to retrieve JSON data based on the specified parameters. It handles errors and warnings gracefully, providing informative messages when they occur.
Usage
get_json(
identifier,
namespace = "cid",
domain = "compound",
operation = NULL,
searchtype = NULL,
options = NULL
)
Arguments
- identifier
A vector of positive integers (e.g. cid, sid, aid) or identifier strings (source, inchikey, formula). In some cases, only a single identifier string (name, smiles, xref; inchi, sdf by POST only).
- namespace
Specifies the namespace for the query. For the 'compound' domain, possible values include 'cid', 'name', 'smiles', 'inchi', 'sdf', 'inchikey', 'formula', 'substructure', 'superstructure', 'similarity', 'identity', 'xref', 'listkey', 'fastidentity', 'fastsimilarity_2d', 'fastsimilarity_3d', 'fastsubstructure', 'fastsuperstructure', and 'fastformula'. For other domains, the possible namespaces are domain-specific.
- domain
Specifies the domain of the query. Possible values are 'substance', 'compound', 'assay', 'gene', 'protein', 'pathway', 'taxonomy', 'cell', 'sources', 'sourcetable', 'conformers', 'annotations', 'classification', and 'standardize'.
- operation
Specifies the operation to be performed on the input records. For the 'compound' domain, possible operations include 'record', 'property', 'synonyms', 'sids', 'cids', 'aids', 'assaysummary', 'classification', 'xrefs', and 'description'. The available operations are domain-specific.
- searchtype
Specifies the type of search to be performed. For structure searches, possible values are combinations of 'substructure', 'superstructure', 'similarity', 'identity' with 'smiles', 'inchi', 'sdf', 'cid'. For fast searches, possible values are combinations of 'fastidentity', 'fastsimilarity_2d', 'fastsimilarity_3d', 'fastsubstructure', 'fastsuperstructure' with 'smiles', 'smarts', 'inchi', 'sdf', 'cid', or 'fastformula'.
- options
Additional parameters passed to
get_json
.
Value
A list containing the parsed JSON response from PubChem. Returns NULL if an error or warning occurs.
Examples
get_json(
identifier = "aspirin",
namespace = "name"
)
#> $PC_Compounds
#> $PC_Compounds[[1]]
#> $PC_Compounds[[1]]$id
#> $PC_Compounds[[1]]$id$id
#> cid
#> 2244
#>
#>
#> $PC_Compounds[[1]]$atoms
#> $PC_Compounds[[1]]$atoms$aid
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#>
#> $PC_Compounds[[1]]$atoms$element
#> [1] 8 8 8 8 6 6 6 6 6 6 6 6 6 1 1 1 1 1 1 1 1
#>
#>
#> $PC_Compounds[[1]]$bonds
#> $PC_Compounds[[1]]$bonds$aid1
#> [1] 1 1 2 2 3 4 5 5 6 6 7 7 8 8 9 9 10 12 13 13 13
#>
#> $PC_Compounds[[1]]$bonds$aid2
#> [1] 5 12 11 21 11 12 6 7 8 11 9 14 10 15 10 16 17 13 18 19 20
#>
#> $PC_Compounds[[1]]$bonds$order
#> [1] 1 1 1 1 2 2 1 2 2 1 1 1 1 1 2 1 1 1 1 1 1
#>
#>
#> $PC_Compounds[[1]]$coords
#> $PC_Compounds[[1]]$coords[[1]]
#> $PC_Compounds[[1]]$coords[[1]]$type
#> [1] 1 5 255
#>
#> $PC_Compounds[[1]]$coords[[1]]$aid
#> [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#>
#> $PC_Compounds[[1]]$coords[[1]]$conformers
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$x
#> [1] 3.7320 6.3301 4.5981 2.8660 4.5981 5.4641 4.5981 6.3301 5.4641 6.3301
#> [11] 5.4641 2.8660 2.0000 4.0611 6.8671 5.4641 6.8671 2.3100 1.4631 1.6900
#> [21] 6.3301
#>
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$y
#> [1] -0.0600 1.4400 1.4400 -1.5600 -0.5600 -0.0600 -1.5600 -0.5600 -2.0600
#> [10] -1.5600 0.9400 -0.5600 -0.0600 -1.8700 -0.2500 -2.6800 -1.8700 0.4769
#> [19] 0.2500 -0.5969 2.0600
#>
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$style
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$style$annotation
#> [1] 8 8 8 8 8 8
#>
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$style$aid1
#> [1] 5 5 6 7 8 9
#>
#> $PC_Compounds[[1]]$coords[[1]]$conformers[[1]]$style$aid2
#> [1] 6 7 8 9 10 10
#>
#>
#>
#>
#>
#>
#> $PC_Compounds[[1]]$charge
#> [1] 0
#>
#> $PC_Compounds[[1]]$props
#> $PC_Compounds[[1]]$props[[1]]
#> $PC_Compounds[[1]]$props[[1]]$urn
#> $PC_Compounds[[1]]$props[[1]]$urn$label
#> [1] "Compound"
#>
#> $PC_Compounds[[1]]$props[[1]]$urn$name
#> [1] "Canonicalized"
#>
#> $PC_Compounds[[1]]$props[[1]]$urn$datatype
#> [1] 5
#>
#> $PC_Compounds[[1]]$props[[1]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[1]]$value
#> ival
#> 1
#>
#>
#> $PC_Compounds[[1]]$props[[2]]
#> $PC_Compounds[[1]]$props[[2]]$urn
#> $PC_Compounds[[1]]$props[[2]]$urn$label
#> [1] "Compound Complexity"
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$datatype
#> [1] 7
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$implementation
#> [1] "E_COMPLEXITY"
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[2]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[2]]$value
#> fval
#> 212
#>
#>
#> $PC_Compounds[[1]]$props[[3]]
#> $PC_Compounds[[1]]$props[[3]]$urn
#> $PC_Compounds[[1]]$props[[3]]$urn$label
#> [1] "Count"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$name
#> [1] "Hydrogen Bond Acceptor"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$datatype
#> [1] 5
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$implementation
#> [1] "E_NHACCEPTORS"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[3]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[3]]$value
#> ival
#> 4
#>
#>
#> $PC_Compounds[[1]]$props[[4]]
#> $PC_Compounds[[1]]$props[[4]]$urn
#> $PC_Compounds[[1]]$props[[4]]$urn$label
#> [1] "Count"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$name
#> [1] "Hydrogen Bond Donor"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$datatype
#> [1] 5
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$implementation
#> [1] "E_NHDONORS"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[4]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[4]]$value
#> ival
#> 1
#>
#>
#> $PC_Compounds[[1]]$props[[5]]
#> $PC_Compounds[[1]]$props[[5]]$urn
#> $PC_Compounds[[1]]$props[[5]]$urn$label
#> [1] "Count"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$name
#> [1] "Rotatable Bond"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$datatype
#> [1] 5
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$implementation
#> [1] "E_NROTBONDS"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[5]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[5]]$value
#> ival
#> 3
#>
#>
#> $PC_Compounds[[1]]$props[[6]]
#> $PC_Compounds[[1]]$props[[6]]$urn
#> $PC_Compounds[[1]]$props[[6]]$urn$label
#> [1] "Fingerprint"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$name
#> [1] "SubStructure Keys"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$datatype
#> [1] 16
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$parameters
#> [1] "extended 2"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$implementation
#> [1] "E_SCREEN"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[6]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[6]]$value
#> binary
#> "00000371C0703800000000000000000000000000000000000000300000000000000000010000001A00000800000C04809800320E80000600880220D208000208002420000888010608C80C273684351A827B60A5E01108B98788C8208E00000000000800000000000000100000000000000000"
#>
#>
#> $PC_Compounds[[1]]$props[[7]]
#> $PC_Compounds[[1]]$props[[7]]$urn
#> $PC_Compounds[[1]]$props[[7]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$name
#> [1] "Allowed"
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[7]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[7]]$value
#> sval
#> "2-acetoxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[8]]
#> $PC_Compounds[[1]]$props[[8]]$urn
#> $PC_Compounds[[1]]$props[[8]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$name
#> [1] "CAS-like Style"
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[8]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[8]]$value
#> sval
#> "2-acetyloxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[9]]
#> $PC_Compounds[[1]]$props[[9]]$urn
#> $PC_Compounds[[1]]$props[[9]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$name
#> [1] "Markup"
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[9]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[9]]$value
#> sval
#> "2-acetyloxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[10]]
#> $PC_Compounds[[1]]$props[[10]]$urn
#> $PC_Compounds[[1]]$props[[10]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$name
#> [1] "Preferred"
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[10]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[10]]$value
#> sval
#> "2-acetyloxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[11]]
#> $PC_Compounds[[1]]$props[[11]]$urn
#> $PC_Compounds[[1]]$props[[11]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$name
#> [1] "Systematic"
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[11]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[11]]$value
#> sval
#> "2-acetyloxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[12]]
#> $PC_Compounds[[1]]$props[[12]]$urn
#> $PC_Compounds[[1]]$props[[12]]$urn$label
#> [1] "IUPAC Name"
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$name
#> [1] "Traditional"
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$version
#> [1] "2.7.0"
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$software
#> [1] "Lexichem TK"
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[12]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[12]]$value
#> sval
#> "2-acetoxybenzoic acid"
#>
#>
#> $PC_Compounds[[1]]$props[[13]]
#> $PC_Compounds[[1]]$props[[13]]$urn
#> $PC_Compounds[[1]]$props[[13]]$urn$label
#> [1] "InChI"
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$name
#> [1] "Standard"
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$version
#> [1] "1.0.6"
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$software
#> [1] "InChI"
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$source
#> [1] "iupac.org"
#>
#> $PC_Compounds[[1]]$props[[13]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[13]]$value
#> sval
#> "InChI=1S/C9H8O4/c1-6(10)13-8-5-3-2-4-7(8)9(11)12/h2-5H,1H3,(H,11,12)"
#>
#>
#> $PC_Compounds[[1]]$props[[14]]
#> $PC_Compounds[[1]]$props[[14]]$urn
#> $PC_Compounds[[1]]$props[[14]]$urn$label
#> [1] "InChIKey"
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$name
#> [1] "Standard"
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$version
#> [1] "1.0.6"
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$software
#> [1] "InChI"
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$source
#> [1] "iupac.org"
#>
#> $PC_Compounds[[1]]$props[[14]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[14]]$value
#> sval
#> "BSYNRYMUTXBXSQ-UHFFFAOYSA-N"
#>
#>
#> $PC_Compounds[[1]]$props[[15]]
#> $PC_Compounds[[1]]$props[[15]]$urn
#> $PC_Compounds[[1]]$props[[15]]$urn$label
#> [1] "Log P"
#>
#> $PC_Compounds[[1]]$props[[15]]$urn$name
#> [1] "XLogP3"
#>
#> $PC_Compounds[[1]]$props[[15]]$urn$datatype
#> [1] 7
#>
#> $PC_Compounds[[1]]$props[[15]]$urn$version
#> [1] "3.0"
#>
#> $PC_Compounds[[1]]$props[[15]]$urn$source
#> [1] "sioc-ccbg.ac.cn"
#>
#> $PC_Compounds[[1]]$props[[15]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[15]]$value
#> fval
#> 1.2
#>
#>
#> $PC_Compounds[[1]]$props[[16]]
#> $PC_Compounds[[1]]$props[[16]]$urn
#> $PC_Compounds[[1]]$props[[16]]$urn$label
#> [1] "Mass"
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$name
#> [1] "Exact"
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$version
#> [1] "2.2"
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$software
#> [1] "PubChem"
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$source
#> [1] "ncbi.nlm.nih.gov"
#>
#> $PC_Compounds[[1]]$props[[16]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[16]]$value
#> sval
#> "180.04225873"
#>
#>
#> $PC_Compounds[[1]]$props[[17]]
#> $PC_Compounds[[1]]$props[[17]]$urn
#> $PC_Compounds[[1]]$props[[17]]$urn$label
#> [1] "Molecular Formula"
#>
#> $PC_Compounds[[1]]$props[[17]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[17]]$urn$version
#> [1] "2.2"
#>
#> $PC_Compounds[[1]]$props[[17]]$urn$software
#> [1] "PubChem"
#>
#> $PC_Compounds[[1]]$props[[17]]$urn$source
#> [1] "ncbi.nlm.nih.gov"
#>
#> $PC_Compounds[[1]]$props[[17]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[17]]$value
#> sval
#> "C9H8O4"
#>
#>
#> $PC_Compounds[[1]]$props[[18]]
#> $PC_Compounds[[1]]$props[[18]]$urn
#> $PC_Compounds[[1]]$props[[18]]$urn$label
#> [1] "Molecular Weight"
#>
#> $PC_Compounds[[1]]$props[[18]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[18]]$urn$version
#> [1] "2.2"
#>
#> $PC_Compounds[[1]]$props[[18]]$urn$software
#> [1] "PubChem"
#>
#> $PC_Compounds[[1]]$props[[18]]$urn$source
#> [1] "ncbi.nlm.nih.gov"
#>
#> $PC_Compounds[[1]]$props[[18]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[18]]$value
#> sval
#> "180.16"
#>
#>
#> $PC_Compounds[[1]]$props[[19]]
#> $PC_Compounds[[1]]$props[[19]]$urn
#> $PC_Compounds[[1]]$props[[19]]$urn$label
#> [1] "SMILES"
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$name
#> [1] "Canonical"
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$version
#> [1] "2.3.0"
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$software
#> [1] "OEChem"
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[19]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[19]]$value
#> sval
#> "CC(=O)OC1=CC=CC=C1C(=O)O"
#>
#>
#> $PC_Compounds[[1]]$props[[20]]
#> $PC_Compounds[[1]]$props[[20]]$urn
#> $PC_Compounds[[1]]$props[[20]]$urn$label
#> [1] "SMILES"
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$name
#> [1] "Isomeric"
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$version
#> [1] "2.3.0"
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$software
#> [1] "OEChem"
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$source
#> [1] "OpenEye Scientific Software"
#>
#> $PC_Compounds[[1]]$props[[20]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[20]]$value
#> sval
#> "CC(=O)OC1=CC=CC=C1C(=O)O"
#>
#>
#> $PC_Compounds[[1]]$props[[21]]
#> $PC_Compounds[[1]]$props[[21]]$urn
#> $PC_Compounds[[1]]$props[[21]]$urn$label
#> [1] "Topological"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$name
#> [1] "Polar Surface Area"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$datatype
#> [1] 7
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$implementation
#> [1] "E_TPSA"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$version
#> [1] "3.4.8.18"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$software
#> [1] "Cactvs"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$source
#> [1] "Xemistry GmbH"
#>
#> $PC_Compounds[[1]]$props[[21]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[21]]$value
#> fval
#> 63.6
#>
#>
#> $PC_Compounds[[1]]$props[[22]]
#> $PC_Compounds[[1]]$props[[22]]$urn
#> $PC_Compounds[[1]]$props[[22]]$urn$label
#> [1] "Weight"
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$name
#> [1] "MonoIsotopic"
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$datatype
#> [1] 1
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$version
#> [1] "2.2"
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$software
#> [1] "PubChem"
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$source
#> [1] "ncbi.nlm.nih.gov"
#>
#> $PC_Compounds[[1]]$props[[22]]$urn$release
#> [1] "2021.10.14"
#>
#>
#> $PC_Compounds[[1]]$props[[22]]$value
#> sval
#> "180.04225873"
#>
#>
#>
#> $PC_Compounds[[1]]$count
#> heavy_atom atom_chiral atom_chiral_def atom_chiral_undef
#> 13 0 0 0
#> bond_chiral bond_chiral_def bond_chiral_undef isotope_atom
#> 0 0 0 0
#> covalent_unit tautomers
#> 1 -1
#>
#>
#>