Spaces:
Sleeping
Sleeping
Commit
·
b7a9a10
1
Parent(s):
9abc2e6
Update app.py
Browse files
app.py
CHANGED
|
@@ -36,10 +36,22 @@ selected_df = pd.DataFrame()
|
|
| 36 |
with st.form('mform', clear_on_submit=False):
|
| 37 |
source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
| 38 |
impute = st.selectbox('Imputation',[True, False])
|
| 39 |
-
|
|
|
|
|
|
|
| 40 |
disabled=st.session_state.disabled,
|
| 41 |
placeholder='hidden',
|
| 42 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
|
| 45 |
parser = argparse.ArgumentParser(description='ASCARIS')
|
|
|
|
| 36 |
with st.form('mform', clear_on_submit=False):
|
| 37 |
source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
| 38 |
impute = st.selectbox('Imputation',[True, False])
|
| 39 |
+
"""
|
| 40 |
+
input_data = st.text_input('Enter SAV data points (Format Provided Below)', "P13637-T-613-M, Q9Y4W6-N-432-T",
|
| 41 |
+
label_visibility=st.session_state.visibility,
|
| 42 |
disabled=st.session_state.disabled,
|
| 43 |
placeholder='hidden',
|
| 44 |
)
|
| 45 |
+
"""
|
| 46 |
+
input_data = st.text_input(
|
| 47 |
+
"Enter some text 👇",
|
| 48 |
+
label_visibility=st.session_state.visibility,
|
| 49 |
+
disabled=st.session_state.disabled,
|
| 50 |
+
placeholder=st.session_state.placeholder,
|
| 51 |
+
)
|
| 52 |
+
|
| 53 |
+
if text_input:
|
| 54 |
+
st.write("You entered: ", input_data)
|
| 55 |
|
| 56 |
|
| 57 |
parser = argparse.ArgumentParser(description='ASCARIS')
|