From 452850a8790c534bd472e89a521faae2cbaeaebc Mon Sep 17 00:00:00 2001 From: Maxime U Garcia Date: Wed, 9 Oct 2024 18:23:41 +0200 Subject: [PATCH] Apply suggestions from code review --- subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf b/subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf index c384222be..2aa411a68 100644 --- a/subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf +++ b/subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf @@ -628,8 +628,8 @@ def getInferexperimentStrandedness(inferexperiment_file, stranded_threshold = 0. if (pe_antisense_matcher) reverseFragments = pe_antisense_matcher[0][1].toFloat() * 100 } - return calculateStrandedness(forwardFragments, reverseFragments, unstrandedFragments, stranded_threshold, unstranded_threshold) // Use shared calculation function to determine strandedness + return calculateStrandedness(forwardFragments, reverseFragments, unstrandedFragments, stranded_threshold, unstranded_threshold) } //