Spaces:
Sleeping
Sleeping
Commit
·
debd6c0
1
Parent(s):
e9ad0d4
Update code/pdb_featureVector.py
Browse files
code/pdb_featureVector.py
CHANGED
|
@@ -234,6 +234,9 @@ def pdb(input_set, mode, impute):
|
|
| 234 |
st.write('path for pdb: ',path_pdb)
|
| 235 |
file = pdbl.retrieve_pdb_file(search, pdir=path_pdb, file_format="pdb")
|
| 236 |
st.write('file: ',file)
|
|
|
|
|
|
|
|
|
|
| 237 |
existing_pdb = list(path_pdb.glob("*"))
|
| 238 |
st.write('after download:', existing_pdb)
|
| 239 |
else:
|
|
|
|
| 234 |
st.write('path for pdb: ',path_pdb)
|
| 235 |
file = pdbl.retrieve_pdb_file(search, pdir=path_pdb, file_format="pdb")
|
| 236 |
st.write('file: ',file)
|
| 237 |
+
existing_pdb = list(Path(path_to_output_files/'pdb_structures').glob("*"))
|
| 238 |
+
st.write('after download:', existing_pdb)
|
| 239 |
+
st.write(Path(path_to_output_files/'pdb_structures') == path_pdb)
|
| 240 |
existing_pdb = list(path_pdb.glob("*"))
|
| 241 |
st.write('after download:', existing_pdb)
|
| 242 |
else:
|