Skip to content

Commit b1ba556

Browse files
add .sh examples, gabarap pdb, import numpy
1 parent cd64c5a commit b1ba556

5 files changed

Lines changed: 2666 additions & 1 deletion

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
prefix=./outputs/diffused_binder_cyclic2
4+
5+
# Note that the indices in this pdb file have been
6+
# shifted by +2 in chain A relative to pdbID 7zkr.
7+
pdb='./input_pdbs/7zkr_GABARAP.pdb'
8+
9+
num_designs=10
10+
script="../scripts/run_inference.py"
11+
$script --config-name base \
12+
inference.output_prefix=$prefix \
13+
inference.num_designs=$num_designs \
14+
'contigmap.contigs=[12-18 A3-117/0]' \
15+
inference.input_pdb=$pdb \
16+
inference.cyclic=True \
17+
diffuser.T=50 \
18+
inference.cyc_chains='a' \
19+
ppi.hotspot_res=[\'A51\',\'A52\',\'A50\',\'A48\',\'A62\',\'A65\'] \
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
prefix=./outputs/uncond_cycpep
4+
# Note that the indices in this pdb file have been
5+
# shifted by +2 in chain A relative to pdbID 7zkr.
6+
pdb='./input_pdbs/7zkr_GABARAP.pdb'
7+
8+
num_designs=10
9+
script="../scripts/run_inference.py"
10+
$script --config-name base \
11+
inference.output_prefix=$prefix \
12+
inference.num_designs=$num_designs \
13+
'contigmap.contigs=[12-18]' \
14+
inference.input_pdb=$pdb \
15+
inference.cyclic=True \
16+
diffuser.T=50 \
17+
inference.cyc_chains='a'

0 commit comments

Comments
 (0)