Spaces:
Sleeping
Sleeping
Commit
·
45b475d
1
Parent(s):
a52e656
Update app.py
Browse files
app.py
CHANGED
@@ -38,6 +38,14 @@ output = pd.Series(data=predictions, index=data.index, name="XGB_Score")
|
|
38 |
df_total = pd.concat([data, output], axis=1)
|
39 |
df_total['XGB_Score'] = round(df_total['XGB_Score'], 2)
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
st.title('Blood Pressure Gene Prioritisation Post-GWAS')
|
42 |
st.markdown("""
|
43 |
A machine learning pipeline for predicting disease-causing genes post-genome-wide association study in blood pressure.
|
|
|
38 |
df_total = pd.concat([data, output], axis=1)
|
39 |
df_total['XGB_Score'] = round(df_total['XGB_Score'], 2)
|
40 |
|
41 |
+
df_total = df_total[['XGB_Score', 'ExomiserScore',
|
42 |
+
'SDI', 'Liver_GTExTPM', 'pLI_ExAC',
|
43 |
+
'HIPred',
|
44 |
+
'Cells - EBV-transformed lymphocytes_GTExTPM',
|
45 |
+
'Pituitary_GTExTPM',
|
46 |
+
'IPA_BP_annotation']]
|
47 |
+
|
48 |
+
|
49 |
st.title('Blood Pressure Gene Prioritisation Post-GWAS')
|
50 |
st.markdown("""
|
51 |
A machine learning pipeline for predicting disease-causing genes post-genome-wide association study in blood pressure.
|