Update app.py
Browse files
app.py
CHANGED
@@ -182,15 +182,13 @@ def pdb_structure(Structure_index):
|
|
182 |
created_folders = []
|
183 |
SurfacePoitCloud_all = []
|
184 |
for index in Structure_index:
|
185 |
-
structure_folder = join(temp_path, str(index))
|
186 |
created_folders.append(structure_folder)
|
187 |
pdb_file = join(pdb_path, f"{index}.pdb")
|
188 |
-
print(pdb_file)
|
189 |
if os.path.exists(pdb_file):
|
190 |
shutil.copy2(pdb_file, structure_folder)
|
191 |
else:
|
192 |
print(f"PDB file not found for structure {index}")
|
193 |
-
print(structure_folder)
|
194 |
coords, atname, pdbname, pdb_num = utils.parsePDB(structure_folder)
|
195 |
atoms_channel = utils.atomlistToChannels(atname)
|
196 |
radius = utils.atomlistToRadius(atname)
|
|
|
182 |
created_folders = []
|
183 |
SurfacePoitCloud_all = []
|
184 |
for index in Structure_index:
|
185 |
+
structure_folder = join(temp_path, str(index)+".pdb")
|
186 |
created_folders.append(structure_folder)
|
187 |
pdb_file = join(pdb_path, f"{index}.pdb")
|
|
|
188 |
if os.path.exists(pdb_file):
|
189 |
shutil.copy2(pdb_file, structure_folder)
|
190 |
else:
|
191 |
print(f"PDB file not found for structure {index}")
|
|
|
192 |
coords, atname, pdbname, pdb_num = utils.parsePDB(structure_folder)
|
193 |
atoms_channel = utils.atomlistToChannels(atname)
|
194 |
radius = utils.atomlistToRadius(atname)
|