Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docstring typo fixes #241

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python-spec/src/somacore/measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Measurement(
soma_type: Final = "SOMAMeasurement" # type: ignore[misc]

var = _mixin.item[_DF]()
"""Primary annotations on the variable axis for vars on this meansurement.
"""Primary annotations on the variable axis for vars on this measurement.

This annotates _columns_ of the ``X`` arrays. The contents of the
``soma_joinid`` pseudo-column define the variable index domain (``varid``)
Expand All @@ -83,7 +83,7 @@ class Measurement(
"""

obsp = _mixin.item[_SparseNDColl]()
"""Matrices containg pairwise annotations of each ``obs`` row.
"""Matrices containing pairwise annotations of each ``obs`` row.

This is indexed by ``[obsid_1, obsid_2]``.
"""
Expand All @@ -95,7 +95,7 @@ class Measurement(
"""

varp = _mixin.item[_SparseNDColl]()
"""Matrices containg pairwise annotations of each ``var`` row.
"""Matrices containing pairwise annotations of each ``var`` row.

This is indexed by ``[varid_1, varid_2]``.
"""
Expand Down
2 changes: 1 addition & 1 deletion python-spec/src/somacore/query/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def to_anndata(
drop_levels:
Indicate whether unused categories on axis frames should be
dropped. By default, False, the categories which are present
in the SOMA Experimentand not present in the query output
in the SOMA Experiment and not present in the query output
are not dropped.

Lifecycle: maturing
Expand Down
Loading