Version: Beta-4.1.1-r5927-b91

OmeroBlitz Api
Home Previous Up Next Index

omero::grid::Table

Overview

[ "ami" ] interface Table

Operation Index

getOriginalFile
getHeaders
Returns empty columns.
getNumberOfRows
getWhereList
http://www.pytables.org/docs/manual/apb.html Leave all three of start, stop, step to 0 to disable.
readCoordinates
read
http://www.pytables.org/docs/manual/ch04.html#Table.read
slice
Simple slice method which will return only the given columns and rows.
addData
getAllMetadata
getMetadata
setAllMetadata
setMetadata
initialize
Initializes the structure based on
addColumn
Adds a column and returns the position index of the new column.
delete
close

Operations

model::OriginalFile getOriginalFile() throws ServerError

ColumnArray getHeaders() throws ServerError

Returns empty columns.

long getNumberOfRows() throws ServerError

api::LongArray getWhereList(string condition, RTypeDict variables, long start, long stop, long step) throws ServerError

http://www.pytables.org/docs/manual/apb.html Leave all three of start, stop, step to 0 to disable. TODO:Test effect of returning a billion rows matching getWhereList()

Data readCoordinates(api::LongArray rowNumbers) throws ServerError

Data read(api::LongArray colNumbers, long start, long stop) throws ServerError

http://www.pytables.org/docs/manual/ch04.html#Table.read

Data slice(api::LongArray colNumbers, api::LongArray rowNumbers) throws ServerError

Simple slice method which will return only the given columns and rows. If colNumbers or rowNumbers is empty (or None), then all values will be returned.

void addData(ColumnArray cols) throws ServerError

RTypeDict getAllMetadata() throws ServerError

RType getMetadata(string key) throws ServerError

void setAllMetadata(RTypeDict dict) throws ServerError

void setMetadata(string key, RType value) throws ServerError

void initialize(ColumnArray cols) throws ServerError

Initializes the structure based on

int addColumn(Column col) throws ServerError

Adds a column and returns the position index of the new column.

void delete() throws ServerError

void close() throws ServerError


Home Previous Up Next Index