about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-09-10 17:40:12 -0500
committerFrederick Muriuki Muriithi2026-09-10 17:43:08 -0500
commite9f04440ca93268e75830e1670e0230a85cfde2e (patch)
tree251f412cb13d84d9bc00567810d119cf3d705538
parent2c61890e62a1db764755cd049242adadbb9d7be4 (diff)
downloadgn-uploader-e9f04440ca93268e75830e1670e0230a85cfde2e.tar.gz
Include centiMorgans. HEAD main
-rw-r--r--uploader/genotypes/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/genotypes/models.py b/uploader/genotypes/models.py
index 1e09cd3..75afabd 100644
--- a/uploader/genotypes/models.py
+++ b/uploader/genotypes/models.py
@@ -62,7 +62,7 @@ def genotype_markers(
             (species_id, population_id))
         _total_records = cursor.fetchone()["total_records"]
         cursor.execute(
-            _query_template.replace("%%COLS%%", "gno.*").replace(
+            _query_template.replace("%%COLS%%", "gno.*, gxr.cM").replace(
                 "%%LIMIT%%",
                 (f"LIMIT {int(limit)} OFFSET {int(offset)}"
                  if bool(limit) and limit >= 0