Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,14 @@ However, there you may wish to use the following flags to add run time options s
#### OpenFold3 arguments
- `--inference_ckpt_path` [optional] Path for model checkpoint to be used for inference. If not specified, will attempt to find or download parameters in ~/.openfold3/

#### Chai-1 fast runner

`--chai1` uses ABCFold's persistent Chai worker by default. The worker keeps
the same Chai quality settings as the standard runner while reducing repeated
process setup overhead and distributing seed jobs across the requested
`--gpus` slots. `--chai_fast` was intentionally removed; use `--chai1`.
See [Chai Fast Runner](docs/chai_fast_runner.md) for smoke checks and details.

#### Template arguments

- `--templates`: Flag to enable a template search
Expand Down
2 changes: 1 addition & 1 deletion abcfold/abcfold.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def run(args, config, defaults, config_file):
successful_runs.append(boltz_success)

if args.chai1:
from abcfold.chai1.run_chai1 import run_chai
from abcfold.chai1.run_chai1_fast import run_chai_fast as run_chai

template_hits_path = None
if args.templates and args.mmseqs2:
Expand Down
219 changes: 0 additions & 219 deletions abcfold/chai1/run_chai1.py

This file was deleted.

Loading
Loading