about summary refs log tree commit diff
path: root/uploader
diff options
context:
space:
mode:
Diffstat (limited to 'uploader')
-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