NiniCat commited on
Commit
4d05090
1 Parent(s): 6a7c0e6

add enzyme buttons

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,11 +27,11 @@ if selected_model == 'Cas9':
27
  if st.button('SPCas9_HF1'):
28
  # Placeholder for action when SPCas9_HF1 is clicked
29
  pass
30
- elif model_name == 'Cas12':
31
  # Placeholder for Cas12 model loading
32
  # TODO: Implement Cas12 model loading logic
33
  raise NotImplementedError("Cas12 model loading not implemented yet.")
34
- elif model_name == 'Cas13d':
35
  # Assuming tiger module is for Cas13
36
  tiger.load_model() # Assuming there's a load_model function in tiger.py
37
  else:
 
27
  if st.button('SPCas9_HF1'):
28
  # Placeholder for action when SPCas9_HF1 is clicked
29
  pass
30
+ elif selected_model == 'Cas12':
31
  # Placeholder for Cas12 model loading
32
  # TODO: Implement Cas12 model loading logic
33
  raise NotImplementedError("Cas12 model loading not implemented yet.")
34
+ elif selected_model == 'Cas13d':
35
  # Assuming tiger module is for Cas13
36
  tiger.load_model() # Assuming there's a load_model function in tiger.py
37
  else: