forked from deepchem/deepchem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
96 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import nglview | ||
import tempfile | ||
import os | ||
import mdtraj as md | ||
import numpy as np | ||
import tempfile | ||
from rdkit import Chem | ||
from rdkit.Chem import Draw | ||
from itertools import islice | ||
from IPython.display import Image, HTML, display | ||
|
||
def combine_mdtraj(protein, ligand): | ||
chain = protein.topology.add_chain() | ||
residue = protein.topology.add_residue("LIG", chain, resSeq=1) | ||
for atom in ligand.topology.atoms: | ||
protein.topology.add_atom(atom.name, atom.element, residue) | ||
protein.xyz = np.hstack([protein.xyz, ligand.xyz]) | ||
protein.topology.create_standard_bonds() | ||
return protein | ||
|
||
def visualize_complex(complex_mdtraj): | ||
ligand_atoms = [a.index for a in complex_mdtraj.topology.atoms if "LIG" in str(a.residue)] | ||
binding_pocket_atoms = md.compute_neighbors(complex_mdtraj, 0.5, ligand_atoms)[0] | ||
binding_pocket_residues = list(set([complex_mdtraj.topology.atom(a).residue.resSeq for a in binding_pocket_atoms])) | ||
binding_pocket_residues = [str(r) for r in binding_pocket_residues] | ||
binding_pocket_residues = " or ".join(binding_pocket_residues) | ||
|
||
traj = nglview.MDTrajTrajectory( complex_mdtraj ) # load file from RCSB PDB | ||
ngltraj = nglview.NGLWidget( traj ) | ||
ngltraj.representations = [ | ||
{ "type": "cartoon", "params": { | ||
"sele": "protein", "color": "residueindex" | ||
} }, | ||
{ "type": "licorice", "params": { | ||
"sele": "(not hydrogen) and (%s)" % binding_pocket_residues | ||
} }, | ||
{ "type": "ball+stick", "params": { | ||
"sele": "LIG" | ||
} } | ||
] | ||
return ngltraj | ||
|
||
def visualize_ligand(ligand_mdtraj): | ||
traj = nglview.MDTrajTrajectory( ligand_mdtraj ) # load file from RCSB PDB | ||
ngltraj = nglview.NGLWidget( traj ) | ||
ngltraj.representations = [ | ||
{ "type": "ball+stick", "params": {"sele": "all" } } ] | ||
return ngltraj | ||
|
||
def convert_lines_to_mdtraj(molecule_lines): | ||
tempdir = tempfile.mkdtemp() | ||
molecule_file = os.path.join(tempdir, "molecule.pdb") | ||
with open(molecule_file, "wb") as f: | ||
f.writelines(molecule_lines) | ||
molecule_mdtraj = md.load(molecule_file) | ||
return molecule_mdtraj | ||
|
||
def display_images(filenames): | ||
"""Helper to pretty-print images.""" | ||
imagesList=''.join( | ||
["<img style='width: 140px; margin: 0px; float: left; border: 1px solid black;' src='%s' />" | ||
% str(s) for s in sorted(filenames)]) | ||
display(HTML(imagesList)) | ||
|
||
def mols_to_pngs(mols, basename="test"): | ||
"""Helper to write RDKit mols to png files.""" | ||
filenames = [] | ||
for i, mol in enumerate(mols): | ||
filename = "%s%d.png" % (basename, i) | ||
Draw.MolToFile(mol, filename) | ||
filenames.append(filename) | ||
return filenames |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +0,0 @@ | ||
# TODO(rbharath): Commenting out this file for now. Will be moved to a new repository. | ||
#import nglview | ||
#import tempfile | ||
#import os | ||
#import mdtraj as md | ||
#import numpy as np | ||
#import tempfile | ||
#from rdkit import Chem | ||
#from rdkit.Chem import Draw | ||
#from itertools import islice | ||
#from IPython.display import Image, HTML, display | ||
# | ||
#def combine_mdtraj(protein, ligand): | ||
# chain = protein.topology.add_chain() | ||
# residue = protein.topology.add_residue("LIG", chain, resSeq=1) | ||
# for atom in ligand.topology.atoms: | ||
# protein.topology.add_atom(atom.name, atom.element, residue) | ||
# protein.xyz = np.hstack([protein.xyz, ligand.xyz]) | ||
# protein.topology.create_standard_bonds() | ||
# return protein | ||
# | ||
#def visualize_complex(complex_mdtraj): | ||
# ligand_atoms = [a.index for a in complex_mdtraj.topology.atoms if "LIG" in str(a.residue)] | ||
# binding_pocket_atoms = md.compute_neighbors(complex_mdtraj, 0.5, ligand_atoms)[0] | ||
# binding_pocket_residues = list(set([complex_mdtraj.topology.atom(a).residue.resSeq for a in binding_pocket_atoms])) | ||
# binding_pocket_residues = [str(r) for r in binding_pocket_residues] | ||
# binding_pocket_residues = " or ".join(binding_pocket_residues) | ||
# | ||
# traj = nglview.MDTrajTrajectory( complex_mdtraj ) # load file from RCSB PDB | ||
# ngltraj = nglview.NGLWidget( traj ) | ||
# ngltraj.representations = [ | ||
# { "type": "cartoon", "params": { | ||
# "sele": "protein", "color": "residueindex" | ||
# } }, | ||
# { "type": "licorice", "params": { | ||
# "sele": "(not hydrogen) and (%s)" % binding_pocket_residues | ||
# } }, | ||
# { "type": "ball+stick", "params": { | ||
# "sele": "LIG" | ||
# } } | ||
# ] | ||
# return ngltraj | ||
# | ||
#def visualize_ligand(ligand_mdtraj): | ||
# traj = nglview.MDTrajTrajectory( ligand_mdtraj ) # load file from RCSB PDB | ||
# ngltraj = nglview.NGLWidget( traj ) | ||
# ngltraj.representations = [ | ||
# { "type": "ball+stick", "params": {"sele": "all" } } ] | ||
# return ngltraj | ||
# | ||
#def convert_lines_to_mdtraj(molecule_lines): | ||
# tempdir = tempfile.mkdtemp() | ||
# molecule_file = os.path.join(tempdir, "molecule.pdb") | ||
# with open(molecule_file, "wb") as f: | ||
# f.writelines(molecule_lines) | ||
# molecule_mdtraj = md.load(molecule_file) | ||
# return molecule_mdtraj | ||
# | ||
#def display_images(filenames): | ||
# """Helper to pretty-print images.""" | ||
# imagesList=''.join( | ||
# ["<img style='width: 140px; margin: 0px; float: left; border: 1px solid black;' src='%s' />" | ||
# % str(s) for s in sorted(filenames)]) | ||
# display(HTML(imagesList)) | ||
# | ||
#def mols_to_pngs(mols, basename="test"): | ||
# """Helper to write RDKit mols to png files.""" | ||
# filenames = [] | ||
# for i, mol in enumerate(mols): | ||
# filename = "%s%d.png" % (basename, i) | ||
# Draw.MolToFile(mol, filename) | ||
# filenames.append(filename) | ||
# return filenames | ||