cytoscape / enrichment-table-app

Creates a new table for performing, storing and viewing functional enrichment analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Row selection should select nodes

AlexanderPico opened this issue · comments

Same behavior as stringApp, using info in "intersecting genes"

The student has already implemented this in his code. However, it does not work because in this line of code:

JTable table = enrichmentTables.get(showTable);

table is always null, and in the stringApp, it returns the JTable table correctly.

I doubt that the showtable variable in this line of code:

public final static String showTable = TermSource.ALL.getTable();

is incorrect, and model/EnrichmentTerm.java contains it. EnrichmentTerm.java needs to be revised.

Fix the null Jtable. Now we can get the correct Jtable, but selection node is still not working, need do more investigation.

Fixed.