We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--use-templates 1
In this line:
ColabFold/colabfold/mmseqs/search.py
Line 171 in 406d4c6
The --gpu 1 parameter is not propagated from the command line.
--gpu 1
I built the local databases with: GPU=1 ./setup_databases.sh /path/to/db_folder as in the documentation.
GPU=1 ./setup_databases.sh /path/to/db_folder
When my run gets to the template search, it runs the command:
mmseqs search msas/prof_res /mnt/rbg/sequence_databases/colabfold_db/pdb100_230517 msas/res_pdb msas/tmp2 --db-load-mode 1 --threads 64 -s 7.5 -a -e 0.1 --prefilter-mode 0
and crashes with this error:
Index version: 16 Generated by: 8ef870f95af2a3ee474c2cdbb845f5f007fe5be6 ScoreMatrix: VTML80.out Query database size: 1 type: Profile Estimated memory consumption: 1G Target database size: 329605 type: Aminoacid Invalid database read for database data file=/mnt/rbg/sequence_databases/colabfold_db/pdb100_230517.idx, database index=/mnt/rbg/sequence_databases/colabfold_db/pdb100_230517.idx.index getData: local id (4294967295) >= db size (17) Error: Prefilter died
I can get the search to complete by modifying the command to:
mmseqs search msas/prof_res /mnt/rbg/sequence_databases/colabfold_db/pdb100_230517 msas/res_pdb msas/tmp2 --db-load-mode 1 --threads 64 -s 7.5 -a -e 0.1 --prefilter-mode 1 --gpu 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this line:
ColabFold/colabfold/mmseqs/search.py
Line 171 in 406d4c6
The
--gpu 1
parameter is not propagated from the command line.I built the local databases with:
GPU=1 ./setup_databases.sh /path/to/db_folder
as in the documentation.
When my run gets to the template search, it runs the command:
and crashes with this error:
I can get the search to complete by modifying the command to:
The text was updated successfully, but these errors were encountered: