AF_Cluster icon indicating copy to clipboard operation
AF_Cluster copied to clipboard

Running clustered msa on Local ColabFold

Open jimfeng9705 opened this issue 1 year ago • 1 comments

The predication by AF takes a long time, for a longer sequence. And the run can be disconnected. How can we run our local colabfold using the clustered msa?

jimfeng9705 avatar Sep 10 '24 16:09 jimfeng9705

You need to download ColabFold on your local machine (see LocalColabFold here)

Simply download the clusters from Colab (or generate them locally), and run something like this in your folder containing clustered MSAs:

import glob
import os

for cluster in glob.glob("*.a3m"):
    os.system(f"colabfold_batch {cluster} pdb/")

KhondamirRustamov avatar Nov 07 '24 10:11 KhondamirRustamov