Skip to content

Commit

Permalink
Merge pull request #66 from IBM/rfd-dev
Browse files Browse the repository at this point in the history
🪲 Bug fix: Normal alignment `int` for mmseqs_v
  • Loading branch information
RaulFD-creator authored Nov 11, 2024
2 parents d2fd394 + e9bfedd commit 2bfbceb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hestia/similarity.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,8 @@ def _normal_alignment(df_query, df_target, tmp_dir,
f'{tmp_dir}/db_target', f'{tmp_dir}/align_db',
f'{tmp_dir}/tmp', '--alignment-mode', '3',
'--seq-id-mode', denominator, '--search-type', '1',
'--prefilter-mode', '2', '-s', '7.5', '-v', mmseqs_v,
'--prefilter-mode', '2', '-s', '7.5',
'-v', str(mmseqs_v),
'--threads', str(threads)])

file = os.path.join(tmp_dir, 'alignments.tab')
Expand Down

0 comments on commit 2bfbceb

Please sign in to comment.