Skip to content

Commit

Permalink
fix: min_intron_length_ initialization in JunctionsExtractor
Browse files Browse the repository at this point in the history
 - fixes griffithlab#188, min_intron_length_ was accidentaly set from min_anchor_len_
  • Loading branch information
TimD1 committed Jul 1, 2024
1 parent fb6098d commit e82f1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/junctions/junctions_extractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class JunctionsExtractor {
strandness_(strandness1),
strand_tag_(strand_tag1),
min_anchor_length_(min_anchor_length1),
min_intron_length_(min_anchor_length1),
min_intron_length_(min_intron_length1),
max_intron_length_(max_intron_length1),
filter_flags_(filter_flags),
require_flags_(require_flags),
Expand Down

0 comments on commit e82f1e4

Please sign in to comment.