Skip to content

Commit

Permalink
PD-4217 more fix for multi-domain tccP BLASTP result confused with a …
Browse files Browse the repository at this point in the history
…fusion protein
  • Loading branch information
vbrover committed May 28, 2022
1 parent c3d11ac commit 30f7689
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions amr_report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1844,11 +1844,12 @@ struct Batch
)
{
QC_ASSERT (blastAl->parts == prev->parts);
if (blastAl->parts < 2) // multi-domain tccP problem, PD-4217
QC_ASSERT (blastAl->part >= prev->part);
if (blastAl->part == prev->part) // multi-domain tccP problem, PD-4217
fusionMain = nullptr;
else
{
QC_ASSERT (blastAl->part > prev->part);
QC_ASSERT (blastAl->parts >= 2);
if (! fusionMain)
{
fusionMain = prev;
Expand Down
1 change: 1 addition & 0 deletions amrfinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* cat, tail
*
* Release changes:
* 3.10.30 05/28/2022 PD-4217
* 3.10.29 05/27/2022 PD-4217 multi-domain tccP BLASTP result is confused with a fusion protein
* 3.10.28 05/11/2022 PD-4169 CDSs are the same if CDS difference is shorter than 60 aa
* 3.10.27 05/06/2022 PD-4119 --database_version
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.29
3.10.30

0 comments on commit 30f7689

Please sign in to comment.