Skip to content

Commit e82f1e4

Browse files
committed
fix: min_intron_length_ initialization in JunctionsExtractor
- fixes griffithlab#188, min_intron_length_ was accidentaly set from min_anchor_len_
1 parent fb6098d commit e82f1e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/junctions/junctions_extractor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class JunctionsExtractor {
221221
strandness_(strandness1),
222222
strand_tag_(strand_tag1),
223223
min_anchor_length_(min_anchor_length1),
224-
min_intron_length_(min_anchor_length1),
224+
min_intron_length_(min_intron_length1),
225225
max_intron_length_(max_intron_length1),
226226
filter_flags_(filter_flags),
227227
require_flags_(require_flags),

0 commit comments

Comments
 (0)