aboutsummaryrefslogtreecommitdiff
path: root/gn3
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-10-26 08:59:30 +0300
committerBonfaceKilz2021-11-04 12:45:57 +0300
commit42dee16ec8a7d7620367dd31481999bfca9313db (patch)
treedffb6f2486da9e437b8ab7253b6516c12e4e2bd1 /gn3
parent8169d8aacd8598730fd2e6eba06052e7502f2cc1 (diff)
downloadgenenetwork3-42dee16ec8a7d7620367dd31481999bfca9313db.tar.gz
Implement `fetch_gene_symbol_tissue_value_dict_for_trait`
Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi * Implement `fetch_gene_symbol_tissue_value_dict_for_trait` function which is a migration of the `web.webqtl.correlation.correlationFunction.getGeneSymbolTissueValueDictForTrait` function in GeneNetwork1.
Diffstat (limited to 'gn3')
-rw-r--r--gn3/db/correlations.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/gn3/db/correlations.py b/gn3/db/correlations.py
index 87ab082..cae8080 100644
--- a/gn3/db/correlations.py
+++ b/gn3/db/correlations.py
@@ -266,7 +266,22 @@ def fetch_tissue_probeset_xref_info(
(tuple(), {}, {}, {}, {}, {}, {}))
def correlations_of_all_tissue_traits() -> Tuple[dict, dict]:
+def fetch_gene_symbol_tissue_value_dict_for_trait(
+ gene_name_list: Tuple[str, ...], probeset_freeze_id: int,
+ conn: Any) -> dict:
+ """
+ Fetches a map of the gene symbols to the tissue values.
+
+ This is a migration of the
+ `web.webqtl.correlation.correlationFunction.getGeneSymbolTissueValueDictForTrait`
+ function in GeneNetwork1.
"""
+ xref_info = fetch_tissue_probeset_xref_info(
+ gene_name_list, probeset_freeze_id, conn)
+ if xref_info[0]:
+ return fetch_gene_symbol_tissue_value_dict(xref_info[0], xref_info[2], conn)
+ return {}
+
This is a migration of the
`web.webqtl.correlation.CorrelationPage.calculateCorrOfAllTissueTrait`
function in GeneNetwork1.