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

[python] Fix wrong parameters in ExperimentDataPipe #1178

Merged
merged 1 commit into from
Jun 5, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ class ExperimentDataPipe(pipes.IterDataPipe[Dataset[ObsAndXDatum]]): # type: ig
def __init__(
self,
experiment: soma.Experiment,
measurement_name: str = "raw",
X_name: str = "X",
measurement_name: str = "RNA",
X_name: str = "raw",
obs_query: Optional[soma.AxisQuery] = None,
var_query: Optional[soma.AxisQuery] = None,
obs_column_names: Sequence[str] = (),
Expand All @@ -400,9 +400,9 @@ def __init__(
experiment:
The :class:`tiledbsoma.Experiment` from which to read data.
measurement_name:
The name of the :class:`tiledbsoma.Measurement` to read. Defaults to ``"raw"``.
The name of the :class:`tiledbsoma.Measurement` to read. Defaults to ``"RNA"``.
X_name:
The name of the X layer to read. Defaults to ``"X"``.
The name of the X layer to read. Defaults to ``"raw"``.
obs_query:
The query used to filter along the ``obs`` axis. If not specified, all ``obs`` and ``X`` data will
be returned, which can be very large.
Expand Down
Loading