inference_multimer.sh 1.09 KB
Newer Older
zhuwenwen's avatar
zhuwenwen committed
1
2
3
4
# 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

yuhai's avatar
yuhai committed
5
6
7
python3 inference.py SUGP1.fasta /alphafold/pdb_mmcif/mmcif_files \
    --output_dir ./output \
    --gpus 4 \
zhuwenwen's avatar
zhuwenwen committed
8
    --model_preset multimer \
yuhai's avatar
yuhai committed
9
10
11
12
13
14
15
    --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 \
zhuwenwen's avatar
zhuwenwen committed
16
17
18
19
20
21
22
23
24
    --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 \
    
    
yuhai's avatar
yuhai committed
25
    
zhuwenwen's avatar
zhuwenwen committed
26
27
28
29
30
31
32