Nothing
#' Calculate the Number of Amino Acids Descriptor
#'
#' Calculate the Number of Amino Acids Descriptor
#'
#' Calculates the number of each amino acids (total 20 types)
#' found in the molecues.
#'
#' @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 20 columns named
#' \code{nA}, \code{nR}, \code{nN}, \code{nD}, \code{nC},
#' \code{nF}, \code{nQ}, \code{nE}, \code{nG}, \code{nH},
#' \code{nI}, \code{nP}, \code{nL} \code{nK}, \code{nM},
#' \code{nS}, \code{nT}, \code{nY} \code{nV}, \code{nW}.
#'
#' @keywords extractDrugAminoAcidCount Amino Acid Count
#'
#' @aliases extractDrugAminoAcidCount
#'
#' @author Nan Xiao <\url{https://nanx.me}>
#'
#' @export extractDrugAminoAcidCount
#'
#' @importFrom rcdk eval.desc
#'
#' @examples
#' smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
#' \donttest{
#' mol = readMolFromSmi(smi, type = 'mol')
#' dat = extractDrugAminoAcidCount(mol)
#' head(dat)}
extractDrugAminoAcidCount = function (molecules, silent = TRUE) {
x = eval.desc(
molecules,
'org.openscience.cdk.qsar.descriptors.molecular.AminoAcidCountDescriptor',
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.