Skip to content

Commit 61df3b8

Browse files
committed
Reduce log output of MMseqs2 in colabfold_search
1 parent be06b20 commit 61df3b8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

colabfold/mmseqs/search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
def run_mmseqs(mmseqs: Path, params: List[Union[str, Path]]):
2323
params_log = " ".join(str(i) for i in params)
2424
logger.info(f"Running {mmseqs} {params_log}")
25+
# hide MMseqs2 verbose paramters list that clogs up the log
26+
os.environ["MMSEQS_CALL_DEPTH"] = "1"
2527
subprocess.check_call([mmseqs] + params)
2628

2729

0 commit comments

Comments
 (0)