Spaces:
Sleeping
Sleeping
Commit
·
ba0ad61
1
Parent(s):
102c21c
Update code/pdb_featureVector.py
Browse files
code/pdb_featureVector.py
CHANGED
@@ -238,6 +238,10 @@ def pdb(input_set, mode, impute):
|
|
238 |
modbase_simple = modbase[['uniprotID', 'wt', 'pos', 'mut','datapoint']]
|
239 |
modbase_simple = modbase_simple.drop_duplicates(['uniprotID', 'wt', 'pos' ,'mut','datapoint'])
|
240 |
modbaseOut, no_modbase_models_updated = addModbaseModels(modbase_simple, path_to_input_files, path_to_output_files)
|
|
|
|
|
|
|
|
|
241 |
|
242 |
if len(modbaseOut) > 0:
|
243 |
modbase = modbase.merge(modbaseOut, on = ['uniprotID', 'wt', 'pos', 'mut','datapoint'], how = 'left')
|
|
|
238 |
modbase_simple = modbase[['uniprotID', 'wt', 'pos', 'mut','datapoint']]
|
239 |
modbase_simple = modbase_simple.drop_duplicates(['uniprotID', 'wt', 'pos' ,'mut','datapoint'])
|
240 |
modbaseOut, no_modbase_models_updated = addModbaseModels(modbase_simple, path_to_input_files, path_to_output_files)
|
241 |
+
st.write('modbaseOut')
|
242 |
+
st.write(modbaseOut.to_string())
|
243 |
+
st.write('no_modbase_models_updated')
|
244 |
+
st.write(no_modbase_models_updated.to_string())
|
245 |
|
246 |
if len(modbaseOut) > 0:
|
247 |
modbase = modbase.merge(modbaseOut, on = ['uniprotID', 'wt', 'pos', 'mut','datapoint'], how = 'left')
|