Spaces:
Running
Running
Commit
·
0052cfb
1
Parent(s):
ab6e747
Update ASCARIS.py
Browse files- ASCARIS.py +4 -4
ASCARIS.py
CHANGED
@@ -23,9 +23,9 @@ if 'visibility' not in st.session_state:
|
|
23 |
st.session_state['visibility'] = 'visible'
|
24 |
st.session_state.disabled = False
|
25 |
|
26 |
-
original_title = '<p style="font-family:Trebuchet MS; color:#
|
27 |
st.markdown(original_title, unsafe_allow_html=True)
|
28 |
-
original_title = '<p style="font-family:Trebuchet MS; color:#
|
29 |
st.markdown(original_title, unsafe_allow_html=True)
|
30 |
|
31 |
st.write('')
|
@@ -36,7 +36,7 @@ st.write('')
|
|
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 |
#source = 1
|
39 |
-
impute = st.selectbox('
|
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 |
|
@@ -47,7 +47,7 @@ with st.form('mform', clear_on_submit=False):
|
|
47 |
# help='Selection of input structure data.\n 1: PDB Structures (default), 2: AlphaFold Structures',
|
48 |
# default=1)
|
49 |
#parser.add_argument('-i', '--input_datapoint',
|
50 |
-
# help='Input file or query datapoint\n Option 1: Comma-separated list of identifiers (UniProt ID-wt residue-position-mutated residue (e.g. Q9Y4W6-N-432-T or
|
51 |
#
|
52 |
#parser.add_argument('-impute', '--imputation_state', default='True',
|
53 |
# help='Whether resulting feature vector should be imputed or not. Default True.')
|
|
|
23 |
st.session_state['visibility'] = 'visible'
|
24 |
st.session_state.disabled = False
|
25 |
|
26 |
+
original_title = '<p style="font-family:Trebuchet MS; color:#000000; font-size: 25px; font-weight:bold; text-align:center">ASCARIS</p>'
|
27 |
st.markdown(original_title, unsafe_allow_html=True)
|
28 |
+
original_title = '<p style="font-family:Trebuchet MS; color:#000000; font-size: 25px; font-weight:bold; text-align:center">(Annotation and StruCture-bAsed RepresentatIon of Single amino acid variations)</p>'
|
29 |
st.markdown(original_title, unsafe_allow_html=True)
|
30 |
|
31 |
st.write('')
|
|
|
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 |
#source = 1
|
39 |
+
impute = st.selectbox('Missing value imputation (mostly for the cases where the corresponding annotation does not exist for the protein of interest)',[True, False])
|
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 |
|
|
|
47 |
# help='Selection of input structure data.\n 1: PDB Structures (default), 2: AlphaFold Structures',
|
48 |
# default=1)
|
49 |
#parser.add_argument('-i', '--input_datapoint',
|
50 |
+
# help='Input file or query datapoint\n Option 1: Comma-separated list of identifiers (UniProt ID-wt residue-position-mutated residue (e.g. Q9Y4W6-N-432-T or P41180-E-604-K, Q9Y4W6-N-432-T)) \n Option 2: Enter comma-separated file path')
|
51 |
#
|
52 |
#parser.add_argument('-impute', '--imputation_state', default='True',
|
53 |
# help='Whether resulting feature vector should be imputed or not. Default True.')
|