aboutsummaryrefslogtreecommitdiff
path: root/app/dock-single.py
blob: 90031a1b23f38f00050af6094cd4844dbf7c87aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import argparse
import logging
import multiprocessing
import os
import sys
from argparse import ArgumentParser
from collections import namedtuple

import mysql.connector as con

import configparser
iniConfig = configparser.ConfigParser()
iniConfig.read('config.ini')

try:
    iniConfig['DATABASE']
except KeyError:
    iniConfig.read("../config.ini")

mycon = con.connect(host=iniConfig['DATABASE']['HOST'],user=iniConfig['DATABASE']['USER'],password=iniConfig['DATABASE']['PASSWORD'],port=iniConfig['DATABASE']['PORT'],database=iniConfig['DATABASE']['NAME'])
mycursor = mycon.cursor()

sql_select_Query = "SELECT id,email,pdb,ligand_smile,ligand_name,description,date FROM curieweb WHERE pdb IS NOT NULL AND done=0 LIMIT 1"
mycursor.execute(sql_select_Query)

records = mycursor.fetchall()
if records == []:
    print("Empty Set 😳")
    print("No active task, exitting gracefully")
    exit(0)

records = records[0]



print("Importing PLIP..",end="")

from plip.basic import config, logger

from plip.basic.config import __version__
from plip.basic.parallel import parallel_fn
from plip.basic.remote import VisualizerData
from plip.exchange.webservices import fetch_pdb
from plip.structure.preparation import create_folder_if_not_exists, extract_pdbid
from plip.structure.preparation import tilde_expansion, PDBComplex

print(".Done")

def download_structure(inputpdbid):
    """Given a PDB ID, downloads the corresponding PDB structure.
    Checks for validity of ID and handles error while downloading.
    Returns the path of the downloaded file."""
    try:
        if len(inputpdbid) != 4 or extract_pdbid(inputpdbid.lower()) == 'UnknownProtein':
            logger.error(f'invalid PDB-ID (wrong format): {inputpdbid}')
            sys.exit(1)
        pdbfile, pdbid = fetch_pdb(inputpdbid.lower())
        pdbpath = tilde_expansion('%s/%s.pdb' % (config.BASEPATH.rstrip('/'), pdbid))
        create_folder_if_not_exists(config.BASEPATH)
        with open(pdbpath, 'w') as g:
            g.write(pdbfile)
        return pdbpath, pdbid
    except ValueError:  # Invalid PDB ID, cannot fetch from RCBS server
        logger.error(f'PDB-ID does not exist: {inputpdbid}')
        sys.exit(1)

def bounding_box(receptor, residues):
    try:
        import pymol2
    except ImportError:
        raise ImportError("Failed to import PyMOL")
    
    session = pymol2.PyMOL()
    session.start()

    cmd = session.cmd
    cmd.load(pdbpath,"target")
    cmd.select("box",(selectionResidues))

    extent = 5

    ([minX, minY, minZ],[maxX, maxY, maxZ]) = cmd.get_extent("box")

    minX = minX - float(extent)
    minY = minY - float(extent)
    minZ = minZ - float(extent)
    maxX = maxX + float(extent)
    maxY = maxY + float(extent)
    maxZ = maxZ + float(extent)

    SizeX = maxX - minX
    SizeY = maxY - minY
    SizeZ = maxZ - minZ
    CenterX =  (maxX + minX)/2
    CenterY =  (maxY + minY)/2
    CenterZ =  (maxZ + minZ)/2

    session.stop()
    
    return {"size_x": SizeX, "size_y": SizeY, "size_z": SizeZ, "center_x": CenterX, "center_y": CenterY, "center_z": CenterZ}

def get3DModel(protein,ligand):
	import pymol2
	session = pymol2.PyMOL()
	session.start()
	cmd = session.cmd
	cmd.load(protein,"target")
	cmd.load(ligand,"ligand")
	cmd.save("model.dae")
	session.stop()

def removeWater(pdbpath):
	import pymol2
	session = pymol2.PyMOL()
	session.start()
	cmd = session.cmd
	cmd.load(pdbpath,"target")
	cmd.remove('resn HOH')
	cmd.save(pdbpath,"target")
	session.stop()

def getResidues(pdbpath):
	mol = PDBComplex()
	mol.load_pdb(pdbpath)
	for ligand in mol.ligands:
		mol.characterize_complex(ligand)
	
	residues = []
	
	for x in range(len(mol.interaction_sets)):
		if len(mol.interaction_sets[list(mol.interaction_sets.keys())[x]].interacting_res) != 0:
			residues.append(mol.interaction_sets[list(mol.interaction_sets.keys())[x]].interacting_res)

	print(residues)
	return residues

def get_select_command(residues,allResidues=False):
	residues.sort(key=len,reverse=True)
	selectionResidues = ""
	allRes = []
	if len(residues) == 0:
		#print("what the frick, no interacting ligands???")
		print("We could not find any binding sites within the structure.")
	else:
		for x in residues:
			selectionResidues = ""
			for y in x:
				selectionResidues += 'resi ' + y.replace("A","") + ' + '
			allRes.append(selectionResidues.strip()[:-1].strip())

	if allResidues == False:
		return allRes[0]
	return allRes

def convert_pdb_pdbqt(pdbpath):
	import oddt
	from oddt.docking.AutodockVina import write_vina_pdbqt
	print(pdbpath)
	try:
		receptor = next(oddt.toolkit.readfile("pdb",pdbpath.split("./")[1]))
		"""
		# remove zero order bonds from metals
		for atom in receptor: 
			if atom.atomicnum == 30:  # Atomic num of treated metals
				for bond in atom.bonds:
					print("del")
					receptor.OBMol.DeleteBond(bond.OBBond)
		"""
		receptor.calccharges()
	except Exception:
		print("Molecule failed to charge, falling back to RDKit") 
		receptor = next(oddt.toolkits.rdk.readfile("pdb",pdbpath.split("./")[1]))
		receptor.calccharges()

	path = write_vina_pdbqt(receptor,'./',flexible=False)
	return path


