-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import implementation of
ExperimentAxisQuery
. (#78)
As discussed in #76, the full implementation of `ExperientAxisQuery` should be provided by the base SOMA implementation since it does not vary from storage engine to storage engine. This copies most of the implementation from the existing TileDB version, with some reorganization to make the main query class a little smaller: - Pulls more of the caching-specific behavior of join IDs into the `_JoinIDCache` class. - Pulls more indexing-related work into the `_AxisIndexer` class. - Makes formerly-public `AxisIndexer` private. (If this should be public this can be easily reverted.) - Renames methods to `by_[axis]`. - Separates out index caching logic from main methods. - Uses an `_Axis` enum internally for axis selection. - Shortens `AxisQueryResult` name. - Make `_read` and `_AxisQueryResult` internal-only.
- Loading branch information
1 parent
e935e28
commit 9b8591a
Showing
9 changed files
with
551 additions
and
40 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
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,4 +1,13 @@ | ||
anndata==0.8.0 | ||
attrs==22.2.0 | ||
h5py==3.7.0 | ||
natsort==8.2.0 | ||
numpy==1.24.1 | ||
packaging==23.0 | ||
pandas==1.5.2 | ||
pyarrow==10.0.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
scipy==1.10.0 | ||
six==1.16.0 | ||
typing_extensions==4.4.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,8 +1,19 @@ | ||
anndata==0.8.0 | ||
attrs==22.2.0 | ||
h5py==3.7.0 | ||
importlib-metadata==6.0.0 | ||
mypy==0.991 | ||
mypy-extensions==0.4.3 | ||
natsort==8.2.0 | ||
numpy==1.21.6 | ||
packaging==23.0 | ||
pandas==1.3.5 | ||
pyarrow==10.0.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
scipy==1.7.3 | ||
six==1.16.0 | ||
tomli==2.0.1 | ||
typed-ast==1.5.4 | ||
typing_extensions==4.4.0 | ||
zipp==3.11.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,4 +1,15 @@ | ||
anndata==0.8.0 | ||
attrs==22.2.0 | ||
h5py==3.7.0 | ||
importlib-metadata==6.0.0 | ||
natsort==8.2.0 | ||
numpy==1.21.6 | ||
packaging==23.0 | ||
pandas==1.3.5 | ||
pyarrow==10.0.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
scipy==1.7.3 | ||
six==1.16.0 | ||
typing_extensions==4.4.0 | ||
zipp==3.11.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,4 +1,13 @@ | ||
anndata==0.8.0 | ||
attrs==22.2.0 | ||
h5py==3.7.0 | ||
natsort==8.2.0 | ||
numpy==1.24.1 | ||
packaging==23.0 | ||
pandas==1.5.2 | ||
pyarrow==10.0.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
scipy==1.10.0 | ||
six==1.16.0 | ||
typing_extensions==4.4.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,4 +1,13 @@ | ||
anndata==0.8.0 | ||
attrs==22.2.0 | ||
h5py==3.7.0 | ||
natsort==8.2.0 | ||
numpy==1.24.1 | ||
packaging==23.0 | ||
pandas==1.5.2 | ||
pyarrow==10.0.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
scipy==1.10.0 | ||
six==1.16.0 | ||
typing_extensions==4.4.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
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.