Skip to content
Open
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
12 changes: 0 additions & 12 deletions src/simplefold/utils/fasta_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@


CCD_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/ccd.pkl"
MODEL_URL = (
"https://huggingface.co/boltz-community/boltz-1/resolve/main/boltz1_conf.ckpt"
)


from collections.abc import Mapping
Expand Down Expand Up @@ -131,15 +128,6 @@ def download_fasta_utilities(cache: Path) -> None:
)
urllib.request.urlretrieve(CCD_URL, str(ccd))

# Download model
model = cache / "boltz1_conf.ckpt"
if not model.exists():
click.echo(
f"Downloading the model weights to {model}. You may "
"change the cache directory with the --cache flag."
)
urllib.request.urlretrieve(MODEL_URL, str(model))


def process_fastas(
data: list[Path],
Expand Down