Skip to content

Commit 2f8db6f

Browse files
committed
Add missing creation parameters
1 parent 6c48830 commit 2f8db6f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/view/legend/CreationParametersPanel.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,22 @@ Html addDataSet(EMDataSet ds) {
143143
li().text("Expression File: ").span().style("${code}")
144144
.text(shortenPathname(ds.getDataSetFiles().getExpressionFileName())).end().end();
145145
}
146+
if (ds.getDataSetFiles().getClassFile() != null) {
147+
li().text("Class File: ").span().style("${code}")
148+
.text(shortenPathname(ds.getDataSetFiles().getClassFile())).end().end();
149+
}
150+
if (ds.getDataSetFiles().getRankedFile() != null) {
151+
li().text("Ranks File: ").span().style("${code}")
152+
.text(shortenPathname(ds.getDataSetFiles().getRankedFile())).end().end();
153+
}
154+
if (ds.getDataSetFiles().getPhenotype1() != null) {
155+
li().text("Positive Phenotype: ").span().style("${code}")
156+
.text(shortenPathname(ds.getDataSetFiles().getPhenotype1())).end().end();
157+
}
158+
if (ds.getDataSetFiles().getPhenotype2() != null) {
159+
li().text("Negative Phenotype: ").span().style("${code}")
160+
.text(shortenPathname(ds.getDataSetFiles().getPhenotype2())).end().end();
161+
}
146162
if (ds.getDataSetFiles().getGseaHtmlReportFile() != null) {
147163
li().text("GSEA Report: ").span().style("${code}")
148164
.text(shortenPathname(ds.getDataSetFiles().getGseaHtmlReportFile())).end().end();

0 commit comments

Comments
 (0)