ColabFold icon indicating copy to clipboard operation
ColabFold copied to clipboard

Failed to build DB from downloaded DB_FILE

Open WHEREISSHE opened this issue 3 years ago • 2 comments

Built MSA from already downloaded DB_File from colabfold.mmseqs.com using command: tar xzvf "uniref30_2103.tar.gz" mmseqs tsv2exprofiledb "uniref30_2103" "uniref30_2103_db" mmseqs createindex "uniref30_2103_db" tmp1 --remove-tmp-files 1 However, it went wrong with notion: Invalid Command: tsv2exprofiledb I am wondering if convertprofiledb should be used or other operations needed?

WHEREISSHE avatar Aug 15 '22 12:08 WHEREISSHE

Did you execute the commands in one line? They should be separate. If not: Is "mmseqs" in your PATH? If not, then execute: export PATH=/path/to/your/installation/MsaServer/mmseqs/bin:$PATH I used the following commands (as shown in https://github.com/sokrypton/ColabFold/blob/main/setup_databases.sh)

mmseqs tsv2exprofiledb "uniref30_2103" "uniref30_2103_db"
mmseqs createindex "uniref30_2103_db" tmp1 --remove-tmp-files 1
mmseqs tsv2exprofiledb "colabfold_envdb_202108" "colabfold_envdb_202108_db"
mmseqs createindex "colabfold_envdb_202108_db" tmp2 --remove-tmp-files 1

pannoniac avatar Sep 01 '22 17:09 pannoniac

Did you execute the commands in one line? They should be separate. If not: Is "mmseqs" in your PATH? If not, then execute: export PATH=/path/to/your/installation/MsaServer/mmseqs/bin:$PATH I used the following commands (as shown in https://github.com/sokrypton/ColabFold/blob/main/setup_databases.sh)

mmseqs tsv2exprofiledb "uniref30_2103" "uniref30_2103_db"
mmseqs createindex "uniref30_2103_db" tmp1 --remove-tmp-files 1
mmseqs tsv2exprofiledb "colabfold_envdb_202108" "colabfold_envdb_202108_db"
mmseqs createindex "colabfold_envdb_202108_db" tmp2 --remove-tmp-files 1

When I run the first command, the notion came as followed:

Invalid Command: tsv2exprofiledb
Did you mean "/usr/bin/mmseqs-avx2 convertprofiledb"?

WHEREISSHE avatar Sep 02 '22 01:09 WHEREISSHE