about summary refs log tree commit diff
path: root/gn3
diff options
context:
space:
mode:
Diffstat (limited to 'gn3')
-rw-r--r--gn3/db/__init__.py0
-rw-r--r--gn3/db/traits.py31
2 files changed, 31 insertions, 0 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/gn3/db/__init__.py
diff --git a/gn3/db/traits.py b/gn3/db/traits.py
new file mode 100644
index 0000000..b0d1831
--- /dev/null
+++ b/gn3/db/traits.py
@@ -0,0 +1,31 @@
+"""This contains all the necessary functions that are required to add traits
+to the published database"""
+from collections import namedtuple
+from typing import Any
+
+
+riset = namedtuple('riset', ['name', 'id'])
+
+
+def get_riset(data_type: str, name: str, conn: Any):
+    query, _name, _id = None, None, None
+    if data_type == "Publish":
+        query = ("SELECT InbredSet.Name, InbredSet.Id FROM InbredSet, "
+                 "PublishFreeze WHERE PublishFreeze.InbredSetId = "
+                 "InbredSet.Id AND PublishFreeze.Name = '%s'" % name)
+    elif data_type == "Geno":
+        query = ("SELECT InbredSet.Name, InbredSet.Id FROM InbredSet, "
+                 "GenoFreeze WHERE GenoFreeze.InbredSetId = "
+                 "InbredSet.Id AND GenoFreeze.Name = '%s'" % name)
+    elif data_type == "ProbeSet":
+        query = ("SELECT InbredSet.Name, InbredSet.Id FROM "
+                 "InbredSet, ProbeSetFreeze, ProbeFreeze WHERE "
+                 "ProbeFreeze.InbredSetId = InbredSet.Id AND "
+                 "ProbeFreeze.Id = ProbeSetFreeze.ProbeFreezeId AND "
+                 "ProbeSetFreeze.Name = '%s'" % name)
+    if query:
+        with conn.cursor() as cursor:
+            _name, _id = cursor.fetchone()
+            if _name == "BXD300":
+                _name = "BXD"
+    return riset(_name, _id)