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

Tables slice documentation #2456

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion omero/developers/Tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Main methods

Read a subset of columns and consecutive rows from a table.

:param long[] colNumber: A list of column indices to be retrieved
:param long[] colNumbers: A list of column indices to be retrieved
from the table (may be non-consecutive).
:param long start: The index of the first row to retrieve.
:param long stop: The index of the `last+1` row to retrieve (uses
Expand Down Expand Up @@ -241,8 +241,10 @@ Main methods

:param long[] colNumbers: A list of column indices to be retrieved.
The results will be returned in the same order as these indices.
If empty or null, all columns will be returned.
:param long[] rowNumbers: A list of row indices to be retrieved.
The results will be returned in the same order as these indices.
If empty or null, all rows will be returned.

:return: The requested columns and rows as a
:class:`~omero.grid.Data` object.
Expand Down