R/344-extractDrugVAdjMa.R

#' Descriptor that Calculates the Vertex Adjacency Information of A Molecule
#'
#' Descriptor that Calculates the Vertex Adjacency Information of A Molecule
#'
#' Vertex adjacency information (magnitude):
#' \eqn{1 + \log_2^m} where \eqn{m} is the number of heavy-heavy bonds.
#' If \eqn{m} is zero, then \code{0} is returned.
#'
#' @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{VAdjMat}.
#'
#' @export extractDrugVAdjMa
#'
#' @examples
#' smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
#' \donttest{
#' mol = readMolFromSmi(smi, type = 'mol')
#' dat = extractDrugVAdjMa(mol)
#' head(dat)}

extractDrugVAdjMa = function (molecules, silent = TRUE) {
    evaluateDescriptor(molecules, type = 'VAdjMaDescriptor', silent = silent)
}
road2stat/Rcpi documentation built on April 30, 2024, 6:44 a.m.