From 0c9885d22ff89b5529757b30f83143396ca43e5e Mon Sep 17 00:00:00 2001 From: Alexander_Kabui Date: Fri, 13 Dec 2024 15:31:57 +0300 Subject: fix: Fix unused variables pylint. --- gn3/computations/rqtl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn3/computations/rqtl.py') diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py index 74a8f05..9e39c3f 100644 --- a/gn3/computations/rqtl.py +++ b/gn3/computations/rqtl.py @@ -321,7 +321,7 @@ def process_perm_output(file_name: str) -> Tuple[List, float, float]: # Skip header line continue - snp, chromosome, position, lod_score = line.split(",") + _snp, _chromosome, _position, lod_score = line.split(",") perm_results.append(float(lod_score)) suggestive = np.percentile(np.array(perm_results), 67) -- cgit 1.4.1