aboutsummaryrefslogtreecommitdiff
path: root/gn3/db/traits.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/db/traits.py')
-rw-r--r--gn3/db/traits.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/gn3/db/traits.py b/gn3/db/traits.py
index 3134d31..0cebe2c 100644
--- a/gn3/db/traits.py
+++ b/gn3/db/traits.py
@@ -34,6 +34,19 @@ class webqtlCaseData:
return _str
+def lookup_webqtldataset_name(riset_name: str, conn: Any):
+ """Given a group name(riset), return it's name e.g. BXDPublish,
+HLCPublish."""
+ with conn.cursor() as cursor:
+ cursor.execute(
+ "SELECT PublishFreeze.Name FROM "
+ "PublishFreeze, InbredSet WHERE "
+ "PublishFreeze.InbredSetId = InbredSet.Id "
+ "AND InbredSet.Name = '%s'" % riset_name)
+ _result, *_ = cursor.fetchone()
+ return _result
+
+
def get_riset(data_type: str, name: str, conn: Any):
query, _name, _id = None, None, None
if data_type == "Publish":