Uses of Class
biggests.tables.TableValues

Packages that use TableValues
biggests.gui   
biggests.tables   
 

Uses of TableValues in biggests.gui
 

Methods in biggests.gui that return TableValues
 TableValues[] PanelAnalyzingMatrixTables.getTables()
          Returns the array which contains the tables to be displayed (may contain TableValuess, TableColorss and TableSymbolss, depending on the tableType).
 

Uses of TableValues in biggests.tables
 

Subclasses of TableValues in biggests.tables
 class TableColors
          Title: Colors Table Description: Defines a table of colors with the following data:
- header -> conditions' names (more widely, Strings)
- first column -> genes' names (more widely, Strings)
- all other columns' cells -> gene expression values (more widely, float values) A table of colors has a vertical text header and each of its cells is colored according to the float value that holds in it.
 class TableColorsWithMissingValues
          Title: Table of colors with missing values Description: Defines a table of colors with the following data:
- header -> conditions' names (more widely, Strings)
- first column -> genes' names (more widely, Strings)
- all other columns' cells -> gene expression values (more widely, float values) A table of colors has a vertical text header and each of its cells is colored according to the float value it holds.
 class TableSymbols
          Title: Table of Symbols Description: Defines a table of symbols with the following data:
- header -> conditions' names (more widely, Strings)
- first column -> genes' names (more widely, Strings)
- all other columns' cells -> gene expression symbols (more widely, characters) A table of symbols has a vertical text header and each of its cells is colored according to the symbol that holds in it.
 class TableSymbolsWithMissingValues
          Title: Table of Symbols with Missing Values Description: Defines a table of symbols with the following data:
- header -> conditions' names (more widely, Strings)
- first column -> genes' names (more widely, Strings)
- all other columns' cells -> gene expression symbols (more widely, characters) A table of symbols has a vertical text header and each of its cells is colored according to the symbol that holds in it.
 class TableValuesWithMissingValues
          Title: Table of values with missing values Description: Defines a table of values with the following data:
- header -> conditions' names (more widely, Strings)
- first column -> genes' names (more widely, Strings)
- all other columns' cells -> gene expression values (more widely, float values) This is a simple table that shows the raw values that are assigned when using one of the constructors and implements sorting functionality on the columns, i.e., allows the reordering of the rows, sorting them by the values of a specific column in ascending or descending order.