Nothing
#' Calculate the Standard Molecular Fingerprints (in Compact Format)
#'
#' Calculate the Standard Molecular Fingerprints (in Compact Format)
#'
#' Calculate the standard molecular fingerprints.
#' Considers paths of a given length.
#' 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 extrDrugStandard
#'
#' @aliases extrDrugStandard
#'
#' @author Min-feng Zhu <\email{wind2zhu@@163.com}>,
#' Nan Xiao <\url{http://r2s.name}>
#'
#' @export extrDrugStandard
#'
#' @importFrom rcdk get.fingerprint
#'
#' @seealso \link{extrDrugStandardComplete}
#'
#' @examples
#' smi = system.file('vignettedata/test.smi', package = 'BioMedR')
#' mol = readMolFromSmi(smi, type = 'mol')
#' fp = extrDrugStandard(mol)
#' head(fp)
#'
extrDrugStandard = function (molecules, depth = 6,
size = 1024, silent = TRUE) {
if (length(molecules) == 1) {
x = get.fingerprint(molecules, type = 'standard',
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 = 'standard',
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 Standard Molecular Fingerprints (in Complete Format)
#'
#' Calculate the Standard Molecular Fingerprints (in Complete Format)
#'
#' Calculate the standard molecular fingerprints.
#' Considers paths of a given length.
#' 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 extrDrugStandardComplete
#'
#' @aliases extrDrugStandardComplete
#'
#' @author Min-feng Zhu <\email{wind2zhu@@163.com}>,
#' Nan Xiao <\url{http://r2s.name}>
#'
#' @export extrDrugStandardComplete
#'
#' @importFrom rcdk get.fingerprint
#'
#' @seealso \link{extrDrugStandard}
#'
#' @examples
#' smi = system.file('vignettedata/test.smi', package = 'BioMedR')
#' mol = readMolFromSmi(smi, type = 'mol')
#' fp = extrDrugStandardComplete(mol)
#' dim(fp)
#'
extrDrugStandardComplete = function (molecules, depth = 6,
size = 1024, silent = TRUE) {
if (length(molecules) == 1) {
x = get.fingerprint(molecules, type = 'standard',
depth = depth, size = size, verbose = !silent)
fp = integer(x@nbit)
fp[x@bits] = 1L
} else {
x = lapply(molecules, get.fingerprint, type = 'standard',
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.