diff options
author | Munyoki Kilyungi | 2024-05-29 17:10:39 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-06-01 23:57:00 +0300 |
commit | a85cc6496c4656a53db13d52152ee37278869e11 (patch) | |
tree | a20495fd60b8158070887eae6a7d171f01381911 /scripts | |
parent | 7dafd141a8f3061412c9a1a86e6905c2fbde2a00 (diff) | |
download | genenetwork3-a85cc6496c4656a53db13d52152ee37278869e11.tar.gz |
Add geneRIF to gene index.
* scripts/index-genenetwork: Import Template, lru_cache,
SPARQLWrapper, JSON
(get_rif_metadata): New function.
(index_rif_comments): New function.
(index_genes): Add rif comments to probeset index.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/index-genenetwork | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/scripts/index-genenetwork b/scripts/index-genenetwork index 1f649cf..e7390fa 100755 --- a/scripts/index-genenetwork +++ b/scripts/index-genenetwork @@ -8,14 +8,15 @@ xapian index. This xapian index is later used in providing search through the web interface. """ - +from string import Template from collections import deque, namedtuple import contextlib -from functools import partial +from functools import partial, lru_cache import itertools import json import logging from multiprocessing import Lock, Process +from string import Template import os import pathlib import resource @@ -23,6 +24,7 @@ import shutil import sys import tempfile from typing import Callable, Generator, Iterable, List +from SPARQLWrapper import SPARQLWrapper, JSON import MySQLdb import click @@ -168,6 +170,38 @@ def locked_xapian_writable_database(path: pathlib.Path) -> xapian.WritableDataba db.close() +@curry(2) +@lru_cache(maxsize=1_000) +def get_rif_metadata(symbol, species): + sparql = SPARQLWrapper( + "http://localhost:8982/sparql" + ) + sparql.setReturnFormat(JSON) + query = Template(""" +PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> +PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> +PREFIX gnt: <http://genenetwork.org/term/> +PREFIX skos: <http://www.w3.org/2004/02/skos/core#> +PREFIX gnc: <http://genenetwork.org/category/> +PREFIX gn: <http://genenetwork.org/id/> +PREFIX dct: <http://purl.org/dc/terms/> +PREFIX xkos: <http://rdf-vocabulary.ddialliance.org/xkos#> + +SELECT DISTINCT ?comment WHERE { + ?symbol rdfs:comment _:node ; + rdfs:label '$symbol' . +_:node rdf:type gnc:GNWikiEntry ; + gnt:belongsToSpecies ?species ; + rdfs:comment ?comment . +?species gnt:shortName '$species' . +} +""") + sparql.setQuery(query.substitute(symbol=symbol, + species=species)) + results = sparql.queryAndConvert()["results"]["bindings"] + return results + + # pylint: disable=invalid-name def write_document(db: xapian.WritableDatabase, identifier: str, doctype: str, doc: xapian.Document) -> None: @@ -189,6 +223,9 @@ def index_text(text: str) -> None: # pylint: disable=unnecessary-lambda index_text_without_positions = lambda text: termgenerator.index_text_without_positions(text) +def index_rif_comments(entries): + for entry in entries: + termgenerator.index_text(entry["comment"]["value"], 0, "XRF") index_authors = lambda authors: termgenerator.index_text(authors, 0, "A") index_species = lambda species: termgenerator.index_text_without_positions(species, 0, "XS") @@ -247,6 +284,9 @@ def index_genes(xapian_build_directory: pathlib.Path, chunk_index: int) -> None: trait["chr"].bind(index_chr) trait["geno_chr"].bind(index_peakchr) + # Index generif entries + Maybe.apply(get_rif_metadata).to_arguments(trait["symbol"], trait["species"]).bind(index_rif_comments) + doc.set_data(json.dumps(trait.data)) (Maybe.apply(curry(2, lambda name, dataset: f"{name}:{dataset}")) .to_arguments(trait["name"], trait["dataset"]) |