Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-10 | Fix dataset retrieval query for `Geno` traits | Frederick Muriuki Muriithi | |
Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi | |||
2022-01-10 | Surround statement with parens for readability | Frederick Muriuki Muriithi | |
2022-01-10 | Convert keys to string | Frederick Muriuki Muriithi | |
* Some traits have a name composed of all numerals, which leads to the names being interpreted as numbers. This commit forces them to string to avoid subtle bugs where the code fails. | |||
2022-01-10 | Fix error in query: Replace '=' with 'IN' | Frederick Muriuki Muriithi | |
2022-01-10 | Rework database functions to fetch multiple items | Frederick Muriuki Muriithi | |
Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi * In an attempt to optimise the performance of the partial correlations feature, this commit reworks some database access functions to fetch multiple items from the database, per query, unlike their original forms which would fetch a single item per query. This reduces queries to the database, and should hopefully improve the responsiveness of the partial correlations feature. |