-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix problems with ancestry aggregation & scaling on biobank-data (#19)
* Don't perform ancestry adjustments/keep AVG columns. * Edit expected column list * Bump versions (calc=0.2.0;utils=1.1.0) * simplify polygenicscore class (remove batches until we run into problems) * Fix pgscatalog.match performance regression (#22) * drop pyarrow support, it doesn't scale well, and be more consistent about public path properties * refactor to use polars for reading and writing IPC files to improve scalability * fix map_elements deprecation warning * update lockfiles * fix weird path -> is_path refactor that broke this test * missed one >_> * fix pyproject * update dockerfile * fix exception handling when one score fails matching * fix merging scoring files with different column sets * set pgscatalog package logging levels to INFO * Improve aggregation (#23) * export key functions for sorting chromosomes / effect types * use new key functions for sorting * reduce memory usage during aggregation * fix doctest output * make aggregation steps clearer * bump minor version of pgscatalog.core * minor version bump pgscatalog.match --------- Co-authored-by: Benjamin Wingfield <bwingfield@ebi.ac.uk>
- Loading branch information
Showing
32 changed files
with
1,134 additions
and
1,112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
"AdjustResults", | ||
] | ||
|
||
__version__ = "0.1.1" | ||
__version__ = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
from .aggregate_cli import run_aggregate | ||
|
||
__all__ = ["run_aggregate"] | ||
__all__ = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.