Spaces:
Running
Running
Commit
·
6a37be7
1
Parent(s):
37ca959
Update code/modbaseModelAdd.py
Browse files- code/modbaseModelAdd.py +5 -0
code/modbaseModelAdd.py
CHANGED
@@ -68,6 +68,11 @@ def addModbaseModels(dataframe, path_to_input_files, path_to_output_files):
|
|
68 |
include_hetatms=True,
|
69 |
outdir=None, force_rerun=False, file_type='pdb')
|
70 |
filename = Path(path_to_output_files / 'freesasa_files' / f'{model_id.lower()}.txt')
|
|
|
|
|
|
|
|
|
|
|
71 |
dataframe.loc[i, 'sasa'] = sasa(protein, varPos, wt, 1, filename, path_to_output_files, file_type='pdb')
|
72 |
with open(path_to_output_files / 'modbase_structures_individual'/ f'{model_id}.txt', encoding="utf8") as m:
|
73 |
|
|
|
68 |
include_hetatms=True,
|
69 |
outdir=None, force_rerun=False, file_type='pdb')
|
70 |
filename = Path(path_to_output_files / 'freesasa_files' / f'{model_id.lower()}.txt')
|
71 |
+
st.write('filename', filename)
|
72 |
+
st.write('varPos', varPos)
|
73 |
+
st.write('wt', wt)
|
74 |
+
st.write('protein', protein)
|
75 |
+
st.write('path_to_output_files', path_to_output_files)
|
76 |
dataframe.loc[i, 'sasa'] = sasa(protein, varPos, wt, 1, filename, path_to_output_files, file_type='pdb')
|
77 |
with open(path_to_output_files / 'modbase_structures_individual'/ f'{model_id}.txt', encoding="utf8") as m:
|
78 |
|