File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/commands Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -75,11 +75,6 @@ public void run(TaskMonitor tm) throws Exception {
75
75
taskManager .execute (new TaskIterator (resolverTask )); // blocks
76
76
List <DataSetParameters > dataSets = resolverTask .getDataSetResults ();
77
77
78
- tm .setStatusMessage ("resolved " + dataSets .size () + " data sets" );
79
- for (DataSetParameters params : dataSets ) {
80
- tm .setStatusMessage (params .toString ());
81
- }
82
-
83
78
// Common gmt and expression files
84
79
// Overwrite all the expression files if the common file has been provided
85
80
if (commonExpressionFile != null ) {
@@ -110,6 +105,11 @@ public void run(TaskMonitor tm) throws Exception {
110
105
dsp .getFiles ().setClassFile (commonClassFile .getAbsolutePath ());
111
106
}
112
107
}
108
+
109
+ tm .setStatusMessage ("resolved " + dataSets .size () + " data sets" );
110
+ for (DataSetParameters params : dataSets ) {
111
+ tm .setStatusMessage (params .toString ());
112
+ }
113
113
114
114
tm .setStatusMessage (filterArgs .toString ());
115
115
You can’t perform that action at this time.
0 commit comments