Skip to content

Commit

Permalink
Fixed multimer msa not paired by using only first word of raw_jobname
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelse committed Nov 16, 2023
1 parent f23e6a1 commit 219fe97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion colabfold/mmseqs/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def main():
query_seqs_cardinality,
) in enumerate(queries_unique):
for seq in query_sequences:
raw_jobname_first = raw_jobname.split(" ")[0]
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 219fe97

Please sign in to comment.