Skip to content
Snippets Groups Projects

Cloned AlphaFold 3 repo into this one

Merged Fortune Iriaye requested to merge clone-alphafold3-github into main
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
+ 6
0
@@ -19,6 +19,7 @@ import concurrent.futures
import functools
import os
import pathlib
import shutil
import subprocess
import sys
@@ -105,6 +106,11 @@ def main(argv=('',)) -> None:
f' {destination}.'
) from e
if shutil.which('curl') is None:
raise ValueError('curl is not installed. Please install it and try again.')
if shutil.which('zstd') is None:
raise ValueError('zstd is not installed. Please install it and try again.')
# Download each of the files and decompress them in parallel.
with concurrent.futures.ThreadPoolExecutor(
max_workers=len(DATABASE_FILES)
Loading