Skip to content

Commit

Permalink
Update README and refactor and improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hllelli2 committed Jan 16, 2025
1 parent 0609b45 commit 505901e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ abcfold <input_json> <output_dir> -abc --model_params <model_params> --database

## Extra Features

Below are scripts for adding MMseqs2 MSAs and custom templates to AlphaFold3 input JSON files.
Below are scripts for adding MMseqs2 MSAs and custom templates to AlphaFold3 input JSON files but does not run any ABCFold.


These scripts are designed to take in a prepared [AlphaFold3](https://github.com/google-deepmind/alphafold3/tree/main) JSON files, e.g.:
Expand Down
6 changes: 5 additions & 1 deletion abcfold/abcfold.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ def run(args, config, defaults, config_file):
else:
run_json = Path(args.input_json)

if not args.alphafold3 and not args.boltz1 and not args.chai1: #
if not args.alphafold3 and not args.boltz1 and not args.chai1:
logger.info(
"Neither AlphaFold3, Boltz-1, or Chai-1 selected. Running AlphaFold3 \
by default"
)
args.alphafold3 = True

if args.alphafold3:
Expand Down

0 comments on commit 505901e

Please sign in to comment.