Skip to content

Commit

Permalink
Merge pull request #520 from rachelse/main
Browse files Browse the repository at this point in the history
Fixed multimer msa not paired if raw_jobname has white spaces
  • Loading branch information
martin-steinegger committed Nov 16, 2023
2 parents 223e4bf + 219fe97 commit ca6b297
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion colabfold/mmseqs/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ def main():
query_seqs_cardinality,
) in enumerate(queries_unique):
for seq in query_sequences:
f.write(f"{id}\t{raw_jobname}\t{file_number}\n")
raw_jobname_first = raw_jobname.split()[0]
f.write(f"{id}\t{raw_jobname_first}\t{file_number}\n")
id += 1
file_number += 1

Expand Down

0 comments on commit ca6b297

Please sign in to comment.