Nothing
#' Calculate the Graph Molecular Fingerprints (in Compact Format)
#'
#' Calculate the Graph Molecular Fingerprints (in Compact Format)
#'
#' Calculate the graph molecular fingerprints.
#' Similar to the standard type by simply considers connectivity.
#' This is hashed fingerprints, with a default length of 1024.
#'
#' @param molecules Parsed molucule object.
#' @param depth The search depth. Default is \code{6}.
#' @param size The length of the fingerprint bit string. Default is \code{1024}.
#' @param silent Logical. Whether the calculating process
#' should be shown or not, default is \code{TRUE}.
#'
#' @return A list, each component represents one of the molecules, each element
#' in the component represents the index of which element in the fingerprint is 1.
#' Each component's name is the length of the fingerprints.
#'
#' @keywords extractDrugGraph
#'
#' @aliases extractDrugGraph
#'
#' @author Nan Xiao <\url{https://nanx.me}>
#'
#' @export extractDrugGraph
#'
#' @importFrom rcdk get.fingerprint
#'
#' @seealso \link{extractDrugGraphComplete}
#'
#' @examples
#' smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
#' \donttest{
#' mol = readMolFromSmi(smi, type = 'mol')
#' fp = extractDrugGraph(mol)
#' head(fp)}
extractDrugGraph = function(
molecules, depth = 6, size = 1024, silent = TRUE) {
if (length(molecules) == 1) {
x = get.fingerprint(
molecules, type = 'graph',
depth = depth, size = size, verbose = !silent)
fp = vector('list', 1)
fp[[1]] = x@bits
names(fp) = x@nbit
} else {
x = lapply(
molecules, get.fingerprint, type = 'graph',
depth = depth, size = size, verbose = !silent)
fp = vector('list', length(molecules))
for (i in 1:length(molecules)) {
fp[[i]] = x[[i]]@bits
names(fp)[i] = x[[i]]@nbit
}
}
return(fp)
}
#' Calculate the Graph Molecular Fingerprints (in Complete Format)
#'
#' Calculate the Graph Molecular Fingerprints (in Complete Format)
#'
#' Calculate the graph molecular fingerprints.
#' Similar to the standard type by simply considers connectivity.
#' This is hashed fingerprints, with a default length of 1024.
#'
#' @param molecules Parsed molucule object.
#' @param depth The search depth. Default is \code{6}.
#' @param size The length of the fingerprint bit string. Default is \code{1024}.
#' @param silent Logical. Whether the calculating process
#' should be shown or not, default is \code{TRUE}.
#'
#' @return An integer vector or a matrix. Each row represents one molecule,
#' the columns represent the fingerprints.
#'
#' @keywords extractDrugGraphComplete
#'
#' @aliases extractDrugGraphComplete
#'
#' @author Nan Xiao <\url{https://nanx.me}>
#'
#' @export extractDrugGraphComplete
#'
#' @importFrom rcdk get.fingerprint
#'
#' @seealso \link{extractDrugGraph}
#'
#' @examples
#' smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
#' \donttest{
#' mol = readMolFromSmi(smi, type = 'mol')
#' fp = extractDrugGraphComplete(mol)
#' dim(fp)}
extractDrugGraphComplete = function(
molecules, depth = 6, size = 1024, silent = TRUE) {
if (length(molecules) == 1) {
x = get.fingerprint(
molecules, type = 'graph',
depth = depth, size = size, verbose = !silent)
fp = integer(x@nbit)
fp[x@bits] = 1L
} else {
x = lapply(
molecules, get.fingerprint, type = 'graph',
depth = depth, size = size, verbose = !silent)
fp = matrix(0L, nrow = length(molecules), ncol = size)
for (i in 1:length(molecules)) fp[ i, x[[i]]@bits ] = 1L
}
return(fp)
}
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.