Thanks for sharing!
I can't find the codes for the conformer screening, which is the descried in the arXiv:
We generate mutliple conformers for each molecule with RDKit [Landrum et al., 2006] and prune similar conformers with an RMSD cutoff R = 0.5Å.
neither from here
|
smiles = Chem.MolToSmiles(mol) |
|
coords = mol.GetConformer().GetPositions() |
|
z = [atom.GetAtomicNum() for atom in mol.GetAtoms()] |
nor here:
|
smiles = Chem.MolToSmiles(mol) |
|
coords = mol.GetConformer().GetPositions() |
|
z = [atom.GetAtomicNum() for atom in mol.GetAtoms()] |
would you mind elaborating a bit more?
Thanks for sharing!
I can't find the codes for the conformer screening, which is the descried in the arXiv:
neither from here
MoleculeX/Molecule3D/preprocess/PubChemQCDataset.py
Lines 195 to 197 in 29951d7
nor here:
MoleculeX/molx/dataset/molecule3d.py
Lines 135 to 137 in 29951d7
would you mind elaborating a bit more?