A Variety of Descriptors Combining Surface Area and Partial Charge Information
Source:R/315-extractDrugCPSA.R
extractDrugCPSA.Rd
A Variety of Descriptors Combining Surface Area and Partial Charge Information
Value
A data frame, each row represents one of the molecules, each column represents one feature. This function returns 29 columns:
PPSA.1
- partial positive surface area – sum of surface area on positive parts of moleculePPSA.2
- partial positive surface area * total positive charge on the moleculePPSA.3
- charge weighted partial positive surface areaPNSA.1
- partial negative surface area – sum of surface area on negative parts of moleculePNSA.2
- partial negative surface area * total negative charge on the moleculePNSA.3
- charge weighted partial negative surface areaDPSA.1
- difference of PPSA.1 and PNSA.1DPSA.2
- difference of FPSA.2 and PNSA.2DPSA.3
- difference of PPSA.3 and PNSA.3FPSA.1
- PPSA.1 / total molecular surface areaFFSA.2
- PPSA.2 / total molecular surface areaFPSA.3
- PPSA.3 / total molecular surface areaFNSA.1
- PNSA.1 / total molecular surface areaFNSA.2
- PNSA.2 / total molecular surface areaFNSA.3
- PNSA.3 / total molecular surface areaWPSA.1
- PPSA.1 * total molecular surface area / 1000WPSA.2
- PPSA.2 * total molecular surface area /1000WPSA.3
- PPSA.3 * total molecular surface area / 1000WNSA.1
- PNSA.1 * total molecular surface area /1000WNSA.2
- PNSA.2 * total molecular surface area / 1000WNSA.3
- PNSA.3 * total molecular surface area / 1000RPCG
- relative positive charge – most positive charge / total positive chargeRNCG
- relative negative charge – most negative charge / total negative chargeRPCS
- relative positive charge surface area – most positive surface area * RPCGRNCS
- relative negative charge surface area – most negative surface area * RNCGTHSA
- sum of solvent accessible surface areas of atoms with absolute value of partial charges less than 0.2TPSA
- sum of solvent accessible surface areas of atoms with absolute value of partial charges greater than or equal 0.2RHSA
- THSA / total molecular surface areaRPSA
- TPSA / total molecular surface area
Details
Calculates 29 Charged Partial Surface Area (CPSA) descriptors. The CPSA's were developed by Stanton et al.
References
Stanton, D.T. and Jurs, P.C. , Development and Use of Charged Partial Surface Area Structural Descriptors in Computer Assissted Quantitative Structure Property Relationship Studies, Analytical Chemistry, 1990, 62:2323.2329.
Examples
sdf = system.file('sysdata/OptAA3d.sdf', package = 'Rcpi')
# \donttest{
mol = readMolFromSDF(sdf)
#> Error in loadMolecules(normalizePath(sdffile)): The package "rcdk" is required to load molecular structures
dat = extractDrugCPSA(mol)
#> Error in evaluateDescriptor(molecules, type = "CPSADescriptor", silent = silent): The package "rcdk" is required to compute molecular descriptors
head(dat)# }
#> Error: object 'dat' not found