Skip to content

Commit

Permalink
Bump max-dp-cells back up
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Sep 24, 2024
1 parent 062ba7a commit 839e934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subcommand/giraffe_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ int main_giraffe(int argc, char** argv) {
.add_entry<size_t>("max-chain-connection", 233)
.add_entry<size_t>("max-tail-length", 68)
.add_entry<size_t>("max-tail-gap", 150)
.add_entry<size_t>("max-dp-cells", 640000)
.add_entry<size_t>("max-dp-cells", 10000000)
.add_entry<int>("wfa-distance", 33)
.add_entry<double>("wfa-distance-per-base", 0.195722)
.add_entry<int>("wfa-max-distance", 240)
Expand Down Expand Up @@ -986,7 +986,7 @@ int main_giraffe(int argc, char** argv) {
.add_entry<size_t>("max-chain-connection", 233)
.add_entry<size_t>("max-tail-length", 68)
.add_entry<size_t>("max-tail-gap", 150)
.add_entry<size_t>("max-dp-cells", 640000)
.add_entry<size_t>("max-dp-cells", 10000000)
.add_entry<int>("wfa-distance", 33)
.add_entry<double>("wfa-distance-per-base", 0.195722)
.add_entry<int>("wfa-max-distance", 240)
Expand Down

1 comment on commit 839e934

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch lr-giraffe. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17266 seconds

Please sign in to comment.