hlnicholls commited on
Commit
2c23341
1 Parent(s): 21cbf62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ st.markdown("""
52
  A machine learning pipeline for predicting disease-causing genes post-genome-wide association study in blood pressure.
53
  """)
54
 
55
- gene_input = st.text_input('Input HGNC Gene:')
56
  df = df_total[df_total.index == gene_input]
57
  st.dataframe(df)
58
 
 
52
  A machine learning pipeline for predicting disease-causing genes post-genome-wide association study in blood pressure.
53
  """)
54
 
55
+ gene_input = st.text_input('Input Single HGNC Gene:')
56
  df = df_total[df_total.index == gene_input]
57
  st.dataframe(df)
58