Skip to content

Commit 2d15730

Browse files
committed
Adjusting command format for design_macrocyclic_binder.sh and design_macrocyclic_monomer.sh
1 parent a18f996 commit 2d15730

File tree

2 files changed

+16
-21
lines changed

2 files changed

+16
-21
lines changed

examples/design_macrocyclic_binder.sh

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
#!/bin/bash
22

3-
prefix=./outputs/diffused_binder_cyclic2
3+
# Note that in the example below the indices in the
4+
# input_pdbs/7zkr_GABARAP.pdb file have been shifted
5+
# by +2 in chain A relative to pdbID 7zkr.
46

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 \
7+
../scripts/run_inference.py \
8+
--config-name base \
9+
inference.output_prefix=example_outputs/diffused_binder_cyclic2 \
10+
inference.num_designs=10 \
1411
'contigmap.contigs=[12-18 A3-117/0]' \
15-
inference.input_pdb=$pdb \
12+
inference.input_pdb=/input_pdbs/7zkr_GABARAP.pdb \
1613
inference.cyclic=True \
1714
diffuser.T=50 \
1815
inference.cyc_chains='a' \
Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
#!/bin/bash
22

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'
3+
# Note that in the example below the indices in the
4+
# input_pdbs/7zkr_GABARAP.pdb file have been shifted
5+
# by +2 in chain A relative to pdbID 7zkr.
76

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 \
7+
../scripts/run_inference.py \
8+
--config-name base \
9+
inference.output_prefix=example_outputs/uncond_cycpep \
10+
inference.num_designs=10 \
1311
'contigmap.contigs=[12-18]' \
14-
inference.input_pdb=$pdb \
12+
inference.input_pdb=input_pdbs/7zkr_GABARAP.pdb \
1513
inference.cyclic=True \
1614
diffuser.T=50 \
1715
inference.cyc_chains='a'

0 commit comments

Comments
 (0)