Skip to content

Commit

Permalink
Reduce log output of MMseqs2 in colabfold_search
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Mar 31, 2024
1 parent be06b20 commit 61df3b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions colabfold/mmseqs/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
def run_mmseqs(mmseqs: Path, params: List[Union[str, Path]]):
params_log = " ".join(str(i) for i in params)
logger.info(f"Running {mmseqs} {params_log}")
# hide MMseqs2 verbose paramters list that clogs up the log
os.environ["MMSEQS_CALL_DEPTH"] = "1"
subprocess.check_call([mmseqs] + params)


Expand Down

0 comments on commit 61df3b8

Please sign in to comment.