diff --git a/.nojekyll b/.nojekyll
index 704375f..07ef76b 100644
--- a/.nojekyll
+++ b/.nojekyll
@@ -1 +1 @@
-3e9a1faa
\ No newline at end of file
+6e8e0767
\ No newline at end of file
diff --git a/panels.html b/panels.html
index cb24f1b..4e66494 100644
--- a/panels.html
+++ b/panels.html
@@ -664,6 +664,53 @@
DETable
The DETable panel class.
+
+
+
+
+
+
+Reproduce This Output
+
+
+
+
+
+
+
library(iSEE)
+library(iSEEde)
+library(airway)
+library(DESeq2)
+
+# Example data ----
+
+data("airway")
+airway$dex <-relevel(airway$dex, "untrt")
+
+dds <-DESeqDataSet(airway, ~0+ dex + cell)
+
+dds <-DESeq(dds)
+res_deseq2 <-results(dds, contrast =list("dextrt", "dexuntrt"))
+
+# iSEE / iSEEde ---
+
+airway <-embedContrastResults(res_deseq2, airway, name ="dex: trt vs untrt")
+
+app <-iSEE(airway, initial =list(
+DETable(
+PanelWidth = 12L,
+ContrastName="dex: trt vs untrt",
+RoundDigits =TRUE
+ )
+))
+
+if (interactive()) {
+ shiny::runApp(app)
+}