about summary refs log tree commit diff
path: root/gn3/computations/rqtl.py
diff options
context:
space:
mode:
authorAlexander_Kabui2025-01-13 17:28:16 +0300
committerAlexander_Kabui2025-01-13 17:28:16 +0300
commit5d2aebb8c1e3af7751a7b23d3467c63006395c58 (patch)
tree42cdca0c63a5e3646a30a42f25b4eaeec8cca26e /gn3/computations/rqtl.py
parent09184dc294e974b579421117777480c21024a739 (diff)
downloadgenenetwork3-5d2aebb8c1e3af7751a7b23d3467c63006395c58.tar.gz
mypy fixes.
Diffstat (limited to 'gn3/computations/rqtl.py')
-rw-r--r--gn3/computations/rqtl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py
index 78c3a8a..c8a828d 100644
--- a/gn3/computations/rqtl.py
+++ b/gn3/computations/rqtl.py
@@ -133,7 +133,7 @@ def pairscan_for_figure(file_name: str) -> Dict:
     ) as the_file:
         chr_list = []  # type: List
         pos_list = []  # type: List
-        markers = []
+        markers = []   # type: List
         for i, line in enumerate(the_file):
             if i == 0:  # Skip first line
                 continue