Spaces:
Sleeping
Sleeping
Commit
·
5f5b698
1
Parent(s):
04d7d74
Update code/pdb_featureVector.py
Browse files
code/pdb_featureVector.py
CHANGED
|
@@ -259,6 +259,8 @@ def pdb(input_set, mode, impute):
|
|
| 259 |
modbase = modbase.sort_values(by=['datapoint', 'quality_score', 'distance','hitTotal', 'annotTotal'], ascending=[True, True, True, True, True])
|
| 260 |
modbase = modbase.drop_duplicates(['datapoint'])
|
| 261 |
modbase.replace({'[]': np.NaN, 'hit': 0.0}, inplace=True)
|
|
|
|
|
|
|
| 262 |
else:
|
| 263 |
modbase = pd.DataFrame(columns = SIMPLE_COLS)
|
| 264 |
|
|
|
|
| 259 |
modbase = modbase.sort_values(by=['datapoint', 'quality_score', 'distance','hitTotal', 'annotTotal'], ascending=[True, True, True, True, True])
|
| 260 |
modbase = modbase.drop_duplicates(['datapoint'])
|
| 261 |
modbase.replace({'[]': np.NaN, 'hit': 0.0}, inplace=True)
|
| 262 |
+
st.write('modbase SIMP')
|
| 263 |
+
st.write(modbase)
|
| 264 |
else:
|
| 265 |
modbase = pd.DataFrame(columns = SIMPLE_COLS)
|
| 266 |
|