Skip to content

Commit

Permalink
Update deciphon project version to 0.13.3 and add a condition to skip…
Browse files Browse the repository at this point in the history
… processing if evalue is 1.0
  • Loading branch information
horta committed Oct 31, 2023
1 parent 7ee0424 commit 76b8b21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion c-core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20.2 FATAL_ERROR)
project(deciphon VERSION 0.13.2 LANGUAGES C)
project(deciphon VERSION 0.13.3 LANGUAGES C)

include(cmake/warnings.cmake)
include(cmake/sanitizers.cmake)
Expand Down
1 change: 1 addition & 0 deletions c-core/thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ static int process_window(struct thread *x, int protein_idx,
if ((rc = hmmer_stage(&x->protein, x->product, &x->hmmer, &x->amino, seq,
protein_idx, &x->path)))
return rc;
if (x->product->line.evalue == 1.0) return rc;
}

struct match match = match_init(&x->protein);
Expand Down

0 comments on commit 76b8b21

Please sign in to comment.