aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/search_results.py
AgeCommit message (Expand)Author
2024-08-28Add Wiki and RIF search terms to Xapian normal searchzsloan
2024-08-28Include trait and dataset name in hmac passed to search results page for non-......Previously it only had the hmac, which caused adding to a collection to not work for such searches zsloan
2024-08-28Put SQL search code into function, and default to that function if the Xapian...zsloan
2024-08-28Automatically decide whether to use Xapian or SQL (uses Xapian if possible) +......Change logic so that SQL is used for non-term Publish searches, since searches for phenotype trait IDs currently don't work in Xapian zsloan
2024-08-28Increase MAX_SEARCH_RESULTS to 50000zsloan
2024-08-28Fix LRS/LOD Xapian searches when there are 5 terms (where position range is i...zsloan
2024-08-28Fix some issues with handling Xapian search output...- Description trimming is now handled in the python code - HMAC generation function is changed to be the same as the one used by global search - Search terms that currently don't support Xapian searches are now 'routed' to the SQL search zsloan
2024-08-28Create trait objects from Xapian search results to pass to DataTables...This means the result table should be displayed now. The only issue is that this involves a significant amount of duplicated code from gsearch.py; I'm not sure how best to avoid this, but this is okay for now. zsloan
2024-08-28Raise ValueError if dataset type isn't ProbeSet/Publish/Genozsloan
2024-08-28Add doctstrings for new functions in search_results.py...Replace dataset name with fullname (this will need to be changed back when the Xapian indexing is rerun) zsloan
2024-08-28Begin adding Xapian queries for the non-global search and submit request to GN3...Still need to handle the output and address a bug that is also affecting the global search zsloan
2024-08-28Add separate button for Xapian search...This will be temporary in the longer run, but can stay until all functionality is reproduced. zsloan
2023-12-29Namespace all modules under gn2....We move all modules under a gn2 directory. This is important for "correct" packaging and deployment as a Guix service. Arun Isaac