Skip to content

Commit

Permalink
Add text to iseetree part
Browse files Browse the repository at this point in the history
  • Loading branch information
RiboRings committed Sep 16, 2024
1 parent b3d54c1 commit 453adbd
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions vignettes/eccb_workflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -826,10 +826,22 @@ This task could be performed with the NetCoMi function `netCompare`, as describe

## Interactive microbiome data exploration with iSEEtree

[iSEEtree](https://microbiome.github.io/iSEEtree/) is a shiny app that provides
a Graphical User Interface (GUI) to visualize and interactively explore `TreeSE`
objects. We will demonstrate its capability by reproducing some of the plots
that were previously created in this workshop, this time without the need of
coding (small lie).

As we did before for `tse`, we add alpha and beta diversity metrics also to the
to the agglomerated experiment `tse_family`, so we will be able to visualize
these metrics in the app.

```{r prep_iSEEtree}
# Add information on alpha diversity
tse_family <- addAlpha(tse_family,
index = c("coverage_diversity", "shannon_diversity"))
# Add information on beta diversity
tse_family <- runMDS(tse_family,
FUN = getDissimilarity,
method = "bray",
Expand All @@ -838,12 +850,6 @@ tse_family <- runMDS(tse_family,
name = "MDS_bray")
```

[iSEEtree](https://microbiome.github.io/iSEEtree/) is a shiny app that provides
a Graphical User Interface (GUI) to visualize and interactively explore `TreeSE`
objects. We will demonstrate its capability by reproducing some of the plots
that were previously created in this workshop, this time without the need of
coding.

Launching the app is easy. All you need to do is run the command `iSEE` on the
`TreeSE` object that you want to explore.

Expand Down

0 comments on commit 453adbd

Please sign in to comment.