Spaces:
Sleeping
Sleeping
Commit
·
02b64ad
1
Parent(s):
918b7fb
Update code/alphafold_featureVector.py
Browse files
code/alphafold_featureVector.py
CHANGED
@@ -364,8 +364,6 @@ def alphafold(input_set, mode, impute):
|
|
364 |
except:
|
365 |
KeyError
|
366 |
info_per_model[mod][annot] = annotation_pos_on_pdb_
|
367 |
-
#pdb_path = Path(f'{alphafold_path}/AF-{uniprotID}-F{mod}-{file_str}.pdb.gz')
|
368 |
-
|
369 |
|
370 |
st.write('-----')
|
371 |
st.write('')
|
@@ -378,6 +376,7 @@ def alphafold(input_set, mode, impute):
|
|
378 |
with gzip.open(pdb_path, mode="rt") as f:
|
379 |
file_content = f.read()
|
380 |
st.write(file_content)
|
|
|
381 |
st.write('REH')
|
382 |
st.write('-----')
|
383 |
st.write('')
|
@@ -389,13 +388,14 @@ def alphafold(input_set, mode, impute):
|
|
389 |
with gzip.open(pdb_path, mode="rt") as f:
|
390 |
file_content = f.read()
|
391 |
st.write(file_content)
|
|
|
392 |
|
393 |
st.write('HERE2')
|
394 |
st.write('uniprotID',uniprotID)
|
395 |
st.write('model_num', mod)
|
396 |
st.write('pdb_path', pdb_path)
|
397 |
st.write('pdbSequence', pdbSequence)
|
398 |
-
st.write('mode',mode
|
399 |
st.write(Path(path_to_output_files / '3D_alignment'))
|
400 |
|
401 |
|
|
|
364 |
except:
|
365 |
KeyError
|
366 |
info_per_model[mod][annot] = annotation_pos_on_pdb_
|
|
|
|
|
367 |
|
368 |
st.write('-----')
|
369 |
st.write('')
|
|
|
376 |
with gzip.open(pdb_path, mode="rt") as f:
|
377 |
file_content = f.read()
|
378 |
st.write(file_content)
|
379 |
+
break
|
380 |
st.write('REH')
|
381 |
st.write('-----')
|
382 |
st.write('')
|
|
|
388 |
with gzip.open(pdb_path, mode="rt") as f:
|
389 |
file_content = f.read()
|
390 |
st.write(file_content)
|
391 |
+
break
|
392 |
|
393 |
st.write('HERE2')
|
394 |
st.write('uniprotID',uniprotID)
|
395 |
st.write('model_num', mod)
|
396 |
st.write('pdb_path', pdb_path)
|
397 |
st.write('pdbSequence', pdbSequence)
|
398 |
+
st.write('mode',mode)
|
399 |
st.write(Path(path_to_output_files / '3D_alignment'))
|
400 |
|
401 |
|