fatmacankara commited on
Commit
65d977a
1 Parent(s): 754d2fc

Update ASCARIS.py

Browse files
Files changed (1) hide show
  1. ASCARIS.py +14 -1
ASCARIS.py CHANGED
@@ -37,7 +37,20 @@ with st.form('mform', clear_on_submit=False):
37
 
38
  impute = st.selectbox('Imputation',[True, False])
39
 
40
- input_set = st.text_input('Enter SAV data points (Example: Q9Y4W6-N-432-T)')
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  submitted = st.form_submit_button(label="Submit", help=None, on_click=None, args=None, kwargs=None, type="secondary", disabled=False, use_container_width=False)
43
  print('*****************************************')
 
37
 
38
  impute = st.selectbox('Imputation',[True, False])
39
 
40
+ input_data = st.text_input('Enter SAV data points (Example: Q9Y4W6-N-432-T)')
41
+ parser = argparse.ArgumentParser(description='ASCARIS')
42
+ #parser.add_argument('-s', '--source_option',
43
+ # help='Selection of input structure data.\n 1: PDB Structures (default), 2: AlphaFold Structures',
44
+ # default=1)
45
+ #parser.add_argument('-i', '--input_datapoint',
46
+ # 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 Q9Y4W6-N-432-T, Q9Y4W6-N-432-T)) \n Option 2: Enter comma-separated file path')
47
+ #
48
+ #parser.add_argument('-impute', '--imputation_state', default='True',
49
+ # help='Whether resulting feature vector should be imputed or not. Default True.')
50
+
51
+ #args = parser.parse_args()
52
+ input_set = input_data
53
+ impute = impute
54
 
55
  submitted = st.form_submit_button(label="Submit", help=None, on_click=None, args=None, kwargs=None, type="secondary", disabled=False, use_container_width=False)
56
  print('*****************************************')