bshor commited on
Commit
0b45f21
·
1 Parent(s): 8d5a622
Files changed (2) hide show
  1. README.md +3 -0
  2. inference_app.py +1 -1
README.md CHANGED
@@ -8,4 +8,7 @@ pinned: false
8
  license: apache-2.0
9
  ---
10
 
 
 
 
11
  This code is built upon OpenFold. If you use or reference this code, please ensure you also cite the papers referenced on their GitHub page: https://github.com/aqlaboratory/openfold
 
8
  license: apache-2.0
9
  ---
10
 
11
+ This app and code is the implementation of DockFormer described in https://www.biorxiv.org/content/10.1101/2024.11.25.625135v1.
12
+
13
+
14
  This code is built upon OpenFold. If you use or reference this code, please ensure you also cite the papers referenced on their GitHub page: https://github.com/aqlaboratory/openfold
inference_app.py CHANGED
@@ -75,7 +75,7 @@ with gr.Blocks() as app:
75
  metrics = gr.JSON(label="Metrics")
76
  run_time = gr.Textbox(label="Runtime")
77
 
78
- btn.click(predict, inputs=[input_sequence, input_ligand, input_msa, input_protein],
79
  outputs=[out, metrics, run_time])
80
 
81
  app.launch()
 
75
  metrics = gr.JSON(label="Metrics")
76
  run_time = gr.Textbox(label="Runtime")
77
 
78
+ btn.click(predict, inputs=[input_sequence, input_ligand, input_msa, input_protein, model_variation],
79
  outputs=[out, metrics, run_time])
80
 
81
  app.launch()