Skip to content

Commit 5c228dc

Browse files
authored
Patch 1 (#19)
* hides index of dataframes * whole data from dataframe displays for predictions
1 parent d715beb commit 5c228dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Home.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def main():
244244
else:
245245
# Display variant annotations from opencravat
246246
st.subheader("**OpenCravat annotations**")
247-
st.dataframe(overall)
247+
st.dataframe(overall,hide_index=True)
248248
st.write("\n\n")
249249

250250
# Select transcript
@@ -300,7 +300,7 @@ def main():
300300
],
301301
}
302302
# Create DataFrame
303-
pred_col1.dataframe(pd.DataFrame(var_scores))
303+
pred_col1.dataframe(pd.DataFrame(var_scores),hide_index=True, use_container_width=True)
304304
pred_col1.write("\n\n\n\n\n\n")
305305

306306
# Display DITTO score as a gauge chart using plotly

0 commit comments

Comments
 (0)