"src/vscode:/vscode.git/clone" did not exist on "837944dcc51eca054d589dcaa2b29c8fc9663241"
inference.sh 919 Bytes
Newer Older
oahzxl's avatar
oahzxl committed
1
2
3
4
5
# 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
# add '--chunk_size [N]' to use chunk to reduce peak memory
# add '--inplace' to use inplace to save memory
6
7

python inference.py target.fasta data/pdb_mmcif/mmcif_files \
LuGY's avatar
LuGY committed
8
9
10
11
12
13
14
15
16
    --output_dir ./ \
    --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 \
    --jackhmmer_binary_path `which jackhmmer` \
    --hhblits_binary_path `which hhblits` \
    --hhsearch_binary_path `which hhsearch` \
17
    --kalign_binary_path `which kalign`