Skip to content

Commit

Permalink
Change default min unique node fraction to 0 to turn it off
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed May 22, 2024
1 parent 220e416 commit d3326dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/minimizer_mapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ class MinimizerMapper : public AlignerClient {
int wfa_max_distance = default_wfa_max_distance;

/// How much of an alignment needs to be from distinct nodes to be a distinct alignment?
static constexpr double default_min_unique_node_fraction = 0.5;
double min_unique_node_fraction = 0.5;
static constexpr double default_min_unique_node_fraction = 0.0;
double min_unique_node_fraction = default_min_unique_node_fraction;

/// If set, cap mapping quality based on minimizer layout in the read. Only
/// really likely to help for short reads.
Expand Down

1 comment on commit d3326dd

@adamnovak
Copy link
Member Author

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.

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

Failed tests:

  • test_sim_chr21_snp1kg (51 seconds)
  • test_full_brca2_cactus (35 seconds)
  • test_full_brca2_primary (31 seconds)
  • test_full_brca2_snp1kg (30 seconds)
  • test_map_brca1_cactus (30 seconds)
  • test_map_brca1_primary (29 seconds)
  • test_map_brca1_snp1kg (55 seconds)
  • test_map_brca1_snp1kg_mpmap (30 seconds)
  • test_map_mhc_primary (31 seconds)
  • test_map_mhc_snp1kg (33 seconds)
  • test_sim_mhc_cactus (26 seconds)
  • test_sim_mhc_snp1kg (30 seconds)
  • test_sim_mhc_snp1kg_mpmap (27 seconds)
  • test_call_chr21_snp1kg (28 seconds)
  • test_sim_chr21_snp1kg_trained (33 seconds)
  • test_sim_yeast_cactus (30 seconds)

Please sign in to comment.