Skip to content

Commit

Permalink
Update to version 0.17.1 and fix E-value format
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Feb 13, 2024
1 parent 69fac6f commit a365a8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
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.17.0 LANGUAGES C)
project(deciphon VERSION 0.17.1 LANGUAGES C)

include(cmake/warnings.cmake)
include(cmake/sanitizers.cmake)
Expand Down
7 changes: 3 additions & 4 deletions c-core/hmmer.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ int hmmer_get(struct hmmer *x, int hmmidx, char const *name, char const *seq)
snprintf(cmd, sizeof(cmd), "--hmmdb 1 --hmmdb_range %d..%d --acc --cut_ga",
hmmidx, hmmidx);
else
snprintf(
cmd, sizeof(cmd),
"--hmmdb 1 --hmmdb_range %d..%d --acc --incdomE e10-5 --incE e10-5",
hmmidx, hmmidx);
snprintf(cmd, sizeof(cmd),
"--hmmdb 1 --hmmdb_range %d..%d --acc --incdomE 1e-5 --incE 1e-5",
hmmidx, hmmidx);

for (int i = 0; i < NUM_RETRIES; ++i)
{
Expand Down

0 comments on commit a365a8a

Please sign in to comment.