-
Notifications
You must be signed in to change notification settings - Fork 2
/
DrillDownDFISummary.java
251 lines (236 loc) · 10.9 KB
/
DrillDownDFISummary.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package tappas;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.concurrent.Task;
import javafx.scene.control.*;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.Pane;
import javafx.stage.Window;
import java.util.*;
/**
*
* @author Hector del Risco - [email protected] & Pedro Salguero - [email protected]
*/
public class DrillDownDFISummary extends DlgBase {
static int id = 0;
static String exportFilename = "";
Label lblHeader, lblDescription;
Button btnHelpTbl, btnExportTbl;
TableView tblMembers;
Pane paneMenu;
ProgressIndicator pi;
int toolId;
String dataType;
String hdrName;
String source, feature, featureId;
String panel;
String analysisId;
TaskHandler.ServiceExt service = null;
ObservableList<DFISummaryDrillDownData> data = null;
DataDFI dfiData;
//DlgDFIAnalysis.Params dfiParams = new DlgDFIAnalysis.Params();
DlgDFIAnalysis.Params dfiParams;
public DrillDownDFISummary(Project project, Window window) {
super(project, window);
toolId = ++id;
}
public HashMap<String, String> showAndWait(String analysisId, String dataType, String source, String feature, String featureId) {
if(createToolDialog("DrillDownDFISummary.fxml", "DFI Summary Features Drill Down Data", null)) {
this.analysisId = analysisId;
this.dataType = dataType;
this.source = source;
this.feature = feature;
this.featureId = featureId;
exportFilename = "tappAS_DFI_ResultsSummary_" + featureId + ".tsv";
dfiData = new DataDFI(project);
dfiParams = DlgDFIAnalysis.Params.load(dfiData.getDFIParamsFilepath(analysisId), project);
panel = TabGeneDataViz.Panels.TRANS.name();
switch(dataType) {
case "FDS":
hdrName = "DFI genes containing " + featureId;
break;
}
// get control objects
lblHeader = (Label) scene.lookup("#lblHeader");
lblDescription = (Label) scene.lookup("#lblDescription");
pi = (ProgressIndicator) scene.lookup("#piImage");
tblMembers = (TableView) scene.lookup("#tblMembers");
paneMenu = (Pane) scene.lookup("#paneMenu");
// setup dialog
dialog.setTitle("DFI Summary Drill Down Data for: " + featureId);
lblHeader.setText(hdrName);
lblDescription.setText("");
tblMembers.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
ObservableList<TableColumn> cols = tblMembers.getColumns();
cols.get(0).setCellValueFactory(new PropertyValueFactory<>("Gene"));
cols.get(1).setCellValueFactory(new PropertyValueFactory<>("Position"));
cols.get(2).setCellValueFactory(new PropertyValueFactory<>("Favored"));
cols.get(3).setCellValueFactory(new PropertyValueFactory<>("GeneDescription"));
SubTabBase.addRowNumbersCol(tblMembers);
ContextMenu cm = new ContextMenu();
addGeneDVItem(cm, tblMembers, panel);
app.export.setupTableExport(this, cm, true);
tblMembers.setContextMenu(cm);
app.export.addCopyToClipboardHandler(tblMembers);
// setup menu buttons
double yoffset = 3.0;
btnExportTbl = app.ctls.addImgButton(paneMenu, "export.png", "Export table data...", yoffset, 32, true);
btnExportTbl.setOnAction((event) -> { onButtonExport(); });
yoffset += 36;
btnHelpTbl = app.ctls.addImgButton(paneMenu, "help.png", "Help", yoffset, 32, true);
btnHelpTbl.setOnAction((event) -> { DlgHelp dlg = new DlgHelp(); dlg.show(title, "Help_DrillDown_DFISummary.html", Tappas.getWindow()); });
// process dialog - modeless
dialog.setOnShown(e -> { runThread();});
dialog.showAndWait();
}
return null;
}
@Override
protected void onButtonExport() {
DlgExportData.Config cfg = new DlgExportData.Config(true, "Genes list (IDs only)", false, "");
DlgExportData.Params results = app.ctlr.getExportDataParams(cfg, null, null);
if(results != null) {
HashMap<String, String> hmColNames = new HashMap<>();
Export.ExportSelection selection = Export.ExportSelection.All;
if(results.dataSelection.equals(DlgExportData.Params.DataSelection.SELECTEDROWS))
selection = Export.ExportSelection.Highlighted;
if(results.dataType.equals(DlgExportData.Params.DataType.TABLEROWS.name()))
app.export.exportTableDataToFile(tblMembers, selection, exportFilename);
else if(results.dataType.equals(DlgExportData.Params.DataType.LIST.name())) {
hmColNames.put("Gene", "");
app.export.exportTableDataListToFile(tblMembers, selection, hmColNames, exportFilename);
}
}
}
//
// Internal Functions
//
private void addGeneDVItem(ContextMenu cm, TableView tbl, String panel) {
MenuItem item = new MenuItem("Show gene data visualization");
cm.getItems().add(item);
item.setOnAction((event) -> {
// get highlighted row's data and show gene data visualization
ObservableList<Integer> lstIdxs = tbl.getSelectionModel().getSelectedIndices();
if(lstIdxs.size() != 1) {
String msg = "You have multiple gene rows highlighted.\nHighlight a single row with the gene you want to visualize.";
app.ctls.alertInformation("Display Gene Data Visualization", msg);
}
else {
DFISummaryDrillDownData dd = (DFISummaryDrillDownData) tbl.getItems().get((tbl.getSelectionModel().getSelectedIndex()));
String gene = dd.getGene();
String genes[] = gene.split(",");
if(genes.length > 1) {
List<String> lst = Arrays.asList(genes);
Collections.sort(lst);
ChoiceDialog dlg = new ChoiceDialog(lst.get(0), lst);
dlg.setTitle("Gene Data Visualization");
dlg.setHeaderText("Select gene to visualize");
Optional<String> result = dlg.showAndWait();
if(result.isPresent()) {
gene = result.get();
showGeneDataVisualization(gene, panel);
}
}
else
showGeneDataVisualization(gene, panel);
}
});
}
private void showGeneDataVisualization(String gene, String panel) {
HashMap<String, Object> args = new HashMap<>();
args.put("panels", panel);
app.tabs.openTabGeneDataViz(project, project.getDef().id, gene, project.data.getResultsGeneTrans().get(gene), "Project '" + project.getDef().name + "'", args);
}
//
// Data Load
//
private void runThread() {
// get script path and run service/task
service = new DataService();
service.initialize();
service.start();
}
private class DataService extends TaskHandler.ServiceExt {
@Override
protected void onRunning() {
pi.setVisible(true);
}
@Override
protected void onStopped() {
pi.setVisible(false);
}
@Override
protected void onFailed() {
java.lang.Throwable e = getException();
if(e != null)
app.logWarning("DrillDownDFI Summary - task aborted. Exception: " + e.getMessage());
else
app.logWarning("DrillDownDFI Summary - task aborted.");
app.ctls.alertWarning("Drill Down Differential Feature Inclusion Analysis Summary", "DrillDownDFI Summary - task aborted");
}
@Override
protected void onSucceeded() {
if(data != null) {
tblMembers.setItems(data);
if(!data.isEmpty())
tblMembers.getSelectionModel().select(0);
}
else
app.ctls.alertWarning("DFI Summary Drill Down Data", "Unable to load drill down data.");
}
@Override
protected Task<Void> createTask() {
Task task = new Task<Void>() {
@Override
protected Void call() throws Exception {
try {
if(dataType.equals("FDS")) {
data = FXCollections.observableArrayList();
ArrayList<DataDFI.DFIResultsData> lst = dfiData.getDFIResultsData(dfiParams.sigValue, analysisId);
for(DataDFI.DFIResultsData rd : lst) {
if(rd.ds && rd.source.equals(source) && rd.feature.equals(feature) && rd.featureId.equals(featureId))
data.add(new DFISummaryDrillDownData(rd.gene, rd.position, rd.favored, rd.geneDescription));
}
FXCollections.sort(data);
}
}
catch (Exception e) {
app.logError("Unable to load " + hdrName + ": " + e.getMessage());
}
return null;
}
};
taskInfo = new TaskHandler.TaskInfo("DFI Summary Drill Down Data " + toolId, task);
return task;
}
}
//
// Data Classes
//
static public class DFISummaryDrillDownData implements Comparable<DFISummaryDrillDownData> {
public SimpleStringProperty gene;
public SimpleStringProperty favored;
public SimpleStringProperty position;
public SimpleStringProperty geneDescription;
public DFISummaryDrillDownData(String gene, String position, String favored, String geneDescription) {
this.gene = new SimpleStringProperty(gene);
this.position = new SimpleStringProperty(position);
this.favored = new SimpleStringProperty(favored);
this.geneDescription = new SimpleStringProperty(geneDescription);
}
public String getGene() { return gene.get(); }
public String getPosition() { return position.get(); }
public String getFavored() { return favored.get(); }
public String getGeneDescription() { return geneDescription.get(); }
@Override
public int compareTo(DFISummaryDrillDownData td) {
return (gene.get().compareToIgnoreCase(td.gene.get()));
}
}
}