Spaces:
Running
Running
Simon Duerr
commited on
Commit
•
fc5272c
1
Parent(s):
227b78b
update requirements and install instructions
Browse files- README.md +19 -4
- requirements.txt +2 -1
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: ProteinMPNN
|
3 |
emoji: ⚡
|
4 |
colorFrom: red
|
5 |
colorTo: pink
|
@@ -10,13 +10,28 @@ pinned: false
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
-
# ProteinMPNN
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
|
18 |
-
Preprint of method available on [BioRxiv](https://t.co/aDnbzjKY7a)
|
19 |
|
20 |
**Robust deep learning based protein sequence design using ProteinMPNN**
|
21 |
Justas Dauparas, Ivan Anishchenko, Nathaniel Bennett, Hua Bai, Robert J. Ragotte, Lukas F. Milles, Basile I. M. Wicky, Alexis Courbet, Robbert J. de Haas, Neville Bethel, Philip J. Y. Leung, Timothy F. Huddy, Sam Pellock, Doug Tischer, Frederick Chan, Brian Koepnick, Hannah Nguyen, Alex Kang, Banumathi Sankaran, Asim Bera, Neil P. King, David Baker
|
22 |
bioRxiv 2022.06.03.494563; doi: https://doi.org/10.1101/2022.06.03.494563
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: ProteinMPNN + ESM
|
3 |
emoji: ⚡
|
4 |
colorFrom: red
|
5 |
colorTo: pink
|
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
+
# ProteinMPNN + ESM
|
14 |
|
15 |
+
You can run this repo locally with the following easy steps.
|
16 |
+
|
17 |
+
In a new python environment, do:
|
18 |
+
|
19 |
+
```
|
20 |
+
pip install -r requirements.txt
|
21 |
+
|
22 |
+
pip install --upgrade transformers accelerate
|
23 |
+
|
24 |
+
python app.py
|
25 |
+
```
|
26 |
+
|
27 |
+
This will launch a local webserver and a share URL (`xxx.gradio.app`, helpful if running this on a cluster), open the url in your webbrowser and start designing proteins.
|
28 |
|
29 |
|
|
|
30 |
|
31 |
**Robust deep learning based protein sequence design using ProteinMPNN**
|
32 |
Justas Dauparas, Ivan Anishchenko, Nathaniel Bennett, Hua Bai, Robert J. Ragotte, Lukas F. Milles, Basile I. M. Wicky, Alexis Courbet, Robbert J. de Haas, Neville Bethel, Philip J. Y. Leung, Timothy F. Huddy, Sam Pellock, Doug Tischer, Frederick Chan, Brian Koepnick, Hannah Nguyen, Alex Kang, Banumathi Sankaran, Asim Bera, Neil P. King, David Baker
|
33 |
bioRxiv 2022.06.03.494563; doi: https://doi.org/10.1101/2022.06.03.494563
|
34 |
+
|
35 |
+
**Evolutionary-scale prediction of atomic level protein structure with a language model**
|
36 |
+
Zeming Lin, Halil Akin, Roshan Rao, Brian Hie, Zhongkai Zhu, Wenting Lu, Nikita Smetanin, Robert Verkuil, Ori Kabeli, Yaniv Shmueli, Allan dos Santos Costa, Maryam Fazel-Zarandi, Tom Sercu, Salvatore Candido, Alexander Rives
|
37 |
+
bioRxiv 2022.07.20.500902; doi: https://doi.org/10.1101/2022.07.20.500902
|
requirements.txt
CHANGED
@@ -7,4 +7,5 @@ torch
|
|
7 |
plotly
|
8 |
tqdm
|
9 |
mdtraj
|
10 |
-
|
|
|
|
7 |
plotly
|
8 |
tqdm
|
9 |
mdtraj
|
10 |
+
transformers
|
11 |
+
accelerate
|