|
1 | 1 | package org.baderlab.csplugins.enrichmentmap;
|
2 | 2 |
|
3 |
| -import org.baderlab.csplugins.enrichmentmap.actions.OpenEnrichmentMapAction; |
| 3 | +import org.baderlab.csplugins.enrichmentmap.actions.OpenEnrichmentMapPanelsAction; |
4 | 4 | import org.baderlab.csplugins.enrichmentmap.commands.ChartCommandTask;
|
5 | 5 | import org.baderlab.csplugins.enrichmentmap.commands.DatasetColorCommandTask;
|
6 | 6 | import org.baderlab.csplugins.enrichmentmap.commands.DatasetShowCommandTask;
|
@@ -28,19 +28,19 @@ protected void configure() {
|
28 | 28 |
|
29 | 29 |
|
30 | 30 | @ProvidesIntoSet
|
31 |
| - public CommandTaskFactory provideBuild(Provider<EMBuildCommandTask> taskProvider, OpenEnrichmentMapAction showTask) { |
| 31 | + public CommandTaskFactory provideBuild(Provider<EMBuildCommandTask> taskProvider, OpenEnrichmentMapPanelsAction showTask) { |
32 | 32 | String desc = "Creates an EnrichmentMap network containing one or two data sets.";
|
33 | 33 | return CommandTaskFactory.create("build", desc, null, taskProvider, showTask);
|
34 | 34 | }
|
35 | 35 |
|
36 | 36 | @ProvidesIntoSet
|
37 |
| - public CommandTaskFactory provideGSEA(Provider<EMGseaCommandTask> taskProvider, OpenEnrichmentMapAction showTask) { |
| 37 | + public CommandTaskFactory provideGSEA(Provider<EMGseaCommandTask> taskProvider, OpenEnrichmentMapPanelsAction showTask) { |
38 | 38 | String desc = "Creates an EnrichmetMap network from one or two GSEA results. (Deprecated, use 'build' or 'mastermap' command instead.)";
|
39 | 39 | return CommandTaskFactory.create("gseabuild", desc, null, taskProvider, showTask);
|
40 | 40 | }
|
41 | 41 |
|
42 | 42 | @ProvidesIntoSet
|
43 |
| - public CommandTaskFactory provideMastermap(Provider<MastermapCommandTask> taskProvider, OpenEnrichmentMapAction showTask) { |
| 43 | + public CommandTaskFactory provideMastermap(Provider<MastermapCommandTask> taskProvider, OpenEnrichmentMapPanelsAction showTask) { |
44 | 44 | String desc = "Creates an EnrichmentMap network containing any number of data sets by scanning files in a folder.";
|
45 | 45 | String longDesc = "Uses the same algorithm as the Create EnrichmentMap Dialog to scan the files in a folder and "
|
46 | 46 | + "automatically group them into data sets. Sub-folders will be scanned up to one level deep, allowing you to "
|
@@ -71,7 +71,7 @@ public CommandTaskFactory provideJson(Provider<ExportModelJsonCommandTask> taskP
|
71 | 71 | }
|
72 | 72 |
|
73 | 73 | @ProvidesIntoSet
|
74 |
| - public CommandTaskFactory provideBuildTable(Provider<TableCommandTask> taskProvider, OpenEnrichmentMapAction showTask) { |
| 74 | + public CommandTaskFactory provideBuildTable(Provider<TableCommandTask> taskProvider, OpenEnrichmentMapPanelsAction showTask) { |
75 | 75 | String desc = "Creates an EnrichmentMap network from values in a table.";
|
76 | 76 | String longDesc = "Intended mainly for other Apps to programatically create an EnrichmentMap network.";
|
77 | 77 | return CommandTaskFactory.create("build-table", desc, longDesc, taskProvider, showTask);
|
|
0 commit comments