Descriptor that Calculates the LogP Based on a Simple Equation Using the Number of Carbons and Hetero Atoms
Source:R/336-extractDrugMannholdLogP.R
extractDrugMannholdLogP.Rd
Descriptor that Calculates the LogP Based on a Simple Equation Using the Number of Carbons and Hetero Atoms
Value
A data frame, each row represents one of the molecules,
each column represents one feature.
This function returns one column named MLogP
.
Details
This descriptor calculates the LogP based on a simple equation using the number of carbons and hetero atoms. The implemented equation was proposed in Mannhold et al.
References
Mannhold, R., Poda, G. I., Ostermann, C., & Tetko, I. V. (2009). Calculation of molecular lipophilicity: State-of-the-art and comparison of log P methods on more than 96,000 compounds. Journal of pharmaceutical sciences, 98(3), 861-893.
Examples
smi = system.file('vignettedata/FDAMDD.smi', package = 'Rcpi')
# \donttest{
mol = readMolFromSmi(smi, type = 'mol')
#> Error in parseSmiles(smi): The package "rcdk" is required to parse SMILES
dat = extractDrugMannholdLogP(mol)
#> Error in evaluateDescriptor(molecules, type = "MannholdLogPDescriptor", silent = silent): The package "rcdk" is required to compute molecular descriptors
head(dat)# }
#> Error: object 'dat' not found