Skip to content

Commit

Permalink
Fix always is_custom_template.
Browse files Browse the repository at this point in the history
  • Loading branch information
rostro36 committed Mar 1, 2024
1 parent 17f24bd commit 10b6838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_pretrained_openfold.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def main(args):
)

is_multimer = "multimer" in args.config_preset
is_custom_template = "use_custom_template" in args
is_custom_template = "use_custom_template" in args and args.use_custom_template
if is_custom_template:
template_featurizer = templates.CustomHitFeaturizer(
mmcif_dir=args.template_mmcif_dir,
Expand Down

0 comments on commit 10b6838

Please sign in to comment.