Fixed off by one result output
Some checks failed
ydeng/bmlsa/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-04-21 14:14:22 -05:00
parent 50210a884d
commit b8fa4b5208

View File

@ -35,7 +35,7 @@ def protein_align_many_to_one_ssw(sequence: str, queries: dict[str, AlignedSeque
alignment.query,
query.name,
query.description,
aligned_start,
int(aligned_start) + 1,
aligned_end,
score,
)