Nothing
#' Calculate the Sum of the Atomic Polarizabilities Descriptor
#'
#' Calculate the Sum of the Atomic Polarizabilities Descriptor
#'
#' Calculates the sum of the atomic polarizabilities
#' (including implicit hydrogens) descriptor.
#' Polarizabilities are taken from
#' \url{http://www.sunysccc.edu/academic/mst/ptable/p-table2.htm}.
#'
#' @param molecules Parsed molucule object.
#' @param silent Logical. Whether the calculating process
#' should be shown or not, default is \code{TRUE}.
#'
#' @return A data frame, each row represents one of the molecules,
#' each column represents one feature.
#' This function returns one column named \code{apol}.
#'
#' @keywords extractDrugApol Apol
#'
#' @aliases extractDrugApol
#'
#' @author Nan Xiao <\url{https://nanx.me}>
#'
#' @export extractDrugApol
#'
#' @importFrom rcdk eval.desc
#'
#' @examples
#' smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
#' \donttest{
#' mol = readMolFromSmi(smi, type = 'mol')
#' dat = extractDrugApol(mol)
#' head(dat)}
extractDrugApol = function (molecules, silent = TRUE) {
x = eval.desc(
molecules,
'org.openscience.cdk.qsar.descriptors.molecular.APolDescriptor',
verbose = !silent)
return(x)
}
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.