From e82f1e4579467cf34a00347420954e06804c5a9c Mon Sep 17 00:00:00 2001 From: Tim Dunn Date: Mon, 1 Jul 2024 12:32:23 +0000 Subject: [PATCH] fix: min_intron_length_ initialization in JunctionsExtractor - fixes #188, min_intron_length_ was accidentaly set from min_anchor_len_ --- src/junctions/junctions_extractor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/junctions/junctions_extractor.h b/src/junctions/junctions_extractor.h index ff2322d..a1c3652 100644 --- a/src/junctions/junctions_extractor.h +++ b/src/junctions/junctions_extractor.h @@ -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),