-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrud.py
177 lines (155 loc) · 6.83 KB
/
crud.py
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
from pymongo import MongoClient
from Bio.PDB.PDBParser import PDBParser
import pickle
class crud:
def __init__(self):
# Create connection
MONGODB_URL = "mongodb+srv://Al-Hassan:[email protected]/?retryWrites=true&w=majority"
client = MongoClient(MONGODB_URL)
db = client.Diseasome
# Collections
self.Protein_collection = db.Protein
self.Ligand_collection = db.Ligand
self.Dock_collection = db.Dock
self.Disease_collection = db.Disease
self.BioActivity_collection = db.BioActivity
# ======================================================================================================================= Bio Activity
def BioActivity_insert(self, id, ic50, ki, gi50, ec50, kd, ligand_fk):
bioActivity_to_insert = {
"id": id,
"IC50": ic50,
"Ki": ki,
"GI50": gi50,
"EC50": ec50,
"Kd": kd,
"Ligand_fk": ligand_fk,
}
try:
insert_res = self.BioActivity_collection.insert_one(bioActivity_to_insert)
if insert_res:
return "Added Successfully"
except:
return -1
# ======================================================================================================================= Disease
def Disease_search(self, id, name):
disease_to_find = {
"id": id,
"Name": name
}
search_res = self.Disease_collection.find_one(disease_to_find)
if search_res:
disease_id = search_res["id"]
disease_name = search_res["Name"]
PDB_fk = search_res["PDB_fk"]
protein_seq = search_res["ProteinSeq"]
disease_type = search_res["Type"]
geneSeq = search_res["GeneSeq"]
gene_locus = search_res["Gene Locus"]
return disease_id, disease_name, PDB_fk, protein_seq, disease_type, geneSeq, gene_locus
else:
return None
def Disease_insert(self, id, name, pdb_fk, protein_seq, d_type, gene_seq, gene_locus):
pdb_fk = pdb_fk.split(",")
disease_to_insert = {
"id": id,
"Name": name,
"PDB_fk": pdb_fk,
"ProteinSeq": protein_seq,
"Type": d_type,
"GeneSeq": gene_seq,
"Gene Locus": gene_locus,
}
try:
insert_res = self.Disease_collection.insert_one(disease_to_insert)
if insert_res:
return "Added Successfully"
except:
return -1
# ======================================================================================================================= Dock
def Dock_insert(self, id, num_of_intermolecular_contacts, num_of_charged_charged_contacts,
num_of_charged_polar_contacts, num_of_charged_apolar_contacts, num_of_polar_polar_contacts,
num_of_aploar_polar_contacts, num_of_apolar_apolar_contacts, binding_affinity, dissociation_constant,
charged_nis_residues_percentage, aploar_nis_residues_percentage, ligand_id, pdb_id):
dock_to_insert = {
"id": id,
"Intermolecular Contacts": num_of_intermolecular_contacts,
"Charged-Charged_Contacts": num_of_charged_charged_contacts,
"Charged-Polar-Contacts": num_of_charged_polar_contacts,
"Charged-Apolar-Contacts": num_of_charged_apolar_contacts,
"Polar-Polar-Contacts": num_of_polar_polar_contacts,
"Apolar-Polar-Contacts": num_of_aploar_polar_contacts,
"Apolar-Apolar-Contacts": num_of_apolar_apolar_contacts,
"Dissociation Constant": dissociation_constant,
"Binding Affinity": binding_affinity,
"Charged NIS Residues Percentage": charged_nis_residues_percentage,
"Apolar NIS Residues Percentage": aploar_nis_residues_percentage,
"Ligand_id": ligand_id,
"PDB_id": pdb_id,
}
try:
insert_res = self.Dock_collection.insert_one(dock_to_insert)
if insert_res:
return "Added Successfully"
except:
return -1
# ======================================================================================================================= Ligand
def Ligand_insert(self, id, Name, Solubility, LogP, MolecularWeight, IUPAC, Structure, DrugScore, DrugLike,
SmileFormat, MolecularFormula):
pdb_parser = PDBParser()
strcuture = pdb_parser.get_structure(id, Structure)
pickled_structure = pickle.dumps(strcuture)
ligand_to_insert = {
"id": id,
"Name": Name,
"Solubility": Solubility,
"LogP": LogP,
"MolecularWeight": MolecularWeight,
"IUPAC": IUPAC,
"Strcuture": pickled_structure,
"DrugScore": DrugScore,
"DrugLike": DrugLike,
"SmileFormat": SmileFormat,
"MolecularFormula": MolecularFormula,
}
try:
insert_res = self.Ligand_collection.insert_one(ligand_to_insert)
if insert_res:
return "Added Successfully"
except:
return -1
# ======================================================================================================================= Protein
def Protein_search(self, id, name):
protein_to_find = {
"id": id,
"Name": name
}
search_res = self.Protein_collection.find_one(protein_to_find)
if search_res:
protein_id = search_res["id"]
protein_name = search_res["Name"]
pickled_structure = search_res["Structure"]
fasta_format = search_res["FastaFormat"]
structure = pickle.loads(pickled_structure)
return protein_id, protein_name, structure, fasta_format
else:
return None
def Protein_insert(self, id, Name, Structure, FastaFormat, PDB_id):
pdb_parser = PDBParser()
structure = pdb_parser.get_structure(id, Structure)
pickled_structure = pickle.dumps(structure)
protein_to_insert = {
"id": id,
"Name": Name,
"Structure": pickled_structure,
"FastaFormat": FastaFormat,
"PDB_id": PDB_id,
}
try:
insert_res = self.Protein_collection.insert_one(protein_to_insert)
if insert_res:
return "Added Successfully"
except:
return -1
# obj = crud()
# disease_id, disease_name, PDB_fk, protein_seq, disease_type, geneSeq, gene_locus = obj.Disease_search(602452, 'Colorectal cancer with chromosomal instability, somatic')
# print(disease_id, disease_name, PDB_fk, protein_seq, disease_type, geneSeq, gene_locus)