hlnicholls commited on
Commit
10fa3a9
·
1 Parent(s): 7d04c1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ A machine learning pipeline for predicting disease-causing genes post-genome-wid
58
  #st.dataframe(df)
59
 
60
 
61
- collect_genes = lambda x : [int(i) for i in re.split(",", x) if i != ""]
62
 
63
  input_genes = st.text_input("List of HGNC Genes (enter comma separated)")
64
  gene_list = st.write(collect_genes(input_genes))
 
58
  #st.dataframe(df)
59
 
60
 
61
+ collect_genes = lambda x : [str(i) for i in re.split(",", x) if i != ""]
62
 
63
  input_genes = st.text_input("List of HGNC Genes (enter comma separated)")
64
  gene_list = st.write(collect_genes(input_genes))