Spaces:
Running
Running
Commit
·
beb9e9d
1
Parent(s):
0052cfb
Update code/pdb_featureVector.py
Browse files
code/pdb_featureVector.py
CHANGED
@@ -1333,6 +1333,7 @@ def pdb(input_set, mode, impute):
|
|
1333 |
pdb_only = data[data.source == 'PDB']
|
1334 |
for pdbID in pdb_only.pdbID.to_list():
|
1335 |
if pdbID not in existing_free_sasa:
|
|
|
1336 |
(run_freesasa(Path(path_to_output_files / 'pdb_structures' / f'{pdbID.lower()}.pdb'),
|
1337 |
Path(path_to_output_files / 'freesasa_files' / f'{pdbID.lower()}.txt'),
|
1338 |
include_hetatms=True,
|
@@ -1364,7 +1365,7 @@ def pdb(input_set, mode, impute):
|
|
1364 |
annotation_list += ['domainStartonPDB', 'domainEndonPDB']
|
1365 |
|
1366 |
folder_path = path_to_output_files / 'freesasa_files'
|
1367 |
-
|
1368 |
aligner = Align.PairwiseAligner()
|
1369 |
print('Proceeding to 3D distance calculation...\n')
|
1370 |
data.domainEndonPDB = data.domainEndonPDB.astype(str)
|
|
|
1333 |
pdb_only = data[data.source == 'PDB']
|
1334 |
for pdbID in pdb_only.pdbID.to_list():
|
1335 |
if pdbID not in existing_free_sasa:
|
1336 |
+
st.write('I am here')
|
1337 |
(run_freesasa(Path(path_to_output_files / 'pdb_structures' / f'{pdbID.lower()}.pdb'),
|
1338 |
Path(path_to_output_files / 'freesasa_files' / f'{pdbID.lower()}.txt'),
|
1339 |
include_hetatms=True,
|
|
|
1365 |
annotation_list += ['domainStartonPDB', 'domainEndonPDB']
|
1366 |
|
1367 |
folder_path = path_to_output_files / 'freesasa_files'
|
1368 |
+
st.write('folder_path', folder_path)
|
1369 |
aligner = Align.PairwiseAligner()
|
1370 |
print('Proceeding to 3D distance calculation...\n')
|
1371 |
data.domainEndonPDB = data.domainEndonPDB.astype(str)
|