Skip to content

Commit

Permalink
merge develop -Dorg -Ssuccess-only: PR 2441 (Add documentation for om…
Browse files Browse the repository at this point in the history
  • Loading branch information
snoopycrimecop committed Jul 17, 2024
2 parents 9a07a5a + 906d1b5 commit e335cff
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion omero/developers/Tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,22 @@ Main methods
the table.
:return: The requested rows as a :class:`~omero.grid.Data` object.

.. note:: If you do not need the row numbers that match your read
returned in the :class:`~omero.grid.Data` object you can set
`omero.tables.include_row_numbers` to `false` in the Ice
context passed when you make the call.

For example:

::

readCoordinates(
[0], # rowNumbers
{
"omero.tables.include_row_numbers": "false"
}
)

.. method:: read(colNumbers, start, stop)

Read a subset of columns and consecutive rows from a table.
Expand All @@ -199,7 +215,24 @@ Main methods

.. note:: `start=0, stop=0` currently returns the first row instead
of empty as would be expected using the normal Python range
semantics. This may change in future.
semantics. This may change in future. If you do not need the
row numbers that match your read returned in the
:class:`~omero.grid.Data` object you can set
`omero.tables.include_row_numbers` to `false` in the Ice
context passed when you make the call.

For example:

::

read(
[0], # colNumbers
0, # start
2, # stop
{
"omero.tables.include_row_numbers": "false"
}
)

.. method:: slice(colNumbers, rowNumbers)

Expand All @@ -214,6 +247,23 @@ Main methods
:return: The requested columns and rows as a
:class:`~omero.grid.Data` object.

.. note:: If you do not need the row numbers that match your read
returned in the :class:`~omero.grid.Data` object you can set
`omero.tables.include_row_numbers` to `false` in the Ice
context passed when you make the call.

For example:

::

slice(
[0], # colNumbers
[0, 1], # rowNumbers
{
"omero.tables.include_row_numbers": "false"
}
)

.. method:: getWhereList(condition, variables, start, stop, step)

Run a query on a table, see :ref:`tables-query-language`.
Expand Down

0 comments on commit e335cff

Please sign in to comment.