Spaces:
Sleeping
Sleeping
Commit
·
e112e4b
1
Parent(s):
6a08593
Update app.py
Browse files
app.py
CHANGED
@@ -28,14 +28,14 @@ st.write('')
|
|
28 |
st.write('')
|
29 |
|
30 |
|
31 |
-
with st.
|
32 |
source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
33 |
impute = st.selectbox('Imputation',[True, False])
|
34 |
input_data = st.text_input('Enter SAV data points (Format Provided Below)', "P13637-T-613-M, Q9Y4W6-N-432-T",label_visibility=st.session_state.visibility,
|
35 |
disabled=st.session_state.disabled,
|
36 |
placeholder=st.session_state.visibility,
|
37 |
)
|
38 |
-
|
39 |
|
40 |
|
41 |
parser = argparse.ArgumentParser(description='ASCARIS')
|
|
|
28 |
st.write('')
|
29 |
|
30 |
|
31 |
+
with st.form('mform):
|
32 |
source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
33 |
impute = st.selectbox('Imputation',[True, False])
|
34 |
input_data = st.text_input('Enter SAV data points (Format Provided Below)', "P13637-T-613-M, Q9Y4W6-N-432-T",label_visibility=st.session_state.visibility,
|
35 |
disabled=st.session_state.disabled,
|
36 |
placeholder=st.session_state.visibility,
|
37 |
)
|
38 |
+
submitted = st.form_submit_button(label="Submit", help=None, on_click=None, args=None, kwargs=None, type="secondary", disabled=False, use_container_width=False)
|
39 |
|
40 |
|
41 |
parser = argparse.ArgumentParser(description='ASCARIS')
|