Skip to content

Commit

Permalink
add default annotation to Option fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Sep 12, 2023
1 parent 3456150 commit 8d9c132
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fqcv-lib/src/align/aligners/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ pub struct Options {
gap_extend: i32,
#[builder(default = "-10")]
default_jump_score: i32,
#[builder(default)]
jump_score_same_contig_and_strand: Option<i32>,
#[builder(default)]
jump_score_same_contig_opposite_strand: Option<i32>,
#[builder(default)]
jump_score_inter_contig: Option<i32>,
#[builder(default = "12")]
kmer_size: usize,
Expand Down

0 comments on commit 8d9c132

Please sign in to comment.