86698c801848975de9a21fb17093e045b6271ea3,rdkit_fixer.py,,PreparePDBMol,#,94

Before Change


    // check if we have all templates
    for resname in unique_resname:
        if resname not in residue_mols and resname not in ["HOH"]:
            raise ValueError("There is no template for residue "%s"" % resname)

    // reset B.O. using templates
    for resname in residue_mols.keys():
        template = residue_mols[resname]

After Change


    
    new_mol = Chem.RWMol(mol)
    removal_queue = []
    resnames = []
    for aix, atom in enumerate(new_mol.GetAtoms()):
        atomicnum = atom.GetAtomicNum()
        info = atom.GetPDBResidueInfo()
        resname = info.GetResidueName().strip().upper()
        resnames.append(resname)
        // Remove Hs by hard, Chem.RemoveHs does not remove double bonded Hs
        if removeHs and atomicnum == 1:
            removal_queue.append(aix)
        // Remove waters
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: oddt/oddt
Commit Name: 86698c801848975de9a21fb17093e045b6271ea3
Time: 2018-05-17
Author: maciek@wojcikowski.pl
File Name: rdkit_fixer.py
Class Name:
Method Name: PreparePDBMol


Project Name: jonas-koehler/s2cnn
Commit Name: d750d66fb998a44316000908f213ae73c53de97f
Time: 2018-03-03
Author: geiger.mario@gmail.com
File Name: examples/shrec17/dataset.py
Class Name: CacheNPY
Method Name: __call__


Project Name: daavoo/pyntcloud
Commit Name: 81fdc82531a05b5ae7d7e124010b3198b77dbb28
Time: 2018-07-09
Author: daviddelaiglesiacastro@gmail.com
File Name: pyntcloud/core_class.py
Class Name: PyntCloud
Method Name: plot