diff options
| author | Alexander_Kabui | 2024-12-13 15:31:57 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2024-12-13 15:31:57 +0300 |
| commit | 0c9885d22ff89b5529757b30f83143396ca43e5e (patch) | |
| tree | 49d65dc9707a24e84c21021799241ed0f6596470 | |
| parent | 4d6f612ca9b8625a7c872a5d35287eb4932336a0 (diff) | |
| download | genenetwork3-0c9885d22ff89b5529757b30f83143396ca43e5e.tar.gz | |
fix: Fix unused variables pylint.
| -rw-r--r-- | gn3/computations/rqtl.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
