Spaces:
Sleeping
Sleeping
fix typo
Browse files
app.py
CHANGED
@@ -45,7 +45,7 @@ top_coexp_hits.reset_index()
|
|
45 |
|
46 |
st.download_button(
|
47 |
label="Download data as TSV",
|
48 |
-
data =
|
49 |
file_name= f"top_coexp_hits_{gene_id}.tsv",
|
50 |
mime="text/csv")
|
51 |
|
|
|
45 |
|
46 |
st.download_button(
|
47 |
label="Download data as TSV",
|
48 |
+
data = top_coexp_hits.to_csv(sep ='\t').encode('utf-8'),
|
49 |
file_name= f"top_coexp_hits_{gene_id}.tsv",
|
50 |
mime="text/csv")
|
51 |
|