aksell commited on
Commit
6ee82e3
1 Parent(s): 894de54

REmove print, format imports

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -1,9 +1,10 @@
1
- import streamlit as st
2
- import stmol
3
- import py3Dmol
4
- import time
5
  import re
 
 
 
6
  import requests
 
 
7
 
8
  st.set_page_config(layout="wide")
9
  st.header("Grid visualization of folded protein sequences")
@@ -89,5 +90,4 @@ xyzview.setStyle({"cartoon": {"color": "spectrum"}})
89
  xyzview.zoomTo()
90
 
91
  # Draw our grid!
92
- st.write("Showing grid")
93
  stmol.showmol(xyzview, height=viewer_height, width=viewer_width)
 
 
 
 
 
1
  import re
2
+ import time
3
+
4
+ import py3Dmol
5
  import requests
6
+ import stmol
7
+ import streamlit as st
8
 
9
  st.set_page_config(layout="wide")
10
  st.header("Grid visualization of folded protein sequences")
 
90
  xyzview.zoomTo()
91
 
92
  # Draw our grid!
 
93
  stmol.showmol(xyzview, height=viewer_height, width=viewer_width)