def email(zipArchive):
    import smtplib 
    from email.mime.multipart import MIMEMultipart 
    from email.mime.text import MIMEText 
    from email.mime.base import MIMEBase 
    from email import encoders 
    
    fromaddr = iniConfig['SMTP']['EMAIL']
    
    msg = MIMEMultipart()  
    msg['From'] = fromaddr 
    msg['To'] = toaddr   
    msg['Subject'] = "Curie Web Results for Job ID " + str(jobID)
    body = "Attached Zip contains the docked files, PLIP report and PyMOL Visualisations. If the ZIP file does not contain these files, please report this issue by replying to this email. Job was submitted on {} with the description {}".format(date, description)
    
    msg.attach(MIMEText(body, 'plain')) 
    filename = "Curie_Web_Results_Job_ID_" + str(jobID) + ".zip"
    p = MIMEBase('application', 'octet-stream') 
    with open((str(zipArchive) + ".zip"), "rb") as attachment:
        p.set_payload((attachment).read()) 
    encoders.encode_base64(p) 
    p.add_header('Content-Disposition', "attachment; filename= %s" % filename) 
    msg.attach(p) 
    
    s = smtplib.SMTP(iniConfig['SMTP']['SERVER'], iniConfig['SMTP']['PORT']) 
    s.starttls() 
    s.login(fromaddr, iniConfig['SMTP']['PASSWORD']) 
    text = msg.as_string() 
    
    s.sendmail(fromaddr, toaddr, text) 
    s.quit() 


def CopyContentOfFolder(sauce,destination):
	src_files = os.listdir(sauce)
	for file_name in src_files:
		full_file_name = os.path.join(sauce, file_name)
		if os.path.isfile(full_file_name):
			copy(full_file_name, destination)

def RemoveAllFilesMatching(directory,pattern):
	print(directory+"/*"+pattern)
	FileList = glob.glob(directory+"/*"+pattern)
	for FilePath in FileList:
		try:
			os.remove(FilePath)
		except:
			print("Error in removing misc file")

inPDB = records[2]
jobID = records[0]
toaddr = records[1]
description = records[5]
date = records[6]

#pdb_file_name = pdbpath.split('/')[-1]
#pdbpath="./6lu7.pdb"

import os,glob
cd = os.getcwd()
f = os.path.join(cd,"static/uploads")
scripts = os.path.join(cd,"scripts")
reportDirectory = os.path.join(f,"reports")
modelDirectory = os.path.join(f,"3DModels")
#t = os.path.join(f,"receptor",target)
#r = os.path.join(f,"ligands",ligand)
#c = os.path.join(f,"configs",config)
import tempfile
from shutil import make_archive, copyfile,copy
import time

with tempfile.TemporaryDirectory() as directory:
	print('The created temporary directory is %s' % directory)
	os.chdir(directory)
	pdbpath, pdbid = download_structure(inPDB)
	residues = getResidues(pdbpath)
	selectionResidues = get_select_command(residues,allResidues=False)
	#print(selectionResidues)
	removeWater(pdbpath)
	config = bounding_box(pdbpath,selectionResidues)
	print("Configuration:",config)
	pdbqt = convert_pdb_pdbqt(pdbpath)
	configuration = "size_x={}\nsize_y={}\nsize_z={}\ncenter_x={}\ncenter_y={}\ncenter_z={}".format(config["size_x"],config["size_y"],config["size_z"],config["center_x"],config["center_y"],config["center_z"])
	with open("config.txt","w") as file:
		file.write(configuration)
	os.system('obabel -:"%s" --gen3d -opdbqt -O%s.pdbqt' % (records[3],records[4]))
	print("Ligand:",records[4])
	print(str(records[4]+".pdbqt"))
	CopyContentOfFolder(scripts,directory)
	os.system("./main.sh -r %s -l %s -c config.txt -dpi" % (pdbqt,str(records[4]+".pdbqt")))
	#os.system("docker run --rm -v ${PWD}:/results -w /results -u $(id -u ${USER}):$(id -g ${USER}) navanchauhan/curie-cli -r %s -l %s -c config.txt -dpi" % (pdbqt,str(records[4]+".pdbqt")))
	RemoveAllFilesMatching(directory,".py")
	RemoveAllFilesMatching(directory,".sh")
	z = "Curie_Web_Result_"+str(jobID)
	zi = os.path.join(f,z)
	make_archive(zi, 'zip', directory)
	copyfile("report.pdf",os.path.join(reportDirectory,(str(jobID)+".pdf")))
	get3DModel(pdbpath,"%s_out.pdbqt"%(records[4]))
	os.system("collada2gltf -i model.dae -o model.gltf")
	copyfile("model.gltf",os.path.join(modelDirectory,(str(jobID)+".gltf")))
	arch = os.popen("uname -m").read()
	print("Generating 3D Model")
	if "x86" in arch:
		os.system("docker run -it --rm -v $(pwd):/usr/app leon/usd-from-gltf:latest model.gltf model.usdz")
	elif "aarch64" in arch:
		os.system("docker run -it --rm -v $(pwd):/usr/app navanchauhan/usd-from-gltf:latest model.gltf model.usdz")
	try:
		copyfile("model.usdz",os.path.join(modelDirectory,(str(jobID)+".usdz")))
	except:
		print("Could not generate USDZ file")
	email(zi)
	mycursor.execute('UPDATE curieweb set done=1 where id="%s"' % (jobID))
	mycon.commit()