File size: 345 Bytes
9ae74ae | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
cd "$ROOT"
python model/mpnn_fr/dl_interface_design.py \
-silent conf/examples/inputs/in.silent \
-relax_cycles 0 \
-seqs_per_struct 4 \
-outsilent output/example_proteinmpnn.silent \
-checkpoint_name output/example_proteinmpnn_silent.checkpoint
|