about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGN22024-03-11 21:52:03 +0000
committerPjotr Prins2024-03-14 16:31:48 -0500
commitca89d146ba91b44bbd69944e05684e2b9814fd0a (patch)
tree69de377bb408265ac1d58258adb376eaf3542ad7
parent9583c7d21bd01f4b838a7281710952d3812223fe (diff)
downloadgenenetwork2-ca89d146ba91b44bbd69944e05684e2b9814fd0a.tar.gz
Disable CaseAttributeId - because it needs an update to the database
and it is not clear why. @bonfacem.
-rw-r--r--gn2/wqflask/show_trait/SampleList.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gn2/wqflask/show_trait/SampleList.py b/gn2/wqflask/show_trait/SampleList.py
index 64fc8fe6..111537c1 100644
--- a/gn2/wqflask/show_trait/SampleList.py
+++ b/gn2/wqflask/show_trait/SampleList.py
@@ -125,13 +125,13 @@ class SampleList:
         # Get attribute names and distinct values for each attribute
         with database_connection(get_setting("SQL_URI")) as conn, conn.cursor() as cursor:
             cursor.execute(
-                "SELECT DISTINCT CaseAttribute.CaseAttributeId, "
+                "SELECT DISTINCT CaseAttribute.Id, "
                 "CaseAttribute.Name, CaseAttribute.Description, "
                 "CaseAttributeXRefNew.Value FROM "
                 "CaseAttribute, CaseAttributeXRefNew WHERE "
-                "CaseAttributeXRefNew.CaseAttributeId = CaseAttribute.CaseAttributeId "
+                "CaseAttributeXRefNew.CaseAttributeId = CaseAttribute.Id "
                 "AND CaseAttributeXRefNew.InbredSetId = %s "
-                "ORDER BY CaseAttribute.CaseAttributeId", (str(self.dataset.group.id),)
+                "ORDER BY CaseAttribute.Id", (str(self.dataset.group.id),)
             )
 
             self.attributes = {}