get_chemical_image_batch {ccdR} | R Documentation |
Get image file by DTXSID or DTXCID batch
Description
Get image file by DTXSID or DTXCID batch
Usage
get_chemical_image_batch(
DTXSID = NULL,
DTXCID = NULL,
SMILES = NULL,
format = "",
API_key = NULL,
rate_limit = 0L,
verbose = FALSE
)
Arguments
DTXSID |
A list of chemical identifier DTXSIDs. |
DTXCID |
A list of chemical identifier DTXCIDs. |
SMILES |
A list of chemical identifier SMILES. |
format |
The image type, either "png" or "svg". If left blank, will default to "png". |
API_key |
The user-specific API key. |
rate_limit |
Number of seconds to wait between each request |
verbose |
A logical indicating if some “progress report” should be given. |
Value
A named list of Large arrays of three dimensions representing an image. For
displaying an image, one may use png::writePNG()
or
countcolors::plotArrayAsImage()
among many such functions.
Examples
# Pull images for multiple chemicals
dtxsid <- c('DTXSID7020182', 'DTXSID2021315')
images <- get_chemical_image_batch(DTXSID = dtxsid)
if (requireNamespace("countcolors", quietly = TRUE)){
countcolors::plotArrayAsImage(images[[1]])
countcolors::plotArrayAsImage(images[[2]])
}
[Package ccdR version 1.1.0 Index]