inference_multimer.sh 1.18 KB
Newer Older
zhuwenwen's avatar
zhuwenwen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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 /data/pdb_mmcif/mmcif_files \
    --output_dir ./ \
    --gpus 4 \
    --use_precomputed_alignments  alignments/ \
    --model_preset multimer \
    --uniref90_database_path /data/uniref90/uniref90.fasta \
    --mgnify_database_path /data/mgnify/mgy_clusters_2018_12.fa \
    --pdb70_database_path /data/pdb70/pdb70 \
    --uniclust30_database_path /data/uniclust30/uniclust30_2018_08/uniclust30_2018_08 \
    --bfd_database_path /data/bfd/bfd_metaclust_clu_complete_id30_c90_final_seq.sorted_opt \
    --uniprot_database_path /data/uniprot/uniprot_sprot.fasta \
    --pdb_seqres_database_path /data/pdb_seqres/pdb_seqres.txt \
    --param_path /data/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 \