# add `--gpus [N]` to use N gpus for inference # add `--enable_workflow` to use parallel workflow for data processing # add `--use_precomputed_alignments [path_to_alignments]` to use precomputed msa python3 inference.py SUGP1.fasta /alphafold/pdb_mmcif/mmcif_files \ --output_dir ./output \ --gpus 4 \ --model_preset multimer \ --uniref90_database_path /alphafold/uniref90/uniref90.fasta \ --mgnify_database_path /alphafold/mgnify/mgy_clusters_2018_12.fa \ --pdb70_database_path /alphafold/pdb70/pdb70 \ --uniclust30_database_path /alphafold/uniclust30/uniclust30_2018_08/uniclust30_2018_08 \ --uniprot_database_path /alphafold/uniprot/uniprot_trembl.fasta \ --pdb_seqres_database_path /alphafold/pdb_seqres/pdb_seqres.txt \ --param_path /alphafold/params/params_model_1_multimer.npz \ --model_name model_1_multimer \ --jackhmmer_binary_path `which jackhmmer` \ --hhblits_binary_path `which hhblits` \ --hhsearch_binary_path `which hhsearch` \ --kalign_binary_path `which kalign` \ --chunk_size 4 \ --inplace \