Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolving Error in 'run_infer.sh' Script Due to Duplicate 'bfd_database_path' Argument #359

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update run_infer.sh
There are two identical bfd_database_path arguments in the run_infer.sh script, which would lead to error when set 'full_dbs' for 'preset' argument.
davidwongmedinfo authored Nov 15, 2024
commit 30d43ec08439ba923494eef069b3fb6d77c3a1f6
3 changes: 1 addition & 2 deletions apps/protein_folding/helixfold3/run_infer.sh
Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@ CUDA_VISIBLE_DEVICES=0 "$PYTHON_BIN" inference.py \
--preset='reduced_dbs' \
--bfd_database_path "$DATA_DIR/bfd/bfd_metaclust_clu_complete_id30_c90_final_seq.sorted_opt" \
--small_bfd_database_path "$DATA_DIR/small_bfd/bfd-first_non_consensus_sequences.fasta" \
--bfd_database_path "$DATA_DIR/small_bfd/bfd-first_non_consensus_sequences.fasta" \
--uniclust30_database_path "$DATA_DIR/uniclust30/uniclust30_2018_08/uniclust30_2018_08" \
--uniprot_database_path "$DATA_DIR/uniprot/uniprot.fasta" \
--pdb_seqres_database_path "$DATA_DIR/pdb_seqres/pdb_seqres.txt" \
@@ -36,4 +35,4 @@ CUDA_VISIBLE_DEVICES=0 "$PYTHON_BIN" inference.py \
--init_model init_models/HelixFold3-240814.pdparams \
--infer_times 1 \
--diff_batch_size 1 \
--precision "fp32"
--precision "fp32"