We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d715beb commit 5c228dcCopy full SHA for 5c228dc
src/Home.py
@@ -244,7 +244,7 @@ def main():
244
else:
245
# Display variant annotations from opencravat
246
st.subheader("**OpenCravat annotations**")
247
- st.dataframe(overall)
+ st.dataframe(overall,hide_index=True)
248
st.write("\n\n")
249
250
# Select transcript
@@ -300,7 +300,7 @@ def main():
300
],
301
}
302
# Create DataFrame
303
- pred_col1.dataframe(pd.DataFrame(var_scores))
+ pred_col1.dataframe(pd.DataFrame(var_scores),hide_index=True, use_container_width=True)
304
pred_col1.write("\n\n\n\n\n\n")
305
306
# Display DITTO score as a gauge chart using plotly
0 commit comments