about summary refs log tree commit diff
path: root/gn3/db
diff options
context:
space:
mode:
authorBonfaceKilz2022-04-06 15:53:18 +0300
committerBonfaceKilz2022-04-07 11:54:28 +0300
commita7b7cdd1a5f1a9d071c5fd11c6f1fefa5302a838 (patch)
tree9bbbc43c05d55afcd8961a666ec4b7b936bf5de9 /gn3/db
parent9e905e596f2b1b17ad78a86fff01aafe1cc8b108 (diff)
downloadgenenetwork3-a7b7cdd1a5f1a9d071c5fd11c6f1fefa5302a838.tar.gz
Use case attribute id inside brackets if present during updates
* gn3/db/sample_data.py: Import "parse_csv_column".
(update_sample_data): If an id is present in the column header, use it.
* tests/unit/db/test_sample_data.py (test_update_sample_data): Update tests to
capture the above.
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/sample_data.py32
1 files changed, 22 insertions, 10 deletions
diff --git a/gn3/db/sample_data.py b/gn3/db/sample_data.py
index d7ea9d3..47be5b0 100644
--- a/gn3/db/sample_data.py
+++ b/gn3/db/sample_data.py
@@ -5,6 +5,7 @@ import collections
 import MySQLdb
 
 from gn3.csvcmp import extract_strain_name
+from gn3.csvcmp import parse_csv_column
 
 
 _MAP = {
@@ -169,16 +170,26 @@ def update_sample_data(
         conn, value, strain_id, case_attr, inbredset_id
     ):
         if value != "x":
+            (id_, name) = parse_csv_column(case_attr)
             with conn.cursor() as cursor:
-                cursor.execute(
-                    "UPDATE CaseAttributeXRefNew "
-                    "SET Value = %s "
-                    "WHERE StrainId = %s AND CaseAttributeId = "
-                    "(SELECT CaseAttributeId FROM "
-                    "CaseAttribute WHERE Name = %s) "
-                    "AND InbredSetId = %s",
-                    (value, strain_id, case_attr, inbredset_id),
-                )
+                if id_:
+                    cursor.execute(
+                        "UPDATE CaseAttributeXRefNew "
+                        "SET Value = %s "
+                        f"WHERE StrainId = %s AND CaseAttributeId = %s "
+                        "AND InbredSetId = %s",
+                        (value, strain_id, id_, inbredset_id),
+                    )
+                else:
+                    cursor.execute(
+                        "UPDATE CaseAttributeXRefNew "
+                        "SET Value = %s "
+                        "WHERE StrainId = %s AND CaseAttributeId = "
+                        "(SELECT CaseAttributeId FROM "
+                        "CaseAttribute WHERE Name = %s) "
+                        "AND InbredSetId = %s",
+                        (value, strain_id, name, inbredset_id),
+                    )
                 return cursor.rowcount
         return 0
 
@@ -202,6 +213,7 @@ def update_sample_data(
             updated_data=updated_data,
             csv_header=csv_header,
         )
+
         if __actions.get("update"):
             _csv_header = __actions["update"]["csv_header"]
             _data = __actions["update"]["data"]
@@ -214,7 +226,7 @@ def update_sample_data(
                 else:
                     count += __update_case_attribute(
                         conn=conn,
-                        value=none_case_attrs[header](value),
+                        value=value,
                         strain_id=strain_id,
                         case_attr=header,
                         inbredset_id=inbredset_id,