Failed to build DB from downloaded DB_FILE
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?
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
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:$PATHI 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"?