Spaces:
Sleeping
Sleeping
Commit
·
fef032e
1
Parent(s):
0c6bc3c
Rename pdb_featureVector.py to code/pdb_featureVector.py
Browse files
pdb_featureVector.py → code/pdb_featureVector.py
RENAMED
|
@@ -440,7 +440,11 @@ def pdb(input_set, mode, impute):
|
|
| 440 |
print('Aligning sequences...\n')
|
| 441 |
aligned_m = final_stage(dfM, annotation_list, Path(path_to_output_files / 'alignment_files'))
|
| 442 |
aligned_nm = final_stage(dfNM, annotation_list, Path(path_to_output_files / 'alignment_files'))
|
| 443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 444 |
# When PDB sequence is nan, it is wrongly aligned to the UniProt sequence. Fix them.
|
| 445 |
for i in aligned_m.index:
|
| 446 |
if aligned_m.at[i, 'pdbSequence'] == 'nan':
|
|
|
|
| 440 |
print('Aligning sequences...\n')
|
| 441 |
aligned_m = final_stage(dfM, annotation_list, Path(path_to_output_files / 'alignment_files'))
|
| 442 |
aligned_nm = final_stage(dfNM, annotation_list, Path(path_to_output_files / 'alignment_files'))
|
| 443 |
+
st.write('aligned_m')
|
| 444 |
+
st.write(aligned_m)
|
| 445 |
+
|
| 446 |
+
st.write('aligned_nm')
|
| 447 |
+
st.write(aligned_nm)
|
| 448 |
# When PDB sequence is nan, it is wrongly aligned to the UniProt sequence. Fix them.
|
| 449 |
for i in aligned_m.index:
|
| 450 |
if aligned_m.at[i, 'pdbSequence'] == 'nan':
|