Skip to content

Commit 9a5c2c2

Browse files
committed
Fix mastermap command not showing common files in status message.
1 parent 2086ff8 commit 9a5c2c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/commands/MastermapCommandTask.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,6 @@ public void run(TaskMonitor tm) throws Exception {
7575
taskManager.execute(new TaskIterator(resolverTask)); // blocks
7676
List<DataSetParameters> dataSets = resolverTask.getDataSetResults();
7777

78-
tm.setStatusMessage("resolved " + dataSets.size() + " data sets");
79-
for(DataSetParameters params : dataSets) {
80-
tm.setStatusMessage(params.toString());
81-
}
82-
8378
// Common gmt and expression files
8479
// Overwrite all the expression files if the common file has been provided
8580
if(commonExpressionFile != null) {
@@ -110,6 +105,11 @@ public void run(TaskMonitor tm) throws Exception {
110105
dsp.getFiles().setClassFile(commonClassFile.getAbsolutePath());
111106
}
112107
}
108+
109+
tm.setStatusMessage("resolved " + dataSets.size() + " data sets");
110+
for(DataSetParameters params : dataSets) {
111+
tm.setStatusMessage(params.toString());
112+
}
113113

114114
tm.setStatusMessage(filterArgs.toString());
115115

0 commit comments

Comments
 (0)