You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/workshop_isee_extension.Rmd
+34-1Lines changed: 34 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -415,7 +415,7 @@ head(res_deseq2)
415
415
416
416
We embed the results of the `r BiocStyle::Biocpkg("DESeq2")` analysis within the `airway` object using the `r BiocStyle::Biocpkg("iSEEde")` function `embedContrastResults()`.
417
417
418
-
The function embeds the results in a way makes them detectable by the `iSEE()` function, and gives the possibility to store multiple differential expression results -- possibly from multiple methods such as `r BiocStyle::Biocpkg("edgeR")` and `r BiocStyle::Biocpkg("limma")` -- under different names.
418
+
The function embeds the results in a structured way makes them detectable by the `iSEE()` function, and gives the possibility to store multiple differential expression results -- possibly from multiple methods such as `r BiocStyle::Biocpkg("edgeR")` and `r BiocStyle::Biocpkg("limma")` -- under different names.
419
419
420
420
```{r, message=FALSE, warning=FALSE}
421
421
library(iSEEde)
@@ -442,6 +442,7 @@ We can then run a standard `r BiocStyle::Biocpkg("fgsea")` analysis.
442
442
443
443
In this case, we rank genes using the log2 fold-change computed during the differential expression analysis.
444
444
The `r BiocStyle::Biocpkg("iSEEde")` function `log2FoldChange()` is a convenient method to fetch this information as a named vector in a format immediately compatible with the `fgsea()` function.
445
+
The `r BiocStyle::Biocpkg("iSEEde")` function `contrastResults()` is used to fetch embedded results by name.
Separately, it is necessary to define and register a function that fetches the gene identifiers associated with a given pathway identifier.
472
+
This function is required to transmit selections from pathway-level panels to feature-level panels.
473
+
474
+
Due to the use of `uniquifyFeatureNames()` above, the function must first map to the unique Ensembl gene identifier, to accurately identify the corresponding value in `rownames(airway)`.
0 commit comments