diff options
author | Frederick Muriuki Muriithi | 2024-01-17 05:38:29 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-01-17 05:39:10 +0300 |
commit | bf1c2ec1b16b50f419a349a54031baf85fcd4abd (patch) | |
tree | 3cd3bfdce0430f657457986becce7483a7172c16 /qc_app/db/datasets.py | |
parent | 4e3f6e51b92d9c56f77452bd4b723323a526bc52 (diff) | |
download | gn-uploader-bf1c2ec1b16b50f419a349a54031baf85fcd4abd.tar.gz |
UI: Initialise summary page.
Diffstat (limited to 'qc_app/db/datasets.py')
-rw-r--r-- | qc_app/db/datasets.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qc_app/db/datasets.py b/qc_app/db/datasets.py index 3a27706..8122cfa 100644 --- a/qc_app/db/datasets.py +++ b/qc_app/db/datasets.py @@ -14,3 +14,10 @@ def geno_dataset_by_species_and_population( "WHERE iset.SpeciesId=%(sid)s AND iset.InbredSetId=%(pid)s", {"sid": speciesid, "pid": populationid}) return tuple(dict(row) for row in cursor.fetchall()) + +def geno_dataset_by_id(conn: mdb.Connection, dataset_id: int) -> dict: + """Retrieve genotype dataset by ID""" + with conn.cursor(cursorclass=DictCursor) as cursor: + cursor.execute("SELECT * FROM GenoFreeze WHERE Id=%s", + (dataset_id,)) + return dict(cursor.fetchone()) |