Spaces:
Sleeping
Sleeping
Commit
·
cffb273
1
Parent(s):
e9190e4
Update ASCARIS.py
Browse files- ASCARIS.py +0 -3
ASCARIS.py
CHANGED
|
@@ -36,7 +36,6 @@ with st.form('mform', clear_on_submit=False):
|
|
| 36 |
#source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
| 37 |
source = 1
|
| 38 |
impute = st.selectbox('Imputation',[True, False])
|
| 39 |
-
st.write(impute, 'impute')
|
| 40 |
input_data = st.text_input('Enter SAV data points (Example: Q00889-H-85-D, or Q00889-H-85-D,Q16363-Y-498-H)')
|
| 41 |
|
| 42 |
|
|
@@ -63,7 +62,6 @@ with st.form('mform', clear_on_submit=False):
|
|
| 63 |
print('*****************************************')
|
| 64 |
mode = int(mode)
|
| 65 |
|
| 66 |
-
st.write(impute, 'impute')
|
| 67 |
selected_df = pd.DataFrame()
|
| 68 |
st.write('The online tool may be slow, especially while processing multiple SAVs, please consider using the local programmatic version at https://github.com/HUBioDataLab/ASCARIS/')
|
| 69 |
if submitted:
|
|
@@ -83,7 +81,6 @@ if submitted:
|
|
| 83 |
|
| 84 |
if selected_df is None:
|
| 85 |
st.success('Feature vector failed. Check log file.')
|
| 86 |
-
st.write('Failed here1')
|
| 87 |
|
| 88 |
else:
|
| 89 |
if len(selected_df) != 0 :
|
|
|
|
| 36 |
#source = st.selectbox('Select the protein structure resource (1: PDB-SwissModel-Modbase, 2: AlphaFold)',[1,2])
|
| 37 |
source = 1
|
| 38 |
impute = st.selectbox('Imputation',[True, False])
|
|
|
|
| 39 |
input_data = st.text_input('Enter SAV data points (Example: Q00889-H-85-D, or Q00889-H-85-D,Q16363-Y-498-H)')
|
| 40 |
|
| 41 |
|
|
|
|
| 62 |
print('*****************************************')
|
| 63 |
mode = int(mode)
|
| 64 |
|
|
|
|
| 65 |
selected_df = pd.DataFrame()
|
| 66 |
st.write('The online tool may be slow, especially while processing multiple SAVs, please consider using the local programmatic version at https://github.com/HUBioDataLab/ASCARIS/')
|
| 67 |
if submitted:
|
|
|
|
| 81 |
|
| 82 |
if selected_df is None:
|
| 83 |
st.success('Feature vector failed. Check log file.')
|
|
|
|
| 84 |
|
| 85 |
else:
|
| 86 |
if len(selected_df) != 0 :
|