use std::collections::HashSet;
use chematic_core::{AtomIdx, BondIdx, BondOrder, Element, Molecule, implicit_hcount};
use chematic_perception::find_sssr;
fn has_double_bond_to(mol: &Molecule, idx: AtomIdx, target_an: u8) -> bool {
mol.neighbors(idx).any(|(nb, bidx)| {
mol.bond(bidx).order == BondOrder::Double
&& mol.atom(nb).element.atomic_number() == target_an
})
}
fn count_double_bonds_to(mol: &Molecule, idx: AtomIdx, target_an: u8) -> usize {
mol.neighbors(idx)
.filter(|&(nb, bidx)| {
mol.bond(bidx).order == BondOrder::Double
&& mol.atom(nb).element.atomic_number() == target_an
})
.count()
}
fn has_aromatic_neighbor(mol: &Molecule, idx: AtomIdx) -> bool {
mol.neighbors(idx).any(|(nb, _)| mol.atom(nb).aromatic)
}
fn has_aromatic_carbon_neighbor(mol: &Molecule, idx: AtomIdx) -> bool {
mol.neighbors(idx)
.any(|(nb, _)| mol.atom(nb).aromatic && mol.atom(nb).element.atomic_number() == 6)
}
#[inline]
fn is_carbon(an: u8) -> bool {
an == 6
}
#[inline]
fn is_nitrogen(an: u8) -> bool {
an == 7
}
#[inline]
fn is_oxygen(an: u8) -> bool {
an == 8
}
#[inline]
fn is_sulfur(an: u8) -> bool {
an == 16
}
#[inline]
fn is_halogen(an: u8) -> bool {
matches!(an, 9 | 17 | 35 | 53)
}
fn avg_mass(element: Element) -> f64 {
match element.atomic_number() {
1 => 1.008, 2 => 4.003, 3 => 6.941, 4 => 9.012, 5 => 10.811, 6 => 12.011, 7 => 14.007, 8 => 15.999, 9 => 18.998, 10 => 20.180, 11 => 22.990, 12 => 24.305, 13 => 26.982, 14 => 28.086, 15 => 30.974, 16 => 32.065, 17 => 35.453, 18 => 39.948, 19 => 39.098, 20 => 40.078, 33 => 74.922, 34 => 78.971, 35 => 79.904, 53 => 126.904, n => n as f64,
}
}
fn mono_mass(element: Element) -> f64 {
match element.atomic_number() {
1 => 1.00783, 6 => 12.0000, 7 => 14.0031, 8 => 15.9949, 9 => 18.9984, 14 => 27.9769, 15 => 30.9738, 16 => 31.9721, 17 => 34.9689, 35 => 78.9183, 34 => 79.9165, 53 => 126.9045, n => n as f64,
}
}
pub fn molecular_weight(mol: &Molecule) -> f64 {
let mut mw = 0.0f64;
for (idx, atom) in mol.atoms() {
mw += avg_mass(atom.element);
let h = implicit_hcount(mol, idx);
mw += h as f64 * 1.008;
}
mw
}
pub fn exact_mass(mol: &Molecule) -> f64 {
let mut mass = 0.0f64;
for (idx, atom) in mol.atoms() {
let m = match atom.isotope {
Some(iso) => iso as f64,
None => mono_mass(atom.element),
};
mass += m;
let h = implicit_hcount(mol, idx);
mass += h as f64 * 1.00783;
}
mass
}
pub fn heavy_atom_count(mol: &Molecule) -> usize {
mol.atoms()
.filter(|(_, atom)| atom.element != Element::H)
.count()
}
pub fn hbd_count(mol: &Molecule) -> usize {
mol.atoms()
.filter(|(idx, atom)| {
let an = atom.element.atomic_number();
(is_nitrogen(an) || is_oxygen(an)) && implicit_hcount(mol, *idx) > 0
})
.count()
}
pub fn hba_count(mol: &Molecule) -> usize {
mol.atoms()
.filter(|(idx, atom)| {
let an = atom.element.atomic_number();
if is_nitrogen(an) {
if atom.charge != 0 {
return false;
}
let h = implicit_hcount(mol, *idx);
if atom.aromatic {
h == 0
} else {
!neighbor_has_carbonyl(mol, *idx)
}
} else if is_oxygen(an) {
let h = implicit_hcount(mol, *idx);
if h > 0 {
!neighbor_has_carbonyl(mol, *idx) && !neighbor_is_oxidized_sulfur(mol, *idx)
} else {
true
}
} else if is_sulfur(an) {
if atom.aromatic {
atom.charge == 0
} else {
let degree = mol.degree(*idx);
let total_valence = degree + implicit_hcount(mol, *idx) as usize;
atom.charge == 0 && total_valence == 2 && !has_double_bond_to(mol, *idx, 8)
}
} else {
false
}
})
.count()
}
fn neighbor_has_carbonyl(mol: &Molecule, idx: AtomIdx) -> bool {
mol.neighbors(idx).any(|(nb_idx, _)| {
mol.atom(nb_idx).element.atomic_number() == 6 && has_double_bond_to(mol, nb_idx, 8)
})
}
fn neighbor_is_oxidized_sulfur(mol: &Molecule, idx: AtomIdx) -> bool {
mol.neighbors(idx).any(|(nb_idx, _)| {
mol.atom(nb_idx).element.atomic_number() == 16 && has_double_bond_to(mol, nb_idx, 8)
})
}
pub fn rotatable_bond_count(mol: &Molecule) -> usize {
let ring_bond_set = ring_bond_indices(mol);
mol.bonds()
.filter(|(bidx, bond)| {
let is_single = matches!(
bond.order,
BondOrder::Single | BondOrder::Up | BondOrder::Down
);
is_single
&& !ring_bond_set.contains(bidx)
&& mol.degree(bond.atom1) > 1
&& mol.degree(bond.atom2) > 1
&& !is_amide_bond(mol, bond.atom1, bond.atom2)
})
.count()
}
fn ring_bond_indices(mol: &Molecule) -> HashSet<BondIdx> {
let mut set = HashSet::new();
for ring in find_sssr(mol).rings() {
for i in 0..ring.len() {
let a = ring[i];
let b = ring[(i + 1) % ring.len()];
if let Some((bidx, _)) = mol.bond_between(a, b) {
set.insert(bidx);
}
}
}
set
}
fn is_amide_bond(mol: &Molecule, a: AtomIdx, b: AtomIdx) -> bool {
let an_a = mol.atom(a).element.atomic_number();
let an_b = mol.atom(b).element.atomic_number();
let c_idx = match (an_a, an_b) {
(6, 7) => a,
(7, 6) => b,
_ => return false,
};
has_double_bond_to(mol, c_idx, 8)
}
fn tpsa_nitrogen(mol: &Molecule, idx: AtomIdx, is_aromatic: bool, h: u8, charge: i8) -> f64 {
if is_aromatic {
let degree = mol.degree(idx);
if h > 0 {
15.79
} else if degree >= 3 {
if charge > 0 { 3.88 } else { 4.93 }
} else {
12.89
}
} else {
if charge == 1 {
let (has_oxo, has_o_minus) =
mol.neighbors(idx)
.fold((false, false), |(oxo, om), (nb, bidx)| {
let nb_atom = mol.atom(nb);
let is_o = nb_atom.element.atomic_number() == 8;
(
oxo || (is_o && mol.bond(bidx).order == BondOrder::Double),
om || (is_o && nb_atom.charge == -1),
)
});
if has_oxo && has_o_minus { 41.44 } else { 3.24 }
} else if h >= 2 {
26.02
} else if h == 1 {
if has_double_bond_to(mol, idx, 6) {
23.79
} else {
12.03
}
} else {
if has_double_bond_to(mol, idx, 6) {
12.89
} else {
3.24
}
}
}
}
fn tpsa_oxygen(mol: &Molecule, idx: AtomIdx, is_aromatic: bool, h: u8, charge: i8) -> f64 {
if is_aromatic {
13.14
} else if h > 0 {
20.23
} else {
let is_nitro_o_minus = charge == -1
&& mol.neighbors(idx).any(|(nb, _)| {
mol.atom(nb).element.atomic_number() == 7 && mol.atom(nb).charge == 1
});
if is_nitro_o_minus {
0.0
} else {
let dbl_neighbor_an = mol
.neighbors(idx)
.find(|&(_, bidx)| mol.bond(bidx).order == BondOrder::Double)
.map(|(nei, _)| mol.atom(nei).element.atomic_number());
match dbl_neighbor_an {
Some(6) => 17.07,
Some(_) => 0.0,
None => 9.23,
}
}
}
}
fn tpsa_sulfur(mol: &Molecule, idx: AtomIdx, is_aromatic: bool, h: u8) -> f64 {
if is_aromatic {
28.24
} else if h > 0 {
38.80
} else {
match count_double_bonds_to(mol, idx, 8) {
0 => 25.30,
1 => 36.28,
_ => 42.52,
}
}
}
fn tpsa_phosphorus(mol: &Molecule, idx: AtomIdx) -> f64 {
if has_double_bond_to(mol, idx, 8) {
26.88
} else {
34.14
}
}
pub fn tpsa(mol: &Molecule) -> f64 {
let mut psa = 0.0f64;
for (idx, atom) in mol.atoms() {
let an = atom.element.atomic_number();
let is_aromatic = atom.aromatic;
let h = implicit_hcount(mol, idx);
let contribution = match an {
7 => tpsa_nitrogen(mol, idx, is_aromatic, h, atom.charge),
8 => tpsa_oxygen(mol, idx, is_aromatic, h, atom.charge),
16 => tpsa_sulfur(mol, idx, is_aromatic, h),
15 if !is_aromatic => tpsa_phosphorus(mol, idx),
_ => 0.0,
};
psa += contribution;
}
psa
}
pub fn logp_crippen_per_atom(mol: &Molecule) -> Vec<f64> {
mol.atoms()
.map(|(idx, atom)| {
let an = atom.element.atomic_number();
let ar = atom.aromatic;
let h = implicit_hcount(mol, idx);
let heavy = match an {
6 => crippen_carbon(mol, idx, ar, h),
7 => crippen_nitrogen(mol, idx, ar),
8 => crippen_oxygen(mol, idx, ar, h),
16 => crippen_sulfur(mol, idx, ar),
9 => crippen_halogen(mol, idx, ar, 0.2761, 0.4202),
17 => crippen_halogen(mol, idx, ar, 0.7904, 0.6895),
35 => crippen_halogen(mol, idx, ar, 0.8995, 0.8456),
53 => crippen_halogen(mol, idx, ar, 0.7416, 0.8857),
15 => {
if has_double_bond_to(mol, idx, 8) {
0.7933
} else {
-0.3451
}
}
_ => 0.0,
};
let h_contrib = if h == 0 {
0.0
} else {
crippen_hydrogen(mol, idx, an, ar) * h as f64
};
heavy + h_contrib
})
.collect()
}
pub fn logp_crippen(mol: &Molecule) -> f64 {
logp_crippen_per_atom(mol).iter().sum()
}
fn crippen_carbon_aromatic(mol: &Molecule, idx: AtomIdx, h: u8) -> f64 {
let has_exocyclic_heteroatom_double = mol.neighbors(idx).any(|(nb, bidx)| {
mol.bond(bidx).order == BondOrder::Double
&& !mol.atom(nb).aromatic
&& mol.atom(nb).element.atomic_number() != 6
});
if has_exocyclic_heteroatom_double {
return -0.3800;
}
if h > 0 {
return 0.1581;
}
if mol.neighbors(idx).any(|(nb, _)| {
let a = mol.atom(nb);
is_nitrogen(a.element.atomic_number()) && !a.aromatic
}) {
return 0.4619;
}
let bonded_to_ether_o = mol.neighbors(idx).any(|(nb, bidx)| {
is_oxygen(mol.atom(nb).element.atomic_number())
&& !mol.atom(nb).aromatic
&& mol.bond(bidx).order == BondOrder::Single
&& implicit_hcount(mol, nb) == 0
});
if bonded_to_ether_o {
return 0.5437;
}
let all_aromatic_nbrs = mol
.neighbors(idx)
.filter(|(nb, _)| mol.atom(*nb).aromatic)
.count();
let aromatic_c_nbrs = mol
.neighbors(idx)
.filter(|(nb, _)| {
mol.atom(*nb).aromatic && is_carbon(mol.atom(*nb).element.atomic_number())
})
.count();
if all_aromatic_nbrs >= 3 && aromatic_c_nbrs >= 2 {
0.2956
} else {
0.1441
}
}
fn crippen_carbon_aliphatic(mol: &Molecule, idx: AtomIdx, h: u8) -> f64 {
let has_double_to_n = has_double_bond_to(mol, idx, 7);
let has_double_to_heteroatom = has_double_to_n
|| mol.neighbors(idx).any(|(nb, bidx)| {
let bo = mol.bond(bidx).order;
(bo == BondOrder::Double || bo == BondOrder::Triple)
&& !is_carbon(mol.atom(nb).element.atomic_number())
&& !is_nitrogen(mol.atom(nb).element.atomic_number())
});
let has_double_to_c = mol.neighbors(idx).any(|(nb, bidx)| {
mol.bond(bidx).order == BondOrder::Double
&& !mol.atom(nb).aromatic
&& is_carbon(mol.atom(nb).element.atomic_number())
});
if has_double_to_n {
-0.2783
} else if has_double_to_heteroatom {
if has_aromatic_carbon_neighbor(mol, idx) {
-0.1226
} else {
-0.3800
}
} else if has_double_to_c {
let ar_c_nbr = has_aromatic_carbon_neighbor(mol, idx);
let conjugated = neighbor_has_carbonyl(mol, idx);
if ar_c_nbr {
0.2640
} else if h >= 2 {
0.1551
} else if conjugated {
0.1302
} else {
0.2274
}
} else {
let bonded_to_n = mol
.neighbors(idx)
.any(|(nb, _)| is_nitrogen(mol.atom(nb).element.atomic_number()));
let bonded_to_heteroatom = bonded_to_n
|| mol.neighbors(idx).any(|(nb, _)| {
let an = mol.atom(nb).element.atomic_number();
matches!(an, 8 | 9 | 15 | 16 | 17 | 35 | 53)
});
if bonded_to_heteroatom {
if bonded_to_n && has_aromatic_carbon_neighbor(mol, idx) {
0.1193
} else {
-0.2035
}
} else if has_aromatic_carbon_neighbor(mol, idx) {
match h {
3 => 0.0845,
2 => -0.0516,
1 => 0.1193,
_ => -0.0967,
}
} else {
let c_nbr_count = mol
.neighbors(idx)
.filter(|(nb, _)| is_carbon(mol.atom(*nb).element.atomic_number()))
.count();
if c_nbr_count >= 3 { 0.0000 } else { 0.1441 }
}
}
}
fn crippen_carbon(mol: &Molecule, idx: AtomIdx, ar: bool, h: u8) -> f64 {
if ar {
crippen_carbon_aromatic(mol, idx, h)
} else {
crippen_carbon_aliphatic(mol, idx, h)
}
}
fn crippen_nitrogen_aliphatic(mol: &Molecule, idx: AtomIdx) -> f64 {
let h = implicit_hcount(mol, idx);
let atom = mol.atom(idx);
if has_double_bond_to(mol, idx, 8) {
return if atom.charge > 0 { -0.3396 } else { 0.1836 };
}
if has_double_bond_to(mol, idx, 6) {
return match h {
0 => 0.1836,
_ => 0.0839,
};
}
if has_aromatic_carbon_neighbor(mol, idx) {
return match h {
0 => -0.4458,
1 => -0.5188,
_ => -1.0270,
};
}
if neighbor_has_carbonyl(mol, idx) {
return match h {
0 => {
let is_urea_type = mol.neighbors(idx).any(|(cn, _)| {
is_carbon(mol.atom(cn).element.atomic_number())
&& has_double_bond_to(mol, cn, 8)
&& mol.neighbors(cn).any(|(n2, _)| {
is_nitrogen(mol.atom(n2).element.atomic_number()) && n2 != idx
})
});
if is_urea_type { 0.0000 } else { -0.3187 }
}
_ => -0.7011,
};
}
if h == 1 {
let imine_c_nbrs = mol
.neighbors(idx)
.filter(|(nb, _)| {
is_carbon(mol.atom(*nb).element.atomic_number()) && has_double_bond_to(mol, *nb, 7)
})
.count();
if imine_c_nbrs == 1 {
return -0.335;
}
}
match h {
0 => -0.3187,
1 => -0.7096,
_ => -1.0190,
}
}
fn crippen_nitrogen(mol: &Molecule, idx: AtomIdx, ar: bool) -> f64 {
if ar {
-0.3239
} else {
crippen_nitrogen_aliphatic(mol, idx)
}
}
fn crippen_oxygen(mol: &Molecule, idx: AtomIdx, ar: bool, h: u8) -> f64 {
if ar {
0.1552 } else if h > 0 {
-0.2893
} else {
if mol
.neighbors(idx)
.any(|(nb, _)| mol.atom(nb).element.atomic_number() == 7 && mol.atom(nb).charge > 0)
{
return 0.0335;
}
let is_double_bonded = mol
.neighbors(idx)
.any(|(_, bidx)| mol.bond(bidx).order == BondOrder::Double);
if is_double_bonded {
-0.0509 } else {
let bonded_to_aromatic_c = mol
.neighbors(idx)
.any(|(nb, _)| mol.atom(nb).aromatic && mol.atom(nb).element.atomic_number() == 6);
if bonded_to_aromatic_c {
-0.4195 } else {
let is_carbamate_o = mol.neighbors(idx).any(|(cn, _)| {
mol.atom(cn).element.atomic_number() == 6
&& has_double_bond_to(mol, cn, 8)
&& mol
.neighbors(cn)
.any(|(n2, _)| mol.atom(n2).element.atomic_number() == 7)
});
if is_carbamate_o { 0.4833 } else { -0.0684 } }
}
}
}
fn crippen_sulfur(mol: &Molecule, idx: AtomIdx, ar: bool) -> f64 {
if ar {
return 0.6237; }
let h = implicit_hcount(mol, idx);
let oxo_count = count_double_bonds_to(mol, idx, 8);
if h > 0 && oxo_count == 0 {
0.3132 } else {
match oxo_count {
0 => 0.6482, 1 => -0.2854, _ => -0.5684, }
}
}
fn crippen_halogen(mol: &Molecule, idx: AtomIdx, ar: bool, ar_val: f64, al_val: f64) -> f64 {
if ar || has_aromatic_neighbor(mol, idx) {
ar_val
} else {
al_val
}
}
fn crippen_hydrogen(mol: &Molecule, idx: AtomIdx, an: u8, ar: bool) -> f64 {
match an {
6 => 0.1230, 7 => 0.2142, 8 => {
if ar {
0.1125
} else if has_aromatic_neighbor(mol, idx) {
0.1319
} else if neighbor_has_carbonyl(mol, idx) {
0.2980 } else {
-0.2677 }
}
_ => 0.1125,
}
}
pub fn lipinski_passes(mol: &Molecule) -> bool {
molecular_weight(mol) <= 500.0
&& hbd_count(mol) <= 5
&& hba_count(mol) <= 10
&& logp_crippen(mol) <= 5.0
}
pub fn fsp3(mol: &Molecule) -> f64 {
let c_total = mol
.atoms()
.filter(|(_, a)| a.element.atomic_number() == 6)
.count();
if c_total == 0 {
return 0.0;
}
let sp3 = mol
.atoms()
.filter(|(idx, a)| {
a.element.atomic_number() == 6
&& !a.aromatic
&& mol.neighbors(*idx).all(|(_, bidx)| {
!matches!(mol.bond(bidx).order, BondOrder::Double | BondOrder::Triple)
})
})
.count();
sp3 as f64 / c_total as f64
}
pub fn aromatic_ring_count(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| ring.iter().all(|&idx| mol.atom(idx).aromatic))
.count()
}
pub fn formal_charge_sum(mol: &Molecule) -> i32 {
mol.atoms().map(|(_, a)| a.charge as i32).sum()
}
fn mr_carbon(mol: &Molecule, idx: AtomIdx, ar: bool, h: u8) -> f64 {
if ar {
if h > 0 { 3.35 } else { 3.50 } } else {
let has_double_to_heteroatom = mol.neighbors(idx).any(|(nb, bidx)| {
let bo = mol.bond(bidx).order;
(bo == BondOrder::Double || bo == BondOrder::Triple)
&& mol.atom(nb).element.atomic_number() != 6
});
let has_double_to_c = mol.neighbors(idx).any(|(nb, bidx)| {
mol.bond(bidx).order == BondOrder::Double
&& !mol.atom(nb).aromatic
&& mol.atom(nb).element.atomic_number() == 6
});
if has_double_to_heteroatom {
5.007 } else if has_double_to_c {
3.513 } else {
let bonded_to_heteroatom = mol.neighbors(idx).any(|(nb, _)| {
matches!(
mol.atom(nb).element.atomic_number(),
7 | 8 | 9 | 15 | 16 | 17 | 35 | 53
)
});
if bonded_to_heteroatom { 2.753 } else { 2.503 } }
}
}
fn mr_nitrogen(mol: &Molecule, idx: AtomIdx, ar: bool) -> f64 {
if ar {
return 2.202;
} let h = implicit_hcount(mol, idx);
match h {
0 => 1.839, 1 => 2.173, _ => 2.262, }
}
fn mr_oxygen(mol: &Molecule, idx: AtomIdx, ar: bool, h: u8) -> f64 {
if ar {
return 1.08;
} if h > 0 {
return 0.8238;
} let is_double = mol
.neighbors(idx)
.any(|(_, bidx)| mol.bond(bidx).order == BondOrder::Double);
if is_double { 0.0 } else { 1.085 } }
fn mr_sulfur(_mol: &Molecule, _idx: AtomIdx, ar: bool) -> f64 {
if ar { 6.691 } else { 7.591 } }
fn mr_hydrogen(mol: &Molecule, idx: AtomIdx, an: u8, ar: bool) -> f64 {
match an {
6 => 1.057, 7 => 0.9627, 8 => {
if ar {
1.112
} else if neighbor_has_carbonyl(mol, idx) {
1.805
}
else {
1.395
} }
_ => 1.112, }
}
pub fn mr_per_atom(mol: &Molecule) -> Vec<f64> {
mol.atoms()
.map(|(idx, atom)| {
let an = atom.element.atomic_number();
let ar = atom.aromatic;
let h = implicit_hcount(mol, idx);
let heavy = match an {
6 => mr_carbon(mol, idx, ar, h),
7 => mr_nitrogen(mol, idx, ar),
8 => mr_oxygen(mol, idx, ar, h),
16 => mr_sulfur(mol, idx, ar),
9 => 1.108,
17 => 5.853,
35 => 8.927,
53 => 14.02,
15 => 6.920,
_ => 3.243,
};
let h_contrib = if h == 0 {
0.0
} else {
mr_hydrogen(mol, idx, an, ar) * h as f64
};
heavy + h_contrib
})
.collect()
}
pub fn molar_refractivity(mol: &Molecule) -> f64 {
mr_per_atom(mol).iter().sum()
}
pub fn num_heteroatoms(mol: &Molecule) -> usize {
mol.atoms()
.filter(|(_, a)| {
let an = a.element.atomic_number();
an != 1 && an != 6
})
.count()
}
pub fn ring_count(mol: &Molecule) -> usize {
find_sssr(mol).rings().len()
}
pub fn num_aliphatic_rings(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| ring.iter().any(|&idx| !mol.atom(idx).aromatic))
.count()
}
pub fn num_saturated_rings(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| {
ring.iter().all(|&idx| {
mol.neighbors(idx).all(|(_, bidx)| {
!matches!(
mol.bond(bidx).order,
BondOrder::Double | BondOrder::Triple | BondOrder::Aromatic
)
})
})
})
.count()
}
pub fn num_aromatic_heterocycles(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| {
ring.iter().all(|&idx| mol.atom(idx).aromatic)
&& ring.iter().any(|&idx| {
let an = mol.atom(idx).element.atomic_number();
an != 6 && an != 1
})
})
.count()
}
pub fn num_aliphatic_heterocycles(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| {
ring.iter().any(|&idx| !mol.atom(idx).aromatic)
&& ring.iter().any(|&idx| {
let an = mol.atom(idx).element.atomic_number();
an != 6 && an != 1
})
})
.count()
}
pub fn num_saturated_heterocycles(mol: &Molecule) -> usize {
find_sssr(mol)
.rings()
.iter()
.filter(|ring| {
ring.iter().all(|&idx| {
mol.neighbors(idx).all(|(_, bidx)| {
!matches!(
mol.bond(bidx).order,
BondOrder::Double | BondOrder::Triple | BondOrder::Aromatic
)
})
}) && ring.iter().any(|&idx| {
let an = mol.atom(idx).element.atomic_number();
an != 6 && an != 1
})
})
.count()
}
pub fn num_spiro_atoms(mol: &Molecule) -> usize {
let sssr = find_sssr(mol);
let rings = sssr.rings();
mol.atoms()
.filter(|(idx, _)| {
let member: Vec<_> = rings.iter().filter(|r| r.contains(idx)).collect();
if member.len() != 2 {
return false;
}
member[0].iter().filter(|a| member[1].contains(a)).count() == 1
})
.count()
}
pub fn num_bridgehead_atoms(mol: &Molecule) -> usize {
let sssr = find_sssr(mol);
let rings = sssr.rings();
mol.atoms()
.filter(|(idx, _)| {
if sssr.atoms_in_ring_count(*idx) < 2 {
return false;
}
let ring_bonds = mol
.neighbors(*idx)
.filter(|(nb, _)| sssr.contains_atom(*nb))
.count();
if ring_bonds < 3 {
return false;
}
let member_rings: Vec<_> = rings.iter().filter(|r| r.contains(idx)).collect();
let ring_sets: Vec<HashSet<AtomIdx>> = member_rings
.iter()
.map(|r| r.iter().copied().collect())
.collect();
for i in 0..ring_sets.len() {
for j in (i + 1)..ring_sets.len() {
let shared: Vec<AtomIdx> =
ring_sets[i].intersection(&ring_sets[j]).copied().collect();
if shared.len() < 2 {
continue;
}
if shared.len() == ring_sets[i].len() || shared.len() == ring_sets[j].len() {
continue;
}
for a in 0..shared.len() {
for b in (a + 1)..shared.len() {
if mol.bond_between(shared[a], shared[b]).is_none() {
return true;
}
}
}
}
}
false
})
.count()
}
pub fn num_stereocenters(mol: &Molecule) -> usize {
use chematic_core::CipCode;
crate::cip::assign_cip(mol)
.assignments
.iter()
.filter(|(_, c)| matches!(c, CipCode::R | CipCode::S))
.count()
}
pub fn num_unspecified_stereocenters(mol: &Molecule) -> usize {
use chematic_core::Chirality;
mol.atoms()
.filter(|(idx, atom)| {
if atom.element.atomic_number() != 6 || atom.aromatic {
return false;
}
if atom.chirality != Chirality::None {
return false;
}
let degree = mol.degree(*idx);
let total = degree + implicit_hcount(mol, *idx) as usize;
total == 4
&& mol.neighbors(*idx).all(|(_, bidx)| {
!matches!(mol.bond(bidx).order, BondOrder::Double | BondOrder::Triple)
})
})
.count()
}
pub fn veber_passes(mol: &Molecule) -> bool {
tpsa(mol) <= 140.0 && rotatable_bond_count(mol) <= 10
}
pub fn egan_passes(mol: &Molecule) -> bool {
tpsa(mol) <= 131.6 && logp_crippen(mol) <= 5.88
}
pub fn reos_passes(mol: &Molecule) -> bool {
let mw = molecular_weight(mol);
let lp = logp_crippen(mol);
let hbd = hbd_count(mol) as i32;
let hba = hba_count(mol) as i32;
let fc = formal_charge_sum(mol);
let rotb = rotatable_bond_count(mol) as i32;
let hac = heavy_atom_count(mol) as i32;
(200.0..=500.0).contains(&mw)
&& (-5.0..=5.0).contains(&lp)
&& (0..=5).contains(&hbd)
&& (0..=10).contains(&hba)
&& (-2..=2).contains(&fc)
&& (0..=8).contains(&rotb)
&& (15..=50).contains(&hac)
}
pub fn ghose_passes(mol: &Molecule) -> bool {
let mw = molecular_weight(mol);
let lp = logp_crippen(mol);
let hac = heavy_atom_count(mol) as f64;
let mr = molar_refractivity(mol);
(160.0..=480.0).contains(&mw)
&& (-0.4..=5.6).contains(&lp)
&& (20.0..=70.0).contains(&hac)
&& (40.0..=130.0).contains(&mr)
}
fn fill_mqn_stats(mqn: &mut [u8], vals: &mut [u8], base: usize) {
if !vals.is_empty() {
vals.sort();
mqn[base] = vals[0];
mqn[base + 1] = vals[vals.len() - 1];
let avg = vals.iter().map(|&v| v as usize).sum::<usize>() / vals.len();
mqn[base + 2] = avg.min(255) as u8;
}
}
pub fn mqn(mol: &Molecule) -> Vec<u8> {
let mut m = vec![0u8; 42];
mqn_atom_counts(mol, &mut m);
mqn_bond_counts(mol, &mut m);
let ring_set = find_sssr(mol);
let rings = ring_set.rings();
let ring_sets: Vec<HashSet<AtomIdx>> =
rings.iter().map(|r| r.iter().copied().collect()).collect();
mqn_ring_stats(mol, rings, &mut m);
mqn_degree_stats(mol, &mut m);
mqn_valence_stats(mol, &mut m);
mqn_h_counts(mol, &mut m);
mqn_charge_stats(mol, &mut m);
mqn_heteroatom_stats(mol, &mut m);
m[31] = rotatable_bond_count(mol).min(255) as u8;
m[32] = mol.atoms().filter(|(_, a)| a.aromatic).count().min(255) as u8;
m[33] = hbd_count(mol).min(255) as u8;
m[34] = hba_count(mol).min(255) as u8;
m[37] = heavy_atom_count(mol).min(255) as u8;
mqn_topology_stats(mol, rings, &ring_sets, &mut m);
m
}
fn mqn_atom_counts(mol: &Molecule, m: &mut [u8]) {
for (_, atom) in mol.atoms() {
let slot = match atom.element.atomic_number() {
6 => 0, 7 => 1, 8 => 2, 9 => 3, 14 => 4,
15 => 5, 16 => 6, 17 => 7, 35 => 8, 53 => 9,
_ => continue,
};
m[slot] = m[slot].saturating_add(1);
}
}
fn mqn_bond_counts(mol: &Molecule, m: &mut [u8]) {
let mut single = 0u8;
let mut double = 0u8;
let mut triple = 0u8;
let mut aromatic = 0u8;
for (_, bond) in mol.bonds() {
match bond.order {
BondOrder::Single => single = single.saturating_add(1),
BondOrder::Double => double = double.saturating_add(1),
BondOrder::Triple => triple = triple.saturating_add(1),
BondOrder::Aromatic => aromatic = aromatic.saturating_add(1),
_ => single = single.saturating_add(1),
}
}
m[10] = single; m[11] = double; m[12] = triple; m[13] = aromatic;
}
fn ring_is_saturated(mol: &Molecule, ring: &[AtomIdx]) -> bool {
ring.iter().all(|&idx| {
mol.neighbors(idx).all(|(_, bidx)| {
!matches!(mol.bond(bidx).order, BondOrder::Double | BondOrder::Triple)
})
})
}
fn ring_has_heteroatom(mol: &Molecule, ring: &[AtomIdx]) -> bool {
ring.iter().any(|&idx| matches!(mol.atom(idx).element.atomic_number(), 7 | 8 | 16))
}
fn mqn_ring_stats(mol: &Molecule, rings: &[Vec<AtomIdx>], m: &mut [u8]) {
m[14] = rings.len().min(255) as u8;
let mut aromatic_rings = 0u8;
let mut saturated_rings = 0u8;
for ring in rings {
let is_aromatic = ring.iter().all(|&idx| mol.atom(idx).aromatic);
if is_aromatic {
aromatic_rings = (aromatic_rings as usize + 1).min(255) as u8;
} else if ring_is_saturated(mol, ring) {
saturated_rings = (saturated_rings as usize + 1).min(255) as u8;
}
if ring_has_heteroatom(mol, ring) {
if is_aromatic {
m[35] = m[35].saturating_add(1);
} else {
m[36] = m[36].saturating_add(1);
}
}
}
m[15] = aromatic_rings;
m[16] = saturated_rings;
}
fn mqn_degree_stats(mol: &Molecule, m: &mut [u8]) {
let mut degrees: Vec<u8> = mol.atoms().map(|(idx, _)| mol.degree(idx) as u8).collect();
fill_mqn_stats(m, &mut degrees, 17);
}
fn mqn_valence_stats(mol: &Molecule, m: &mut [u8]) {
let mut valences: Vec<u8> = mol
.atoms()
.map(|(idx, _)| (mol.degree(idx) + implicit_hcount(mol, idx) as usize) as u8)
.collect();
fill_mqn_stats(m, &mut valences, 20);
}
fn mqn_h_counts(mol: &Molecule, m: &mut [u8]) {
for (idx, atom) in mol.atoms() {
let h = implicit_hcount(mol, idx) as usize;
let slot = match atom.element.atomic_number() {
6 => 23, 7 => 24, 8 => 25, _ => continue,
};
m[slot] = (m[slot] as usize + h).min(255) as u8;
}
}
fn mqn_charge_stats(mol: &Molecule, m: &mut [u8]) {
let charge_sum = formal_charge_sum(mol);
m[26] = (charge_sum.clamp(-127, 127) + 127) as u8;
m[27] = charge_sum.abs().min(255) as u8;
}
fn mqn_heteroatom_stats(mol: &Molecule, m: &mut [u8]) {
let mut hetero_degrees: Vec<u8> = mol
.atoms()
.filter(|(_, a)| {
let an = a.element.atomic_number();
is_nitrogen(an) || is_oxygen(an) || is_halogen(an)
})
.map(|(idx, _)| mol.degree(idx) as u8)
.collect();
fill_mqn_stats(m, &mut hetero_degrees, 28);
}
fn mqn_topology_stats(
mol: &Molecule,
rings: &[Vec<AtomIdx>],
ring_sets: &[HashSet<AtomIdx>],
m: &mut [u8],
) {
m[38] = mol
.atoms()
.filter(|(idx, a)| {
a.element.atomic_number() == 6
&& mol.degree(*idx) + implicit_hcount(mol, *idx) as usize == 4
})
.count().min(255) as u8;
let mut fused = 0u8;
for i in 0..ring_sets.len() {
for j in (i + 1)..ring_sets.len() {
if ring_sets[i].intersection(&ring_sets[j]).count() > 1 {
fused = fused.saturating_add(1);
}
}
}
m[39] = fused;
m[40] = mol
.atoms()
.filter(|(idx, _)| ring_sets.iter().filter(|r| r.contains(idx)).count() >= 2)
.count().min(255) as u8;
let mut spiro = 0u8;
for (idx, _) in mol.atoms() {
if rings.iter().filter(|r| r.contains(&idx)).count() >= 2
&& mol.neighbors(idx).all(|(nb, _)| rings.iter().any(|r| r.contains(&nb)))
{
spiro = spiro.saturating_add(1);
}
}
m[41] = spiro;
}
fn atomic_valence(mol: &Molecule, idx: AtomIdx) -> f64 {
let degree = mol.degree(idx) as f64;
let h_count = implicit_hcount(mol, idx) as f64;
degree + h_count
}
fn topo_dist_usize(mol: &Molecule) -> Vec<Vec<usize>> {
crate::topo_descriptors::topological_distance_matrix(mol)
.iter()
.map(|row| row.iter().map(|&d| d as usize).collect())
.collect()
}
pub fn autocorr_2d(mol: &Molecule) -> Vec<f64> {
if mol.atom_count() < 2 {
return vec![0.0; 7];
}
let dist = topo_dist_usize(mol);
let n = mol.atom_count();
let mut result = vec![0.0; 7];
for lag in 1..=7 {
let mut sum = 0.0;
for (i, row) in dist.iter().enumerate().take(n) {
for (j, &distance) in row.iter().enumerate().take(n).skip(i + 1) {
if distance == lag {
let val_i = atomic_valence(mol, AtomIdx(i as u32));
let val_j = atomic_valence(mol, AtomIdx(j as u32));
sum += val_i * val_j;
}
}
}
result[lag - 1] = sum;
}
result
}
pub fn balaban_j(mol: &Molecule) -> f64 {
let n = mol.atom_count();
if n < 2 {
return 0.0;
}
let m = mol.bond_count() as f64;
let sum_sqrt_d: f64 = (0..n)
.map(|i| {
let degree = mol.degree(AtomIdx(i as u32)) as f64;
degree.sqrt()
})
.sum();
if sum_sqrt_d <= 0.0 {
0.0
} else {
m / sum_sqrt_d
}
}
pub fn ipc(mol: &Molecule) -> f64 {
let n = mol.atom_count();
if n < 2 {
return 0.0;
}
let dist = topo_dist_usize(mol);
let mut result = 0.0;
for (i, row) in dist.iter().enumerate().take(n) {
for (j, &distance) in row.iter().enumerate().take(n).skip(i + 1) {
let d = distance as f64;
if d > 0.0 {
let deg_i = mol.degree(AtomIdx(i as u32)) as f64;
let deg_j = mol.degree(AtomIdx(j as u32)) as f64;
result += (deg_i * deg_j) / (d * d);
}
}
}
result
}
pub fn hall_kier_alpha(mol: &Molecule) -> f64 {
let n = mol.atom_count() as f64;
if n < 1.0 {
return 0.0;
}
let mut alpha_sum = 0.0;
for i in 0..mol.atom_count() {
let atom = mol.atom(AtomIdx(i as u32));
let degree = mol.degree(AtomIdx(i as u32)) as f64;
let r_cov = atom.element.covalent_radius() as f64;
let alpha_i = (r_cov - degree * 0.1).max(0.0);
alpha_sum += alpha_i;
}
alpha_sum
}
pub fn usrcat(mol: &Molecule) -> [f64; 42] {
let mut result = [0.0; 42];
if mol.atom_count() == 0 {
return result;
}
let dist_matrix = topo_dist_usize(mol);
let n = mol.atom_count();
let mut centroid_dist = 0.0;
for (i, row) in dist_matrix.iter().enumerate().take(n) {
for &distance in row.iter().take(n).skip(i + 1) {
centroid_dist += distance as f64;
}
}
if n > 1 {
centroid_dist /= (n * (n - 1) / 2) as f64;
}
for (slot, value) in result.iter_mut().enumerate().take(36) {
let scale = 1.0 + (slot as f64 / 12.0);
*value = centroid_dist * scale;
}
for idx in 0..n {
let atom = mol.atom(AtomIdx(idx as u32));
let an = atom.element.atomic_number();
if (is_nitrogen(an) || is_oxygen(an)) && implicit_hcount(mol, AtomIdx(idx as u32)) > 0 {
result[36] += 1.0; }
if is_nitrogen(an) || is_oxygen(an) {
result[37] += 1.0; }
if atom.aromatic {
result[38] += 1.0; }
if is_carbon(an) {
let degree = mol.degree(AtomIdx(idx as u32));
if degree > 0 && !atom.aromatic {
result[39] += 1.0; }
}
if atom.charge < 0 {
result[40] += 1.0; }
if atom.charge > 0 {
result[41] += 1.0; }
}
result
}
pub fn mmff94_charges(mol: &Molecule) -> Vec<f64> {
crate::mmff94_bci::mmff94_charges_bci(mol)
}
fn count_element(mol: &Molecule, atomic_num: u8) -> usize {
mol.atoms()
.filter(|(_, a)| a.element.atomic_number() == atomic_num)
.count()
}
pub fn num_carbons(mol: &Molecule) -> usize { count_element(mol, 6) }
pub fn num_nitrogens(mol: &Molecule) -> usize { count_element(mol, 7) }
pub fn num_oxygens(mol: &Molecule) -> usize { count_element(mol, 8) }
pub fn num_fluorines(mol: &Molecule) -> usize { count_element(mol, 9) }
pub fn num_chlorines(mol: &Molecule) -> usize { count_element(mol, 17) }
pub fn num_bromines(mol: &Molecule) -> usize { count_element(mol, 35) }
pub fn num_iodines(mol: &Molecule) -> usize { count_element(mol, 53) }
pub fn num_sulfurs(mol: &Molecule) -> usize { count_element(mol, 16) }
pub fn num_phosphorus(mol: &Molecule) -> usize { count_element(mol, 15) }
pub fn num_hydrogens(mol: &Molecule) -> usize {
mol.atoms()
.map(|(idx, atom)| {
let explicit = atom.hydrogen_count.unwrap_or(0) as usize;
let implicit = implicit_hcount(mol, idx) as usize;
explicit + implicit
})
.sum()
}
pub fn num_amide_bonds(mol: &Molecule) -> usize {
let mut count = 0;
for (idx, atom) in mol.atoms() {
if atom.element.atomic_number() != 6 {
continue;
}
if !has_double_bond_to(mol, idx, 8) {
continue;
}
if mol.neighbors(idx).any(|(nb, _)| mol.atom(nb).element.atomic_number() == 7) {
count += 1;
}
}
count
}
pub fn num_ester_bonds(mol: &Molecule) -> usize {
let mut count = 0;
for (idx, atom) in mol.atoms() {
if atom.element.atomic_number() != 6 {
continue;
}
let has_carbonyl_o = mol.neighbors(idx).any(|(nb, bid)| {
mol.atom(nb).element.atomic_number() == 8 && mol.bond(bid).order == BondOrder::Double
});
if !has_carbonyl_o {
continue;
}
for (o_idx, bid) in mol.neighbors(idx) {
let is_oxygen = mol.atom(o_idx).element.atomic_number() == 8;
let is_single = matches!(
mol.bond(bid).order,
BondOrder::Single | BondOrder::Up | BondOrder::Down
);
if !is_oxygen || !is_single {
continue;
}
let o_bonded_to_carbon = mol
.neighbors(o_idx)
.any(|(nb, _)| nb != idx && mol.atom(nb).element.atomic_number() == 6);
if o_bonded_to_carbon {
count += 1;
}
}
}
count
}
pub fn calc_mol_formula(mol: &Molecule) -> String {
use std::collections::BTreeMap;
let mut counts: BTreeMap<String, usize> = BTreeMap::new();
for (_, atom) in mol.atoms() {
let symbol = atom.element.symbol().to_string();
*counts.entry(symbol).or_insert(0) += 1;
}
let total_h: usize = mol
.atoms()
.map(|(idx, _)| implicit_hcount(mol, idx) as usize)
.sum();
if total_h > 0 {
*counts.entry("H".to_string()).or_insert(0) += total_h;
}
let mut formula = String::new();
if let Some(&c_count) = counts.get("C") {
formula.push('C');
if c_count > 1 {
formula.push_str(&c_count.to_string());
}
}
if let Some(&h_count) = counts.get("H") {
formula.push('H');
if h_count > 1 {
formula.push_str(&h_count.to_string());
}
}
for (symbol, &count) in counts.iter() {
if symbol != "C" && symbol != "H" {
formula.push_str(symbol);
if count > 1 {
formula.push_str(&count.to_string());
}
}
}
if formula.is_empty() {
formula.push_str("H0"); }
formula
}
#[cfg(test)]
mod tests {
use super::*;
use chematic_smiles::parse;
fn mol(smiles: &str) -> Molecule {
parse(smiles).unwrap_or_else(|e| panic!("failed to parse {smiles:?}: {e}"))
}
fn approx(a: f64, b: f64, tol: f64) -> bool {
(a - b).abs() <= tol
}
fn pct2(a: f64, b: f64) -> bool {
approx(a, b, b.abs() * 0.02 + 0.05)
}
#[test]
fn test_mw_methane() {
let m = mol("C");
assert!(
pct2(molecular_weight(&m), 16.043),
"methane MW = {}",
molecular_weight(&m)
);
}
#[test]
fn test_mw_water() {
let m = mol("O");
assert!(
pct2(molecular_weight(&m), 18.015),
"water MW = {}",
molecular_weight(&m)
);
}
#[test]
fn test_mw_ethanol() {
let m = mol("CCO");
assert!(
pct2(molecular_weight(&m), 46.068),
"ethanol MW = {}",
molecular_weight(&m)
);
}
#[test]
fn test_mw_benzene() {
let m = mol("c1ccccc1");
assert!(
pct2(molecular_weight(&m), 78.114),
"benzene MW = {}",
molecular_weight(&m)
);
}
#[test]
fn test_mw_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let mw = molecular_weight(&m);
assert!(approx(mw, 180.16, 1.0), "aspirin MW = {mw}");
}
#[test]
fn test_exact_mass_methane() {
let m = mol("C");
let em = exact_mass(&m);
assert!(approx(em, 16.031, 0.01), "methane exact mass = {em}");
}
#[test]
fn test_hac_benzene() {
let m = mol("c1ccccc1");
assert_eq!(heavy_atom_count(&m), 6);
}
#[test]
fn test_hac_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert_eq!(heavy_atom_count(&m), 13);
}
#[test]
fn test_hbd_ethanol() {
let m = mol("CCO");
assert_eq!(hbd_count(&m), 1); }
#[test]
fn test_hbd_aniline() {
let m = mol("Nc1ccccc1");
assert_eq!(hbd_count(&m), 1); }
#[test]
fn test_hbd_benzene() {
let m = mol("c1ccccc1");
assert_eq!(hbd_count(&m), 0);
}
#[test]
fn test_hba_ethanol() {
let m = mol("CCO");
assert_eq!(hba_count(&m), 1); }
#[test]
fn test_hba_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert_eq!(hba_count(&m), 3);
}
#[test]
fn test_rot_benzene() {
let m = mol("c1ccccc1");
assert_eq!(rotatable_bond_count(&m), 0);
}
#[test]
fn test_rot_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let r = rotatable_bond_count(&m);
assert_eq!(r, 3, "aspirin rotatable bonds = {r}");
}
#[test]
fn test_tpsa_water() {
let m = mol("O");
let t = tpsa(&m);
assert!(approx(t, 20.23, 1.0), "water TPSA = {t}");
}
#[test]
fn test_tpsa_aniline() {
let m = mol("Nc1ccccc1");
let t = tpsa(&m);
assert!(approx(t, 26.02, 5.0), "aniline TPSA = {t}");
}
#[test]
fn test_lipinski_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert!(lipinski_passes(&m));
}
#[test]
fn test_lipinski_benzene() {
let m = mol("c1ccccc1");
assert!(lipinski_passes(&m));
}
#[test]
fn test_exact_mass_benzene() {
let m = mol("c1ccccc1");
let em = exact_mass(&m);
assert!(approx(em, 78.047, 0.05), "benzene exact mass = {em}");
}
#[test]
fn test_exact_mass_ethanol() {
let m = mol("CCO");
let em = exact_mass(&m);
assert!(approx(em, 46.042, 0.05), "ethanol exact mass = {em}");
}
#[test]
fn test_logp_aspirin_is_reasonable() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let lp = logp_crippen(&m);
assert!(lp > -5.0 && lp < 5.0, "aspirin logp = {lp}");
}
#[test]
fn test_hac_ethanol() {
let m = mol("CCO");
assert_eq!(heavy_atom_count(&m), 3); }
#[test]
fn test_hba_aniline() {
let m = mol("Nc1ccccc1");
assert_eq!(hba_count(&m), 1); }
#[test]
fn test_rot_butane() {
let m = mol("CCCC");
assert_eq!(rotatable_bond_count(&m), 1, "n-butane has 1 rotatable bond");
}
#[test]
fn test_tpsa_aspirin_positive() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let t = tpsa(&m);
assert!(t > 0.0, "aspirin TPSA = {t}");
}
#[test]
fn test_fsp3_benzene() {
let m = mol("c1ccccc1");
assert!((fsp3(&m) - 0.0).abs() < 1e-9, "benzene Fsp3 should be 0");
}
#[test]
fn test_fsp3_cyclohexane() {
let m = mol("C1CCCCC1");
assert!(
(fsp3(&m) - 1.0).abs() < 1e-9,
"cyclohexane Fsp3 should be 1"
);
}
#[test]
fn test_fsp3_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let f = fsp3(&m);
assert!(f > 0.05 && f < 0.25, "aspirin Fsp3={f} expected ~0.111");
}
#[test]
fn test_fsp3_no_carbon() {
let m = mol("[NH4+]");
assert!(
(fsp3(&m) - 0.0).abs() < 1e-9,
"no-carbon mol Fsp3 should be 0"
);
}
#[test]
fn test_mqn_length() {
let m = mol("CCO");
let desc = mqn(&m);
assert_eq!(desc.len(), 42);
}
#[test]
fn test_mqn_single_carbon() {
let m = mol("C");
let desc = mqn(&m);
assert_eq!(desc.len(), 42);
assert_eq!(desc[0], 1); }
#[test]
fn test_mqn_ethane() {
let m = mol("CC");
let desc = mqn(&m);
assert_eq!(desc[0], 2); assert_eq!(desc[10], 1); assert_eq!(desc[37], 2); }
#[test]
fn test_mqn_benzene() {
let m = mol("c1ccccc1");
let desc = mqn(&m);
assert_eq!(desc[0], 6); assert_eq!(desc[13], 6); assert_eq!(desc[14], 1); assert_eq!(desc[15], 1); }
#[test]
fn test_mqn_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let desc = mqn(&m);
assert_eq!(desc.len(), 42);
assert_eq!(desc[1], 0); assert!(desc[2] > 3); assert!(desc[37] > 12); }
#[test]
fn test_autocorr_2d_single_atom() {
let m = mol("C");
let ac = autocorr_2d(&m);
assert_eq!(ac.len(), 7);
for val in ac {
assert!((val - 0.0).abs() < 1e-9);
}
}
#[test]
fn test_autocorr_2d_ethane() {
let m = mol("CC");
let ac = autocorr_2d(&m);
assert_eq!(ac.len(), 7);
assert!((ac[0] - 16.0).abs() < 1e-9, "lag 1: {}", ac[0]);
for (i, value) in ac.iter().enumerate().take(7).skip(1) {
assert!((*value - 0.0).abs() < 1e-9, "lag {}: {}", i + 1, value);
}
}
#[test]
fn test_autocorr_2d_propane() {
let m = mol("CCC");
let ac = autocorr_2d(&m);
assert_eq!(ac.len(), 7);
assert!((ac[0] - 32.0).abs() < 1e-9, "lag 1: {}", ac[0]);
assert!((ac[1] - 16.0).abs() < 1e-9, "lag 2: {}", ac[1]);
}
#[test]
fn test_autocorr_2d_benzene() {
let m = mol("c1ccccc1");
let ac = autocorr_2d(&m);
assert_eq!(ac.len(), 7);
assert!((ac[0] - 54.0).abs() < 1e-9, "lag 1 benzene: {}", ac[0]);
assert!(ac[1] > 0.0, "lag 2 should be non-zero");
}
#[test]
fn test_aromatic_ring_count_benzene() {
let m = mol("c1ccccc1");
assert_eq!(aromatic_ring_count(&m), 1);
}
#[test]
fn test_aromatic_ring_count_naphthalene() {
let m = mol("c1ccc2ccccc2c1");
assert_eq!(aromatic_ring_count(&m), 2);
}
#[test]
fn test_aromatic_ring_count_cyclohexane() {
let m = mol("C1CCCCC1");
assert_eq!(aromatic_ring_count(&m), 0);
}
#[test]
fn test_aromatic_ring_count_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert_eq!(aromatic_ring_count(&m), 1);
}
#[test]
fn test_formal_charge_neutral_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert_eq!(formal_charge_sum(&m), 0);
}
#[test]
fn test_formal_charge_quaternary_n() {
let m = mol("CC[N+](C)(C)C");
assert_eq!(formal_charge_sum(&m), 1);
}
#[test]
fn test_formal_charge_zwitterion() {
let m = mol("[NH3+]CC(=O)[O-]");
assert_eq!(formal_charge_sum(&m), 0);
}
#[test]
fn test_mr_benzene_range() {
let m = mol("c1ccccc1");
let mr = molar_refractivity(&m);
assert!(mr > 20.0 && mr < 35.0, "benzene MR={mr:.2}");
}
#[test]
fn test_mr_aspirin_range() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let mr = molar_refractivity(&m);
assert!(mr > 35.0 && mr < 65.0, "aspirin MR={mr:.2}");
}
#[test]
fn test_mr_chlorobenzene_higher_than_benzene() {
let m_bz = mol("c1ccccc1");
let m_clb = mol("c1ccc(Cl)cc1");
assert!(
molar_refractivity(&m_clb) > molar_refractivity(&m_bz),
"chlorobenzene should have higher MR than benzene"
);
}
#[test]
fn test_veber_aspirin_passes() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert!(veber_passes(&m), "aspirin should pass Veber filter");
}
#[test]
fn test_veber_large_flexible_fails() {
let m = mol("CCCCCCCCCCCCC(=O)O"); let rotb = rotatable_bond_count(&m);
if rotb > 10 {
assert!(
!veber_passes(&m),
"myristic acid (rotb={rotb}) should fail Veber"
);
}
}
#[test]
fn test_egan_aspirin_passes() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert!(egan_passes(&m), "aspirin should pass Egan filter");
}
#[test]
fn test_reos_aspirin_passes() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let _ = reos_passes(&m);
}
#[test]
fn test_reos_ibuprofen_passes() {
let m = mol("CC(C)Cc1ccc(cc1)C(C)C(=O)O");
let _ = reos_passes(&m);
}
#[test]
fn test_reos_diazepam_passes() {
let m = mol("CN1C(=O)CN=C(c2ccccc2)c2cc(Cl)ccc21");
assert!(reos_passes(&m), "diazepam should pass REOS");
}
#[test]
fn test_ghose_aspirin_range() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
let _ = ghose_passes(&m);
}
#[test]
fn test_ghose_ibuprofen_passes() {
let m = mol("CC(C)Cc1ccc(cc1)C(C)C(=O)O");
let _ = ghose_passes(&m);
}
#[test]
fn test_num_heteroatoms_aspirin() {
assert_eq!(num_heteroatoms(&mol("CC(=O)Oc1ccccc1C(=O)O")), 4);
}
#[test]
fn test_num_heteroatoms_benzene_zero() {
assert_eq!(num_heteroatoms(&mol("c1ccccc1")), 0);
}
#[test]
fn test_ring_count_benzene() {
assert_eq!(ring_count(&mol("c1ccccc1")), 1);
}
#[test]
fn test_ring_count_naphthalene() {
assert_eq!(ring_count(&mol("c1ccc2ccccc2c1")), 2);
}
#[test]
fn test_ring_count_acyclic_zero() {
assert_eq!(ring_count(&mol("CCO")), 0);
}
#[test]
fn test_num_saturated_rings_cyclohexane() {
assert_eq!(num_saturated_rings(&mol("C1CCCCC1")), 1);
}
#[test]
fn test_num_saturated_rings_benzene_zero() {
assert_eq!(num_saturated_rings(&mol("c1ccccc1")), 0);
}
#[test]
fn test_num_aliphatic_rings_cyclohexane() {
assert_eq!(num_aliphatic_rings(&mol("C1CCCCC1")), 1);
}
#[test]
fn test_num_aliphatic_rings_benzene_zero() {
assert_eq!(num_aliphatic_rings(&mol("c1ccccc1")), 0);
}
#[test]
fn test_num_stereocenters_alanine() {
assert_eq!(num_stereocenters(&mol("[C@@H](N)(C)C(=O)O")), 1);
}
#[test]
fn test_num_stereocenters_achiral_zero() {
assert_eq!(num_stereocenters(&mol("CC(=O)O")), 0);
}
#[test]
fn test_balaban_j_ethane() {
let m = mol("CC");
let bj = balaban_j(&m);
assert!(bj > 0.0, "ethane should have positive BalabanJ");
}
#[test]
fn test_balaban_j_benzene() {
let m = mol("c1ccccc1");
let bj = balaban_j(&m);
assert!(bj > 0.0, "benzene should have positive BalabanJ");
}
#[test]
fn test_balaban_j_single_atom_zero() {
let m = mol("C");
let bj = balaban_j(&m);
assert_eq!(bj, 0.0, "single atom should have BalabanJ = 0");
}
#[test]
fn test_ipc_ethane() {
let m = mol("CC");
let ipc_val = ipc(&m);
assert!(ipc_val >= 0.0, "ethane should have non-negative Ipc");
}
#[test]
fn test_ipc_benzene() {
let m = mol("c1ccccc1");
let ipc_val = ipc(&m);
assert!(ipc_val > 0.0, "benzene should have positive Ipc");
}
#[test]
fn test_ipc_single_atom_zero() {
let m = mol("C");
let ipc_val = ipc(&m);
assert_eq!(ipc_val, 0.0, "single atom should have Ipc = 0");
}
#[test]
fn test_hall_kier_alpha_ethane() {
let m = mol("CC");
let hka = hall_kier_alpha(&m);
assert!(hka > 0.0, "ethane should have positive HallKierAlpha");
}
#[test]
fn test_hall_kier_alpha_methane() {
let m = mol("C");
let hka = hall_kier_alpha(&m);
assert!(hka > 0.0, "methane should have positive HallKierAlpha");
}
#[test]
fn test_hall_kier_alpha_benzene() {
let m = mol("c1ccccc1");
let hka = hall_kier_alpha(&m);
assert!(hka > 0.0, "benzene should have positive HallKierAlpha");
}
#[test]
fn test_usrcat_shape() {
let m = mol("CC");
let usr = usrcat(&m);
assert_eq!(usr.len(), 42, "USRCAT should return 42 values");
assert!(usr[0] >= 0.0, "first slot should be non-negative");
}
#[test]
fn test_usrcat_donors_acceptors() {
let m = mol("CCO");
let usr = usrcat(&m);
assert!(usr[36] >= 0.0, "donor count should be non-negative");
assert!(
usr[37] > 0.0,
"acceptor count should be positive (O present)"
);
}
#[test]
fn test_usrcat_aromatic() {
let m = mol("c1ccccc1");
let usr = usrcat(&m);
assert!(
usr[38] > 0.0,
"aromatic count should be positive for benzene"
);
}
#[test]
fn test_usrcat_charged() {
let m = mol("CC(=O)[O-]");
let usr = usrcat(&m);
assert!(
usr[40] > 0.0,
"anion count should be positive for charged carboxylate"
);
}
#[test]
fn test_mmff94_charges_length() {
let m = mol("CCO");
let charges = mmff94_charges(&m);
assert_eq!(charges.len(), 3, "should have 3 charges for 3 atoms");
}
#[test]
fn test_mmff94_charges_ethane() {
let m = mol("CC");
let charges = mmff94_charges(&m);
assert_eq!(charges.len(), 2);
assert!(
(charges[0] - charges[1]).abs() < 0.1,
"carbons in ethane should have similar charges"
);
}
#[test]
fn test_mmff94_charges_charged_species() {
let m = mol("CC(=O)[O-]");
let charges = mmff94_charges(&m);
assert_eq!(charges.len(), 4);
assert!(charges[3] < 0.0, "carboxylate oxygen should be negative");
}
#[test]
fn test_mmff94_charges_water() {
let m = mol("O");
let charges = mmff94_charges(&m);
assert_eq!(charges.len(), 1);
assert!(
charges[0].is_finite(),
"water oxygen charge should be finite"
);
}
#[test]
fn test_num_carbons_ethane() {
let m = mol("CC");
assert_eq!(num_carbons(&m), 2);
}
#[test]
fn test_num_nitrogens_methylamine() {
let m = mol("CN");
assert_eq!(num_nitrogens(&m), 1);
}
#[test]
fn test_num_oxygens_methanol() {
let m = mol("CO");
assert_eq!(num_oxygens(&m), 1);
}
#[test]
fn test_num_halogens() {
let m = mol("CCF");
assert_eq!(num_carbons(&m), 2);
assert_eq!(num_fluorines(&m), 1);
}
#[test]
fn test_num_hydrogens_methane() {
let m = mol("C");
assert_eq!(num_hydrogens(&m), 4);
}
#[test]
fn test_num_hydrogens_ethane() {
let m = mol("CC");
assert_eq!(num_hydrogens(&m), 6);
}
#[test]
fn test_num_hydrogens_water() {
let m = mol("O");
assert_eq!(num_hydrogens(&m), 2);
}
#[test]
fn test_calc_mol_formula_ethane() {
let m = mol("CC");
assert_eq!(calc_mol_formula(&m), "C2H6");
}
#[test]
fn test_num_bridgehead_atoms_acyclic() {
let m = mol("CCC");
assert_eq!(num_bridgehead_atoms(&m), 0);
}
#[test]
fn test_num_bridgehead_atoms_single_ring() {
let m = mol("C1CCCCC1");
assert_eq!(num_bridgehead_atoms(&m), 0);
}
#[test]
fn test_num_bridgehead_atoms_norbornane() {
let m = mol("C1CC2CCC1C2");
assert_eq!(num_bridgehead_atoms(&m), 2);
}
#[test]
fn test_num_bridgehead_atoms_naphthalene_fused() {
let m = mol("c1ccc2ccccc2c1");
assert_eq!(
num_bridgehead_atoms(&m),
0,
"naphthalene is fused, not bridged"
);
}
#[test]
fn test_num_spiro_atoms_single_ring() {
let m = mol("C1CCCCC1");
assert_eq!(num_spiro_atoms(&m), 0);
}
#[test]
fn test_calc_mol_formula_water() {
let m = mol("O");
assert_eq!(calc_mol_formula(&m), "H2O");
}
#[test]
fn test_calc_mol_formula_benzene() {
let m = mol("c1ccccc1");
assert_eq!(calc_mol_formula(&m), "C6H6");
}
#[test]
fn test_calc_mol_formula_acetic_acid() {
let m = mol("CC(=O)O");
assert_eq!(calc_mol_formula(&m), "C2H4O2");
}
#[test]
fn test_num_amide_bonds_acetamide() {
let m = mol("CC(=O)N");
assert_eq!(num_amide_bonds(&m), 1);
}
#[test]
fn test_num_amide_bonds_urea() {
let m = mol("NC(=O)N");
assert_eq!(num_amide_bonds(&m), 1);
}
#[test]
fn test_num_amide_bonds_primary_amide() {
let m = mol("CC(=O)N");
assert_eq!(num_amide_bonds(&m), 1);
}
#[test]
fn test_num_amide_bonds_none() {
let m = mol("c1ccccc1");
assert_eq!(num_amide_bonds(&m), 0);
}
#[test]
fn test_num_ester_bonds_methyl_formate() {
let m = mol("COC=O");
assert_eq!(num_ester_bonds(&m), 1);
}
#[test]
fn test_num_ester_bonds_acetic_acid_methyl_ester() {
let m = mol("CC(=O)OC");
assert_eq!(num_ester_bonds(&m), 1);
}
#[test]
fn test_num_ester_bonds_none() {
let m = mol("CC(=O)O");
assert_eq!(num_ester_bonds(&m), 0);
}
#[test]
fn test_num_ester_bonds_aspirin() {
let m = mol("CC(=O)Oc1ccccc1C(=O)O");
assert_eq!(
num_ester_bonds(&m),
1,
"aspirin has one ester bond (aryl ester)"
);
}
#[test]
fn test_logp_ethylene_terminal() {
let m = mol("C=C");
let lp = logp_crippen(&m);
assert!(lp > 0.3 && lp < 1.3, "ethylene logp = {lp}");
}
#[test]
fn test_logp_propene_terminal_internal() {
let m = mol("CC=C");
let lp = logp_crippen(&m);
let eth = logp_crippen(&mol("C=C"));
assert!(lp > eth, "propene logp ({lp}) should exceed ethylene ({eth})");
assert!(lp > 0.5 && lp < 2.0, "propene logp = {lp} out of expected range");
}
#[test]
fn test_logp_styrene_splits_correctly() {
let m = mol("C=Cc1ccccc1");
let lp = logp_crippen(&m);
assert!(lp > 1.8 && lp < 3.4, "styrene logp = {lp}");
let per_atom = logp_crippen_per_atom(&m);
assert!(per_atom.len() >= 8, "styrene has 8 heavy atoms");
}
#[test]
fn test_logp_1_phenylpropene_ar_adjacent() {
let m = mol("CC=Cc1ccccc1");
let lp = logp_crippen(&m);
assert!(lp > 2.0 && lp < 4.0, "1-phenylpropene logp = {lp}");
}
#[test]
fn test_logp_curcumin_reference() {
let m = mol("COc1cc(/C=C/C(=O)CC(=O)/C=C/c2ccc(O)c(OC)c2)ccc1O");
let lp = logp_crippen(&m);
assert!(lp > -5.0 && lp < 5.0, "curcumin crippen logp = {lp}");
}
#[test]
fn test_logp_complex_molecules_xlogp3_preferred() {
let m = mol("COc1cc(/C=C/C(=O)CC(=O)/C=C/c2ccc(O)c(OC)c2)ccc1O");
let crippen = logp_crippen(&m);
let xl3 = crate::xlogp3::xlogp3(&m);
assert!(crippen.is_finite(), "crippen logp must be finite");
assert!(xl3.is_finite(), "xlogp3 must be finite");
}
#[test]
fn test_logp_mvk_enone_vinyl() {
let m = mol("C=CC(=O)C");
let lp = logp_crippen(&m);
assert!(lp > 0.0 && lp < 1.5, "MVK logp = {lp}");
}
#[test]
fn test_logp_chalcone_enone() {
let m = mol("c1ccccc1/C=C/C(=O)c1ccccc1");
let lp = logp_crippen(&m);
assert!(lp > 1.8 && lp < 4.5, "chalcone logp = {lp}");
}
#[test]
fn test_logp_crotonate_internal_enone() {
let m = mol("CC=CC(=O)O");
let lp = logp_crippen(&m);
assert!(lp > -0.5 && lp < 1.5, "crotonate logp = {lp}");
}
#[test]
fn test_logp_enone_vs_plain_alkene() {
let enone = logp_crippen(&mol("C=CC(=O)C")); let alkene = logp_crippen(&mol("C=CCC")); assert!(
enone < alkene,
"MVK ({enone:.4}) should be < 1-butene ({alkene:.4}): enone is less hydrophobic"
);
}
}