I would like to integrate an interactive viewer for some of my data (DNA sequences).
Several people have made these viewers, mostly in javascript. Is there any possible way to integrate, say components of this viewer (https://github.com/Lattice-Automation/seqviz) into a streamlit app? Would something along the lines of st.markdown(myMarkdown, unsafe_allow_html = True) suffice? For reference, I am an intermediate python programmer with no javascript experience (though willing to get my hands dirty).
I tried inserting script tags in markdown, along with some html, but everything in the script got ignored. Seems to me they don’t allow JS, probably for security reasons. wish there was some reasonable workaround though