Skip to content

Commit bd25ea6

Browse files
committed
Always compute ranking using union. Fixes #310
1 parent 7f9e0fd commit bd25ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/view/heatmap/HeatMapMainPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ private void updateSetting_Operator(Operator oper) {
466466

467467
public void updateSetting_RankOption(RankingOption rankOption) {
468468
selectedRankOption = rankOption;
469-
List<String> genes = getGenes(getOperator());
469+
List<String> genes = unionGenes; // always use all the genes, fixes #310
470470

471471
HeatMapTableModel tableModel = (HeatMapTableModel) table.getModel();
472472
EnrichmentMap map = tableModel.getEnrichmentMap();

0 commit comments

Comments
 (0)